
    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_735758f516fcfd6b1b556cd5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_b302b6504f30596e152cc5ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;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_31b8a8a2a20739902740ccf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_275dd0698b92b49e8fd2fe45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_af7da1079a283f997d7a3601.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_0dba5565bcb2b20c3c4cfdbd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119286;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_38b26c103d3cb573927a88b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.138184;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_1161259ee62078b3e066ab55.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_ff0a4625cd63f0c27e610079.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904785;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_6185b74bf7db8e391cb81a89.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113770;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_f91df073d611c1784e688288.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.742000;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_5bbf82fb99198f8a4d6a344e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.131000;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;}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.350000px;}
.v2{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.505000px;}
.v1{vertical-align:19.291800px;}
.ls3f{letter-spacing:-1.290000px;}
.ls40{letter-spacing:-1.225500px;}
.ls6{letter-spacing:-1.200000px;}
.ls54{letter-spacing:-1.170000px;}
.ls41{letter-spacing:-1.161000px;}
.ls33{letter-spacing:-1.080000px;}
.ls55{letter-spacing:-0.994500px;}
.ls46{letter-spacing:-0.967500px;}
.ls49{letter-spacing:-0.838500px;}
.lsf{letter-spacing:-0.645000px;}
.ls3b{letter-spacing:-0.585000px;}
.ls32{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.516000px;}
.ls3a{letter-spacing:-0.419250px;}
.ls3d{letter-spacing:-0.380250px;}
.ls3c{letter-spacing:-0.351000px;}
.ls3e{letter-spacing:-0.322500px;}
.ls48{letter-spacing:-0.258000px;}
.ls42{letter-spacing:-0.234000px;}
.ls45{letter-spacing:-0.193500px;}
.ls44{letter-spacing:-0.129000px;}
.ls10{letter-spacing:-0.064500px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.ls4c{letter-spacing:0.008400px;}
.ls56{letter-spacing:0.009000px;}
.ls4f{letter-spacing:0.009300px;}
.ls4a{letter-spacing:0.009600px;}
.ls47{letter-spacing:0.010200px;}
.ls4b{letter-spacing:0.018600px;}
.ls1a{letter-spacing:0.058500px;}
.ls8{letter-spacing:0.064500px;}
.ls4d{letter-spacing:0.066300px;}
.ls1b{letter-spacing:0.117000px;}
.ls12{letter-spacing:0.129000px;}
.ls3{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.175500px;}
.ls51{letter-spacing:0.187800px;}
.lsd{letter-spacing:0.193500px;}
.ls50{letter-spacing:0.196500px;}
.ls23{letter-spacing:0.209625px;}
.ls18{letter-spacing:0.209700px;}
.ls37{letter-spacing:0.234000px;}
.ls22{letter-spacing:0.251550px;}
.lsa{letter-spacing:0.258000px;}
.ls57{letter-spacing:0.262500px;}
.ls39{letter-spacing:0.292500px;}
.ls14{letter-spacing:0.322500px;}
.ls24{letter-spacing:0.341250px;}
.ls27{letter-spacing:0.351000px;}
.ls21{letter-spacing:0.377325px;}
.lsb{letter-spacing:0.387000px;}
.ls34{letter-spacing:0.409500px;}
.ls30{letter-spacing:0.419250px;}
.ls13{letter-spacing:0.451500px;}
.ls31{letter-spacing:0.461175px;}
.ls35{letter-spacing:0.468000px;}
.ls17{letter-spacing:0.516000px;}
.ls20{letter-spacing:0.525000px;}
.lsc{letter-spacing:0.580500px;}
.ls43{letter-spacing:0.585000px;}
.ls2e{letter-spacing:0.628875px;}
.ls28{letter-spacing:0.643500px;}
.lse{letter-spacing:0.645000px;}
.ls16{letter-spacing:0.709500px;}
.ls36{letter-spacing:0.760500px;}
.ls26{letter-spacing:0.774000px;}
.ls38{letter-spacing:0.819000px;}
.ls15{letter-spacing:0.838500px;}
.ls53{letter-spacing:0.844200px;}
.ls52{letter-spacing:0.853500px;}
.ls25{letter-spacing:0.903000px;}
.ls29{letter-spacing:0.967500px;}
.ls7{letter-spacing:1.032000px;}
.ls19{letter-spacing:1.096500px;}
.ls2f{letter-spacing:1.225500px;}
.ls1{letter-spacing:1.260000px;}
.ls2d{letter-spacing:1.290000px;}
.ls1d{letter-spacing:1.419000px;}
.ls2c{letter-spacing:1.677000px;}
.ls2a{letter-spacing:1.935000px;}
.ls4e{letter-spacing:7.369200px;}
.ls2b{letter-spacing:8.836500px;}
.ls4{letter-spacing:12.000000px;}
.ls2{letter-spacing:12.510000px;}
.ls0{letter-spacing:12.936000px;}
.ls1e{letter-spacing:13.125000px;}
.ls1f{letter-spacing:13.650000px;}
.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;}
}
.ws9c{word-spacing:-17.092500px;}
.wsa5{word-spacing:-16.770000px;}
.ws7f{word-spacing:-16.447500px;}
.ws31{word-spacing:-16.125000px;}
.ws113{word-spacing:-15.480000px;}
.wsd7{word-spacing:-14.625000px;}
.wsb1{word-spacing:-13.125000px;}
.ws30{word-spacing:-12.750000px;}
.ws9d{word-spacing:-11.110125px;}
.wse6{word-spacing:-10.968750px;}
.wsa7{word-spacing:-10.942425px;}
.wsa6{word-spacing:-10.900500px;}
.ws7d{word-spacing:-10.858575px;}
.ws7e{word-spacing:-10.732800px;}
.ws80{word-spacing:-10.690875px;}
.ws1b{word-spacing:-10.481250px;}
.wseb{word-spacing:-10.062000px;}
.ws66{word-spacing:-9.506250px;}
.wsfe{word-spacing:-9.126000px;}
.ws81{word-spacing:-8.872500px;}
.ws67{word-spacing:-8.531250px;}
.ws6{word-spacing:-1.260000px;}
.wsa3{word-spacing:-0.774000px;}
.wsaa{word-spacing:-0.645000px;}
.ws3e{word-spacing:-0.322500px;}
.ws1{word-spacing:0.000000px;}
.ws76{word-spacing:0.058500px;}
.wsd8{word-spacing:0.064500px;}
.ws89{word-spacing:0.129000px;}
.ws129{word-spacing:0.157500px;}
.ws6b{word-spacing:0.175500px;}
.ws28{word-spacing:0.193500px;}
.ws103{word-spacing:0.210000px;}
.wsd2{word-spacing:0.234000px;}
.wsbc{word-spacing:0.258000px;}
.wsab{word-spacing:0.262500px;}
.ws10d{word-spacing:0.292500px;}
.ws12a{word-spacing:0.315000px;}
.ws104{word-spacing:0.322500px;}
.ws6a{word-spacing:0.351000px;}
.ws9e{word-spacing:0.387000px;}
.wsd1{word-spacing:0.409500px;}
.ws45{word-spacing:0.451500px;}
.ws6d{word-spacing:0.468000px;}
.ws2c{word-spacing:0.516000px;}
.wsc5{word-spacing:0.525000px;}
.ws71{word-spacing:0.526500px;}
.ws4{word-spacing:0.546000px;}
.wsbb{word-spacing:0.580500px;}
.ws110{word-spacing:0.643500px;}
.ws9f{word-spacing:0.645000px;}
.ws9a{word-spacing:0.702000px;}
.ws4e{word-spacing:0.709500px;}
.ws17{word-spacing:0.720000px;}
.ws120{word-spacing:0.760500px;}
.wsf1{word-spacing:0.774000px;}
.ws102{word-spacing:0.819000px;}
.ws5a{word-spacing:0.838500px;}
.ws100{word-spacing:0.877500px;}
.ws2a{word-spacing:0.903000px;}
.ws10b{word-spacing:0.936000px;}
.ws128{word-spacing:0.945000px;}
.wsa9{word-spacing:0.967500px;}
.ws63{word-spacing:0.994500px;}
.ws5b{word-spacing:1.032000px;}
.ws8c{word-spacing:1.050000px;}
.ws6e{word-spacing:1.053000px;}
.wsb2{word-spacing:1.080000px;}
.ws35{word-spacing:1.096500px;}
.ws127{word-spacing:1.102500px;}
.ws125{word-spacing:1.155000px;}
.ws4b{word-spacing:1.161000px;}
.ws5f{word-spacing:1.170000px;}
.wsa1{word-spacing:1.225500px;}
.ws11d{word-spacing:1.228500px;}
.wsf4{word-spacing:1.287000px;}
.ws50{word-spacing:1.290000px;}
.ws77{word-spacing:1.345500px;}
.ws52{word-spacing:1.354500px;}
.ws106{word-spacing:1.404000px;}
.ws7c{word-spacing:1.419000px;}
.ws16{word-spacing:1.440000px;}
.ws90{word-spacing:1.470000px;}
.ws3b{word-spacing:1.483500px;}
.ws10f{word-spacing:1.521000px;}
.ws83{word-spacing:1.548000px;}
.ws23{word-spacing:1.612500px;}
.ws70{word-spacing:1.638000px;}
.ws56{word-spacing:1.677000px;}
.ws3{word-spacing:1.680000px;}
.wsfc{word-spacing:1.696500px;}
.wsed{word-spacing:1.755000px;}
.ws8a{word-spacing:1.785000px;}
.ws48{word-spacing:1.806000px;}
.wsf6{word-spacing:1.813500px;}
.ws91{word-spacing:1.837500px;}
.ws87{word-spacing:1.870500px;}
.wsa{word-spacing:1.872000px;}
.ws61{word-spacing:1.930500px;}
.ws25{word-spacing:1.935000px;}
.wsae{word-spacing:1.942500px;}
.ws7a{word-spacing:1.989000px;}
.wsb7{word-spacing:1.999500px;}
.ws5{word-spacing:2.016000px;}
.ws126{word-spacing:2.047500px;}
.ws10{word-spacing:2.064000px;}
.wsf7{word-spacing:2.106000px;}
.ws36{word-spacing:2.128500px;}
.ws12{word-spacing:2.160000px;}
.wsec{word-spacing:2.164500px;}
.ws4d{word-spacing:2.193000px;}
.wse3{word-spacing:2.223000px;}
.ws46{word-spacing:2.257500px;}
.wscb{word-spacing:2.281500px;}
.wsf3{word-spacing:2.322000px;}
.ws11{word-spacing:2.352000px;}
.ws3a{word-spacing:2.386500px;}
.ws64{word-spacing:2.451000px;}
.ws78{word-spacing:2.457000px;}
.ws38{word-spacing:2.515500px;}
.ws6c{word-spacing:2.574000px;}
.wsb6{word-spacing:2.580000px;}
.ws19{word-spacing:2.592000px;}
.wse4{word-spacing:2.632500px;}
.ws41{word-spacing:2.644500px;}
.ws2{word-spacing:2.646000px;}
.ws68{word-spacing:2.709000px;}
.wscd{word-spacing:2.749500px;}
.wsd9{word-spacing:2.773500px;}
.ws99{word-spacing:2.808000px;}
.ws22{word-spacing:2.838000px;}
.ws72{word-spacing:2.866500px;}
.ws57{word-spacing:2.902500px;}
.ws11a{word-spacing:2.925000px;}
.ws114{word-spacing:2.967000px;}
.wsc{word-spacing:2.976000px;}
.ws95{word-spacing:2.983500px;}
.ws4c{word-spacing:3.031500px;}
.ws118{word-spacing:3.042000px;}
.wsad{word-spacing:3.045000px;}
.ws34{word-spacing:3.096000px;}
.ws10a{word-spacing:3.100500px;}
.ws79{word-spacing:3.159000px;}
.ws117{word-spacing:3.160500px;}
.ws101{word-spacing:3.217500px;}
.ws3c{word-spacing:3.225000px;}
.wsc7{word-spacing:3.276000px;}
.ws58{word-spacing:3.289500px;}
.ws11e{word-spacing:3.334500px;}
.ws33{word-spacing:3.354000px;}
.wsf8{word-spacing:3.393000px;}
.wsb9{word-spacing:3.418500px;}
.wsd3{word-spacing:3.451500px;}
.wsb{word-spacing:3.456000px;}
.ws2f{word-spacing:3.483000px;}
.ws124{word-spacing:3.517500px;}
.wsb3{word-spacing:3.547500px;}
.ws11c{word-spacing:3.568500px;}
.wsd{word-spacing:3.600000px;}
.ws21{word-spacing:3.612000px;}
.ws73{word-spacing:3.627000px;}
.ws3f{word-spacing:3.676500px;}
.wsce{word-spacing:3.685500px;}
.wsef{word-spacing:3.741000px;}
.wse2{word-spacing:3.744000px;}
.ws108{word-spacing:3.802500px;}
.wsa0{word-spacing:3.805500px;}
.wsdb{word-spacing:3.861000px;}
.ws2d{word-spacing:3.870000px;}
.ws10c{word-spacing:3.919500px;}
.ws59{word-spacing:3.934500px;}
.wse{word-spacing:3.936000px;}
.ws8b{word-spacing:3.937500px;}
.wsea{word-spacing:3.978000px;}
.ws29{word-spacing:3.999000px;}
.ws96{word-spacing:4.036500px;}
.wsb8{word-spacing:4.063500px;}
.wsdd{word-spacing:4.095000px;}
.wsc1{word-spacing:4.128000px;}
.wsfb{word-spacing:4.153500px;}
.wsf{word-spacing:4.176000px;}
.ws44{word-spacing:4.192500px;}
.ws119{word-spacing:4.212000px;}
.ws115{word-spacing:4.257000px;}
.wsc9{word-spacing:4.270500px;}
.ws49{word-spacing:4.321500px;}
.ws65{word-spacing:4.357500px;}
.ws37{word-spacing:4.386000px;}
.ws1a{word-spacing:4.416000px;}
.wscc{word-spacing:4.446000px;}
.wsc2{word-spacing:4.450500px;}
.wsfa{word-spacing:4.504500px;}
.wsd4{word-spacing:4.515000px;}
.ws8f{word-spacing:4.567500px;}
.ws20{word-spacing:4.579500px;}
.ws60{word-spacing:4.621500px;}
.ws27{word-spacing:4.644000px;}
.ws109{word-spacing:4.680000px;}
.wsbe{word-spacing:4.708500px;}
.ws9{word-spacing:4.752000px;}
.ws82{word-spacing:4.773000px;}
.wsf5{word-spacing:4.797000px;}
.wsd5{word-spacing:4.837500px;}
.wsff{word-spacing:4.855500px;}
.wsd6{word-spacing:4.902000px;}
.ws74{word-spacing:4.914000px;}
.wsac{word-spacing:4.935000px;}
.ws116{word-spacing:4.966500px;}
.ws53{word-spacing:4.987500px;}
.ws1e{word-spacing:5.031000px;}
.ws93{word-spacing:5.089500px;}
.wse1{word-spacing:5.095500px;}
.ws111{word-spacing:5.148000px;}
.ws42{word-spacing:5.160000px;}
.wsdf{word-spacing:5.206500px;}
.ws88{word-spacing:5.224500px;}
.ws14{word-spacing:5.232000px;}
.ws123{word-spacing:5.250000px;}
.ws18{word-spacing:5.280000px;}
.wsf2{word-spacing:5.289000px;}
.ws9b{word-spacing:5.302500px;}
.wsca{word-spacing:5.323500px;}
.wsbf{word-spacing:5.353500px;}
.ws105{word-spacing:5.382000px;}
.ws8e{word-spacing:5.407500px;}
.ws43{word-spacing:5.418000px;}
.wsee{word-spacing:5.499000px;}
.ws4f{word-spacing:5.547000px;}
.ws15{word-spacing:5.568000px;}
.ws26{word-spacing:5.611500px;}
.wse7{word-spacing:5.674500px;}
.ws5d{word-spacing:5.676000px;}
.ws94{word-spacing:5.733000px;}
.wsa8{word-spacing:5.740500px;}
.wsdc{word-spacing:5.791500px;}
.ws40{word-spacing:5.805000px;}
.wsde{word-spacing:5.850000px;}
.ws54{word-spacing:5.869500px;}
.wsfd{word-spacing:5.908500px;}
.wse5{word-spacing:5.934000px;}
.ws39{word-spacing:5.998500px;}
.ws13{word-spacing:6.000000px;}
.ws10e{word-spacing:6.025500px;}
.ws24{word-spacing:6.063000px;}
.wsd0{word-spacing:6.084000px;}
.wsb5{word-spacing:6.127500px;}
.ws107{word-spacing:6.142500px;}
.ws1d{word-spacing:6.192000px;}
.ws69{word-spacing:6.256500px;}
.wsf9{word-spacing:6.259500px;}
.wsda{word-spacing:6.321000px;}
.ws97{word-spacing:6.376500px;}
.ws84{word-spacing:6.385500px;}
.wse9{word-spacing:6.435000px;}
.wsa2{word-spacing:6.450000px;}
.ws5c{word-spacing:6.514500px;}
.ws98{word-spacing:6.552000px;}
.ws8d{word-spacing:6.562500px;}
.wsa4{word-spacing:6.579000px;}
.wsba{word-spacing:6.643500px;}
.wscf{word-spacing:6.669000px;}
.wsc3{word-spacing:6.708000px;}
.ws112{word-spacing:6.727500px;}
.wse0{word-spacing:6.772500px;}
.ws92{word-spacing:6.837000px;}
.wsc8{word-spacing:6.844500px;}
.ws86{word-spacing:6.901500px;}
.ws121{word-spacing:6.903000px;}
.ws11f{word-spacing:6.961500px;}
.ws47{word-spacing:7.030500px;}
.ws75{word-spacing:7.078500px;}
.ws62{word-spacing:7.137000px;}
.ws2b{word-spacing:7.159500px;}
.ws11b{word-spacing:7.195500px;}
.wsc4{word-spacing:7.224000px;}
.ws5e{word-spacing:7.254000px;}
.ws122{word-spacing:7.297500px;}
.ws6f{word-spacing:7.312500px;}
.ws7b{word-spacing:7.353000px;}
.wse8{word-spacing:7.417500px;}
.wsb4{word-spacing:7.482000px;}
.ws51{word-spacing:7.546500px;}
.ws3d{word-spacing:7.611000px;}
.wsc0{word-spacing:7.675500px;}
.ws85{word-spacing:7.740000px;}
.wsbd{word-spacing:7.804500px;}
.ws4a{word-spacing:7.869000px;}
.ws55{word-spacing:7.933500px;}
.ws2e{word-spacing:7.998000px;}
.ws1f{word-spacing:8.062500px;}
.ws8{word-spacing:10.656000px;}
.ws1c{word-spacing:12.750000px;}
.wsf0{word-spacing:13.125000px;}
.ws7{word-spacing:13.344000px;}
.wsb0{word-spacing:85.050000px;}
.wsaf{word-spacing:100.062000px;}
.wsc6{word-spacing:1121.076000px;}
.ws32{word-spacing:1149.576000px;}
.ws0{word-spacing:1818.756000px;}
._16{margin-left:-13.125000px;}
._4{margin-left:-9.324000px;}
._9{margin-left:-2.431650px;}
._1{margin-left:-1.260000px;}
._6{width:1.206000px;}
._2{width:3.276000px;}
._18{width:4.777050px;}
._17{width:6.222375px;}
._8{width:7.822500px;}
._0{width:9.030000px;}
._3{width:11.676000px;}
._5{width:13.344000px;}
._d{width:42.672000px;}
._11{width:50.220000px;}
._f{width:65.232000px;}
._13{width:98.550000px;}
._c{width:126.384000px;}
._12{width:187.920000px;}
._a{width:192.336000px;}
._e{width:204.768000px;}
._b{width:218.928000px;}
._14{width:430.812000px;}
._10{width:508.842000px;}
._15{width:815.585400px;}
._7{width:844.085400px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.125000px;}
.fsc{font-size:38.025000px;}
.fs8{font-size:41.925000px;}
.fs2{font-size:42.000000px;}
.fse{font-size:43.875000px;}
.fs3{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsa{font-size:52.500000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fsb{font-size:58.500000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.yc{bottom:94.711950px;}
.yb{bottom:106.713450px;}
.ya{bottom:122.958900px;}
.y8f{bottom:124.577025px;}
.y323{bottom:124.580250px;}
.y34c{bottom:125.657700px;}
.y14b{bottom:127.193550px;}
.y53{bottom:128.520150px;}
.y9{bottom:137.081400px;}
.y12c{bottom:138.958275px;}
.y322{bottom:140.989500px;}
.y34b{bottom:141.979200px;}
.y52{bottom:142.912650px;}
.y14a{bottom:152.481150px;}
.y8{bottom:153.335400px;}
.y12b{bottom:153.356400px;}
.y254{bottom:153.362025px;}
.y51{bottom:157.305150px;}
.y321{bottom:157.391400px;}
.y34a{bottom:158.296200px;}
.y7{bottom:164.517900px;}
.y2ff{bottom:165.726075px;}
.yde{bottom:167.737650px;}
.y12a{bottom:167.754525px;}
.y149{bottom:168.465150px;}
.y8e{bottom:171.697650px;}
.y320{bottom:173.800650px;}
.y349{bottom:174.617700px;}
.y6{bottom:175.700400px;}
.y17b{bottom:177.846825px;}
.ybf{bottom:178.021200px;}
.y1ab{bottom:181.223700px;}
.ydd{bottom:182.135775px;}
.y296{bottom:182.741700px;}
.y235{bottom:182.868150px;}
.y2fe{bottom:183.318450px;}
.y265{bottom:184.350825px;}
.y129{bottom:186.090150px;}
.ya2{bottom:189.056625px;}
.y31f{bottom:190.209900px;}
.y348{bottom:190.939200px;}
.y5{bottom:191.135400px;}
.y1ff{bottom:193.506450px;}
.y27d{bottom:194.019150px;}
.y72{bottom:195.398100px;}
.y190{bottom:195.418950px;}
.y1b9{bottom:195.430950px;}
.y166{bottom:195.435075px;}
.y17a{bottom:195.439200px;}
.y2e3{bottom:195.493200px;}
.y2b2{bottom:195.550950px;}
.y148{bottom:195.600150px;}
.ybe{bottom:195.613575px;}
.ydc{bottom:196.533900px;}
.yf6{bottom:198.745200px;}
.y1aa{bottom:198.816075px;}
.y234{bottom:198.853275px;}
.y295{bottom:200.334075px;}
.y128{bottom:200.482650px;}
.y2fd{bottom:200.910825px;}
.y264{bottom:201.943200px;}
.y4{bottom:202.317900px;}
.y2d0{bottom:203.539875px;}
.ya1{bottom:206.649000px;}
.y347{bottom:207.259350px;}
.y1c5{bottom:208.265325px;}
.y1e3{bottom:209.385375px;}
.y1fe{bottom:209.491575px;}
.y27c{bottom:210.004275px;}
.y127{bottom:210.926400px;}
.ydb{bottom:210.932025px;}
.y147{bottom:211.584150px;}
.y71{bottom:212.990475px;}
.y10d{bottom:212.992275px;}
.y18f{bottom:213.011325px;}
.y8d{bottom:213.023325px;}
.y50{bottom:213.025275px;}
.y165{bottom:213.027450px;}
.y179{bottom:213.031575px;}
.y2e2{bottom:213.085575px;}
.y2b1{bottom:213.143325px;}
.ybd{bottom:213.205950px;}
.y3{bottom:213.500400px;}
.y233{bottom:214.838400px;}
.yf5{bottom:216.337575px;}
.y1a9{bottom:216.408450px;}
.y219{bottom:217.452525px;}
.y294{bottom:217.926450px;}
.y2fc{bottom:218.503200px;}
.y2cf{bottom:219.525000px;}
.y263{bottom:219.535575px;}
.y31e{bottom:219.781575px;}
.y346{bottom:223.577700px;}
.y253{bottom:223.877775px;}
.y126{bottom:225.324525px;}
.y1e2{bottom:225.370500px;}
.y1fd{bottom:225.476700px;}
.y1c4{bottom:225.857700px;}
.y27b{bottom:225.989400px;}
.y367{bottom:226.331700px;}
.yda{bottom:229.267650px;}
.y70{bottom:230.582850px;}
.y10c{bottom:230.584650px;}
.y18e{bottom:230.603700px;}
.y8c{bottom:230.615700px;}
.y4f{bottom:230.617650px;}
.y164{bottom:230.619825px;}
.y178{bottom:230.623950px;}
.y2e1{bottom:230.677950px;}
.y2b0{bottom:230.735700px;}
.ybc{bottom:230.798325px;}
.y232{bottom:230.823525px;}
.yf4{bottom:233.929950px;}
.y218{bottom:235.044900px;}
.y2ce{bottom:235.510125px;}
.y293{bottom:235.518825px;}
.y2fb{bottom:236.095575px;}
.y262{bottom:237.127950px;}
.y146{bottom:238.719150px;}
.y345{bottom:239.896200px;}
.y366{bottom:240.729825px;}
.y1fc{bottom:241.461825px;}
.y252{bottom:241.470150px;}
.ya0{bottom:241.851450px;}
.y27a{bottom:241.974525px;}
.y1c3{bottom:243.450075px;}
.yd9{bottom:243.660150px;}
.y231{bottom:246.808650px;}
.y6f{bottom:248.175225px;}
.y10b{bottom:248.177025px;}
.y18d{bottom:248.196075px;}
.y8b{bottom:248.208075px;}
.y4e{bottom:248.210025px;}
.y163{bottom:248.212200px;}
.y177{bottom:248.216325px;}
.y2af{bottom:248.328075px;}
.ybb{bottom:248.390700px;}
.y2cd{bottom:251.495250px;}
.yf3{bottom:251.522325px;}
.y1a8{bottom:251.642775px;}
.y217{bottom:252.637275px;}
.y292{bottom:253.111200px;}
.y2fa{bottom:253.687950px;}
.yd8{bottom:254.098275px;}
.y145{bottom:254.703150px;}
.y261{bottom:254.720325px;}
.y365{bottom:255.127950px;}
.y344{bottom:256.217700px;}
.y1fb{bottom:257.446950px;}
.y9f{bottom:257.836575px;}
.y279{bottom:257.959650px;}
.y125{bottom:258.052650px;}
.y1e1{bottom:258.956325px;}
.y251{bottom:259.062525px;}
.y1c2{bottom:261.042450px;}
.y230{bottom:262.793775px;}
.y31d{bottom:262.980450px;}
.y6e{bottom:265.767600px;}
.y10a{bottom:265.769400px;}
.y18c{bottom:265.788450px;}
.y8a{bottom:265.800450px;}
.y4d{bottom:265.802400px;}
.y162{bottom:265.804575px;}
.y176{bottom:265.808700px;}
.y2e0{bottom:265.887900px;}
.y2ae{bottom:265.920450px;}
.yba{bottom:265.983075px;}
.y1a7{bottom:267.627900px;}
.yd7{bottom:268.496400px;}
.yf2{bottom:269.114700px;}
.y364{bottom:269.526075px;}
.y216{bottom:270.229650px;}
.y291{bottom:270.703575px;}
.y2f9{bottom:271.280325px;}
.y260{bottom:272.312700px;}
.y124{bottom:272.445150px;}
.y343{bottom:272.539200px;}
.y9e{bottom:273.821700px;}
.y278{bottom:273.944775px;}
.y1e0{bottom:276.576525px;}
.y250{bottom:276.654900px;}
.y22f{bottom:278.778900px;}
.y31c{bottom:280.669575px;}
.y144{bottom:281.838150px;}
.y2df{bottom:281.873025px;}
.yd6{bottom:282.894525px;}
.y6d{bottom:283.359975px;}
.y109{bottom:283.361775px;}
.y18b{bottom:283.380825px;}
.y89{bottom:283.392825px;}
.y4c{bottom:283.394775px;}
.y161{bottom:283.396950px;}
.y175{bottom:283.401075px;}
.y2ad{bottom:283.512825px;}
.yb9{bottom:283.575450px;}
.y1a6{bottom:283.613025px;}
.y363{bottom:283.924200px;}
.y2e{bottom:284.148600px;}
.y2cc{bottom:285.130575px;}
.yf1{bottom:286.707075px;}
.y215{bottom:287.822025px;}
.y290{bottom:288.295950px;}
.y342{bottom:288.857850px;}
.y2f8{bottom:288.872700px;}
.y9d{bottom:289.806825px;}
.y277{bottom:289.929900px;}
.y1fa{bottom:291.057525px;}
.y1df{bottom:294.168900px;}
.y22e{bottom:294.764025px;}
.y1c1{bottom:296.246775px;}
.y143{bottom:297.822150px;}
.y2de{bottom:297.858150px;}
.y362{bottom:298.322325px;}
.y31b{bottom:298.358700px;}
.y1a5{bottom:299.598150px;}
.y18a{bottom:300.973200px;}
.y88{bottom:300.985200px;}
.y4b{bottom:300.987150px;}
.y160{bottom:300.989325px;}
.y174{bottom:300.993450px;}
.y6c{bottom:301.022325px;}
.y108{bottom:301.028400px;}
.y2ac{bottom:301.105200px;}
.yd5{bottom:301.230150px;}
.y2cb{bottom:302.722950px;}
.y2d{bottom:303.276600px;}
.yf0{bottom:304.299450px;}
.y341{bottom:305.179350px;}
.y214{bottom:305.414400px;}
.y9c{bottom:305.791950px;}
.y276{bottom:305.915025px;}
.y2f7{bottom:306.465075px;}
.y25f{bottom:307.518750px;}
.y1f9{bottom:308.649900px;}
.y22d{bottom:310.749150px;}
.y1de{bottom:311.761275px;}
.y24f{bottom:311.874075px;}
.y1c0{bottom:312.231900px;}
.y361{bottom:312.720450px;}
.y2dd{bottom:313.843275px;}
.y1a4{bottom:315.583275px;}
.y2c{bottom:316.020600px;}
.y31a{bottom:316.047825px;}
.y189{bottom:318.565575px;}
.y87{bottom:318.577575px;}
.y4a{bottom:318.579525px;}
.y15f{bottom:318.581700px;}
.y173{bottom:318.585825px;}
.y6b{bottom:318.614700px;}
.y107{bottom:318.620775px;}
.y2ab{bottom:318.697575px;}
.yb8{bottom:318.806025px;}
.y2ca{bottom:320.315325px;}
.y340{bottom:321.497700px;}
.y9b{bottom:321.777075px;}
.yef{bottom:321.891825px;}
.y275{bottom:321.900150px;}
.y213{bottom:323.006775px;}
.y25e{bottom:323.503875px;}
.y28f{bottom:323.511525px;}
.y2f6{bottom:324.057450px;}
.y142{bottom:324.957150px;}
.y1f8{bottom:326.242275px;}
.y22c{bottom:326.734275px;}
.y360{bottom:327.118575px;}
.y24e{bottom:327.859200px;}
.y1bf{bottom:328.217025px;}
.y2b{bottom:328.764600px;}
.y1dd{bottom:329.353650px;}
.y2dc{bottom:329.828400px;}
.y1a3{bottom:331.568400px;}
.y319{bottom:333.736950px;}
.yb7{bottom:334.791150px;}
.y188{bottom:336.157950px;}
.y86{bottom:336.169950px;}
.y49{bottom:336.171900px;}
.y15e{bottom:336.174075px;}
.y172{bottom:336.178200px;}
.y6a{bottom:336.207075px;}
.y106{bottom:336.213150px;}
.y2aa{bottom:336.289950px;}
.y9a{bottom:337.762200px;}
.y33f{bottom:337.819200px;}
.y274{bottom:337.885275px;}
.y2c9{bottom:337.907700px;}
.yee{bottom:339.484200px;}
.y25d{bottom:339.489000px;}
.y28e{bottom:339.496650px;}
.y212{bottom:340.615650px;}
.y141{bottom:340.941150px;}
.y2a{bottom:341.508600px;}
.y35f{bottom:341.516700px;}
.y2f5{bottom:341.649825px;}
.y22b{bottom:342.719400px;}
.y1f7{bottom:343.834650px;}
.y24d{bottom:343.844325px;}
.y1be{bottom:344.202150px;}
.y2db{bottom:345.813525px;}
.y1dc{bottom:346.946025px;}
.y1a2{bottom:347.553525px;}
.yb6{bottom:350.776275px;}
.y318{bottom:351.426075px;}
.y187{bottom:353.750325px;}
.yd4{bottom:353.758200px;}
.y85{bottom:353.762325px;}
.y48{bottom:353.764275px;}
.y123{bottom:353.766450px;}
.y171{bottom:353.770575px;}
.y69{bottom:353.799450px;}
.y105{bottom:353.805525px;}
.y273{bottom:353.870400px;}
.y2a9{bottom:353.882325px;}
.y33e{bottom:354.137700px;}
.y29{bottom:354.252600px;}
.y25c{bottom:355.474125px;}
.y28d{bottom:355.481775px;}
.y2c8{bottom:355.500075px;}
.y35e{bottom:355.914825px;}
.yed{bottom:357.076575px;}
.y211{bottom:358.208025px;}
.y22a{bottom:358.704525px;}
.y2f4{bottom:359.242200px;}
.y24c{bottom:359.829450px;}
.y1bd{bottom:360.187275px;}
.y1f6{bottom:361.427025px;}
.y2da{bottom:361.798650px;}
.y1a1{bottom:363.538650px;}
.y1db{bottom:364.538400px;}
.yb5{bottom:366.761400px;}
.y28{bottom:366.996600px;}
.y140{bottom:368.076150px;}
.y317{bottom:369.115200px;}
.y272{bottom:369.855525px;}
.y35d{bottom:370.312950px;}
.y33d{bottom:370.459200px;}
.y186{bottom:371.342700px;}
.yd3{bottom:371.350575px;}
.y84{bottom:371.354700px;}
.y47{bottom:371.356650px;}
.y122{bottom:371.358825px;}
.y170{bottom:371.362950px;}
.y68{bottom:371.391825px;}
.y104{bottom:371.397900px;}
.y99{bottom:371.421075px;}
.y25b{bottom:371.459250px;}
.y28c{bottom:371.466900px;}
.y2a8{bottom:371.474700px;}
.y2c7{bottom:373.092450px;}
.yec{bottom:374.668950px;}
.y229{bottom:374.689650px;}
.y210{bottom:375.800400px;}
.y24b{bottom:375.814575px;}
.y1bc{bottom:376.172400px;}
.y2f3{bottom:376.834575px;}
.y2d9{bottom:377.783775px;}
.y1f5{bottom:379.019400px;}
.y1a0{bottom:379.523775px;}
.y27{bottom:379.740600px;}
.yb4{bottom:382.746525px;}
.y13f{bottom:384.060150px;}
.y35c{bottom:384.711075px;}
.y271{bottom:385.840650px;}
.y33c{bottom:386.776350px;}
.y316{bottom:386.804325px;}
.y25a{bottom:387.444375px;}
.y28b{bottom:387.452025px;}
.yd2{bottom:388.942950px;}
.y83{bottom:388.947075px;}
.y46{bottom:388.949025px;}
.y121{bottom:388.951200px;}
.y16f{bottom:388.955325px;}
.y67{bottom:388.984200px;}
.y103{bottom:388.990275px;}
.y98{bottom:389.013450px;}
.y2a7{bottom:389.067075px;}
.y228{bottom:390.674775px;}
.y2c6{bottom:390.684825px;}
.y24a{bottom:391.799700px;}
.y1bb{bottom:392.157525px;}
.y26{bottom:392.484600px;}
.y20f{bottom:393.392775px;}
.y2d8{bottom:393.768900px;}
.y2f2{bottom:394.426950px;}
.y19f{bottom:395.508900px;}
.y1f4{bottom:396.611775px;}
.yb3{bottom:398.731650px;}
.y1da{bottom:399.723150px;}
.y13e{bottom:400.044150px;}
.y270{bottom:401.825775px;}
.y33b{bottom:403.097850px;}
.y259{bottom:403.429500px;}
.y28a{bottom:403.437150px;}
.y315{bottom:404.493450px;}
.y25{bottom:405.228600px;}
.y185{bottom:406.527450px;}
.yd1{bottom:406.535325px;}
.y82{bottom:406.539450px;}
.y45{bottom:406.541400px;}
.y120{bottom:406.543575px;}
.y16e{bottom:406.547700px;}
.y66{bottom:406.576575px;}
.y102{bottom:406.582650px;}
.y97{bottom:406.605825px;}
.y2a6{bottom:406.659450px;}
.y227{bottom:406.659900px;}
.y249{bottom:407.784825px;}
.y35b{bottom:407.902950px;}
.y1ba{bottom:408.142650px;}
.y2c5{bottom:408.277200px;}
.y2d7{bottom:409.754025px;}
.yeb{bottom:409.882650px;}
.y20e{bottom:410.993400px;}
.y19e{bottom:411.494025px;}
.y2f1{bottom:412.019325px;}
.y1f3{bottom:414.228900px;}
.yb2{bottom:414.716775px;}
.y26f{bottom:417.810900px;}
.y24{bottom:417.972600px;}
.y258{bottom:419.414625px;}
.y33a{bottom:419.419350px;}
.y289{bottom:419.422275px;}
.y314{bottom:422.182575px;}
.y226{bottom:422.645025px;}
.y248{bottom:423.769950px;}
.y81{bottom:424.131825px;}
.y44{bottom:424.133775px;}
.y11f{bottom:424.135950px;}
.y16d{bottom:424.140075px;}
.yd0{bottom:424.144200px;}
.y65{bottom:424.168950px;}
.y101{bottom:424.175025px;}
.y96{bottom:424.198200px;}
.y2a5{bottom:424.251825px;}
.y2d6{bottom:425.739150px;}
.yea{bottom:425.867775px;}
.y2c4{bottom:425.869575px;}
.y13d{bottom:427.179150px;}
.y19d{bottom:427.479150px;}
.y20d{bottom:428.585775px;}
.y2f0{bottom:429.611700px;}
.yb1{bottom:430.701900px;}
.y23{bottom:430.716600px;}
.y1f2{bottom:431.821275px;}
.y26e{bottom:433.796025px;}
.y257{bottom:435.399750px;}
.y288{bottom:435.407400px;}
.y339{bottom:435.737850px;}
.y225{bottom:438.630150px;}
.y247{bottom:439.755075px;}
.y313{bottom:439.871700px;}
.y11e{bottom:441.728325px;}
.y16c{bottom:441.732450px;}
.ycf{bottom:441.736575px;}
.y80{bottom:441.740850px;}
.y43{bottom:441.742650px;}
.y64{bottom:441.761325px;}
.y100{bottom:441.767400px;}
.y95{bottom:441.790575px;}
.y1b8{bottom:441.794475px;}
.y2a4{bottom:441.844200px;}
.ye9{bottom:441.852900px;}
.y13c{bottom:443.163150px;}
.y2c3{bottom:443.461950px;}
.y19c{bottom:443.464275px;}
.y20c{bottom:446.202900px;}
.yb0{bottom:446.687025px;}
.y2ef{bottom:447.204075px;}
.y1f1{bottom:449.413650px;}
.y26d{bottom:449.781150px;}
.y287{bottom:451.392525px;}
.y35a{bottom:452.057700px;}
.y338{bottom:452.059350px;}
.y1d9{bottom:452.516400px;}
.y224{bottom:454.615275px;}
.y246{bottom:455.740200px;}
.y22{bottom:456.216600px;}
.y312{bottom:457.560825px;}
.ye8{bottom:457.838025px;}
.y13b{bottom:459.147150px;}
.y16b{bottom:459.324825px;}
.yce{bottom:459.328950px;}
.y7f{bottom:459.333225px;}
.y42{bottom:459.335025px;}
.y63{bottom:459.353700px;}
.y11d{bottom:459.357825px;}
.yff{bottom:459.359775px;}
.y2d5{bottom:459.366225px;}
.y184{bottom:459.370200px;}
.y94{bottom:459.382950px;}
.y1b7{bottom:459.386850px;}
.y15d{bottom:459.394950px;}
.y2a3{bottom:459.436575px;}
.y19b{bottom:459.449400px;}
.y2c2{bottom:461.054325px;}
.yaf{bottom:462.672150px;}
.y20b{bottom:463.795275px;}
.y2ee{bottom:464.796450px;}
.y26c{bottom:465.766275px;}
.y1f0{bottom:467.006025px;}
.y286{bottom:467.377650px;}
.y337{bottom:468.379200px;}
.y256{bottom:468.985575px;}
.y1d8{bottom:470.108775px;}
.y223{bottom:470.600400px;}
.y245{bottom:471.725325px;}
.ye7{bottom:473.823150px;}
.y311{bottom:475.249950px;}
.y21{bottom:475.344600px;}
.y19a{bottom:475.434525px;}
.ycd{bottom:476.921325px;}
.y7e{bottom:476.925600px;}
.y41{bottom:476.927400px;}
.y62{bottom:476.946075px;}
.y11c{bottom:476.950200px;}
.yfe{bottom:476.952150px;}
.y2d4{bottom:476.958600px;}
.y183{bottom:476.962575px;}
.y1b6{bottom:476.979225px;}
.y15c{bottom:476.987325px;}
.y16a{bottom:476.991450px;}
.y2a2{bottom:477.028950px;}
.y2c1{bottom:478.646700px;}
.yae{bottom:478.657275px;}
.y20a{bottom:481.387650px;}
.y26b{bottom:481.751400px;}
.y2ed{bottom:482.388825px;}
.y285{bottom:483.362775px;}
.y1ef{bottom:484.598400px;}
.y336{bottom:484.697700px;}
.y13a{bottom:486.282150px;}
.y255{bottom:486.577950px;}
.y222{bottom:486.585525px;}
.y244{bottom:487.710450px;}
.y1d7{bottom:487.742400px;}
.y20{bottom:488.088600px;}
.ye6{bottom:489.808275px;}
.y199{bottom:491.419650px;}
.y310{bottom:492.939075px;}
.y7d{bottom:494.517975px;}
.y40{bottom:494.519775px;}
.ycc{bottom:494.526075px;}
.y61{bottom:494.538450px;}
.y11b{bottom:494.542575px;}
.yfd{bottom:494.544525px;}
.y2d3{bottom:494.550975px;}
.y182{bottom:494.554950px;}
.y93{bottom:494.567700px;}
.y1b5{bottom:494.571600px;}
.y15b{bottom:494.579700px;}
.y169{bottom:494.583825px;}
.yad{bottom:494.642400px;}
.y2c0{bottom:496.239075px;}
.y26a{bottom:497.736525px;}
.y209{bottom:498.980025px;}
.y284{bottom:499.347900px;}
.y2ec{bottom:499.981200px;}
.y1f{bottom:500.832600px;}
.y335{bottom:501.019200px;}
.y1ee{bottom:502.190775px;}
.y139{bottom:502.266150px;}
.y221{bottom:502.570650px;}
.y243{bottom:503.695575px;}
.y1d6{bottom:505.334775px;}
.ye5{bottom:505.793400px;}
.y198{bottom:507.404775px;}
.yac{bottom:510.627525px;}
.y30f{bottom:510.628200px;}
.ycb{bottom:512.118450px;}
.y60{bottom:512.130825px;}
.y11a{bottom:512.134950px;}
.yfc{bottom:512.136900px;}
.y2d2{bottom:512.143350px;}
.y181{bottom:512.147325px;}
.y7c{bottom:512.151600px;}
.y3f{bottom:512.161650px;}
.y1b4{bottom:512.163975px;}
.y15a{bottom:512.172075px;}
.y168{bottom:512.176200px;}
.y2a1{bottom:512.238900px;}
.y1e{bottom:513.576600px;}
.y269{bottom:513.721650px;}
.y2bf{bottom:513.831450px;}
.y283{bottom:515.333025px;}
.y208{bottom:516.572400px;}
.y334{bottom:517.334700px;}
.y359{bottom:517.336200px;}
.y2eb{bottom:517.573575px;}
.y220{bottom:518.555775px;}
.y242{bottom:519.680700px;}
.y1ed{bottom:519.783150px;}
.ye4{bottom:521.778525px;}
.y1d5{bottom:522.927150px;}
.y197{bottom:523.389900px;}
.y1d{bottom:526.320600px;}
.yab{bottom:526.612650px;}
.y2a0{bottom:528.224025px;}
.y30e{bottom:528.317325px;}
.y138{bottom:529.401150px;}
.yca{bottom:529.710825px;}
.y5f{bottom:529.723200px;}
.y119{bottom:529.727325px;}
.yfb{bottom:529.729275px;}
.y2d1{bottom:529.735725px;}
.y180{bottom:529.739700px;}
.y7b{bottom:529.743975px;}
.y3e{bottom:529.754025px;}
.y1b3{bottom:529.756350px;}
.y159{bottom:529.764450px;}
.y167{bottom:529.768575px;}
.y282{bottom:531.318150px;}
.y333{bottom:533.656200px;}
.y358{bottom:533.657700px;}
.y207{bottom:534.164775px;}
.y21f{bottom:534.540900px;}
.y2ea{bottom:535.165950px;}
.y241{bottom:535.665825px;}
.ye3{bottom:537.763650px;}
.y1c{bottom:539.064600px;}
.y196{bottom:539.375025px;}
.y1d4{bottom:540.519525px;}
.yaa{bottom:542.597775px;}
.y29f{bottom:544.209150px;}
.y137{bottom:545.385150px;}
.y30d{bottom:546.006450px;}
.y5e{bottom:547.315575px;}
.y118{bottom:547.319700px;}
.yfa{bottom:547.321650px;}
.y268{bottom:547.328100px;}
.y17f{bottom:547.332075px;}
.y7a{bottom:547.336350px;}
.yc9{bottom:547.344450px;}
.y3d{bottom:547.346400px;}
.y1b2{bottom:547.348725px;}
.y158{bottom:547.356825px;}
.y92{bottom:547.360950px;}
.y2be{bottom:549.043275px;}
.y332{bottom:549.977700px;}
.y357{bottom:549.979200px;}
.y21e{bottom:550.526025px;}
.y240{bottom:551.650950px;}
.y206{bottom:551.757150px;}
.y1b{bottom:551.808600px;}
.y2e9{bottom:552.758325px;}
.ye2{bottom:553.748775px;}
.y1ec{bottom:554.989200px;}
.y195{bottom:555.360150px;}
.y1d3{bottom:558.111900px;}
.ya9{bottom:558.582900px;}
.y29e{bottom:560.194275px;}
.y30c{bottom:563.695575px;}
.y1a{bottom:564.552600px;}
.y5d{bottom:564.907950px;}
.y117{bottom:564.912075px;}
.yf9{bottom:564.914025px;}
.y281{bottom:564.916200px;}
.y267{bottom:564.920475px;}
.y17e{bottom:564.924450px;}
.y79{bottom:564.928725px;}
.yc8{bottom:564.936825px;}
.y3c{bottom:564.938775px;}
.y1b1{bottom:564.941100px;}
.y157{bottom:564.949200px;}
.y91{bottom:564.953325px;}
.y2bd{bottom:565.028400px;}
.y331{bottom:566.299200px;}
.y21d{bottom:566.511150px;}
.ye1{bottom:569.733900px;}
.y1eb{bottom:570.974325px;}
.y194{bottom:571.345275px;}
.y136{bottom:572.520150px;}
.ya8{bottom:574.568025px;}
.y1d2{bottom:575.704275px;}
.y29d{bottom:576.179400px;}
.y19{bottom:577.296600px;}
.y2bc{bottom:581.013525px;}
.y30b{bottom:581.384700px;}
.y5c{bottom:582.500325px;}
.y116{bottom:582.504450px;}
.yf8{bottom:582.506400px;}
.y280{bottom:582.508575px;}
.y266{bottom:582.512850px;}
.y17d{bottom:582.516825px;}
.y78{bottom:582.521100px;}
.yc7{bottom:582.529200px;}
.y3b{bottom:582.531150px;}
.y1b0{bottom:582.533475px;}
.y156{bottom:582.541575px;}
.y90{bottom:582.545700px;}
.y330{bottom:582.617700px;}
.y23f{bottom:585.253275px;}
.ye0{bottom:585.719025px;}
.y1ea{bottom:586.959450px;}
.y205{bottom:586.972575px;}
.y193{bottom:587.330400px;}
.y2e8{bottom:587.943075px;}
.y135{bottom:588.504150px;}
.y18{bottom:590.040600px;}
.ya7{bottom:590.553150px;}
.y29c{bottom:592.164525px;}
.y1d1{bottom:593.296650px;}
.y2bb{bottom:596.998650px;}
.y32f{bottom:598.939200px;}
.y30a{bottom:599.073825px;}
.y115{bottom:600.096825px;}
.yf7{bottom:600.098775px;}
.y27f{bottom:600.100950px;}
.y21c{bottom:600.105225px;}
.y17c{bottom:600.109200px;}
.y77{bottom:600.113475px;}
.yc6{bottom:600.121575px;}
.y3a{bottom:600.123525px;}
.y1af{bottom:600.125850px;}
.y155{bottom:600.133950px;}
.y5b{bottom:600.138075px;}
.ydf{bottom:601.704150px;}
.y17{bottom:602.784600px;}
.y23e{bottom:602.845650px;}
.y1e9{bottom:602.944575px;}
.y204{bottom:602.957700px;}
.y192{bottom:603.315525px;}
.ya6{bottom:606.538275px;}
.y29b{bottom:608.149650px;}
.y1d0{bottom:610.889025px;}
.y2ba{bottom:612.983775px;}
.y32e{bottom:615.256350px;}
.y356{bottom:615.257850px;}
.y134{bottom:615.639150px;}
.y309{bottom:616.762950px;}
.y27e{bottom:617.693325px;}
.y21b{bottom:617.697600px;}
.y114{bottom:617.701575px;}
.y76{bottom:617.705850px;}
.yc5{bottom:617.713950px;}
.y39{bottom:617.715900px;}
.y1ae{bottom:617.718225px;}
.y154{bottom:617.726325px;}
.y5a{bottom:617.730450px;}
.y1e8{bottom:618.929700px;}
.y203{bottom:618.942825px;}
.y191{bottom:619.300650px;}
.y23d{bottom:620.438025px;}
.ya5{bottom:622.523400px;}
.y29a{bottom:624.134775px;}
.y1cf{bottom:628.481400px;}
.y2b9{bottom:628.968900px;}
.y32d{bottom:631.577850px;}
.y355{bottom:631.579350px;}
.y133{bottom:631.623150px;}
.y308{bottom:634.452075px;}
.y1e7{bottom:634.914825px;}
.y202{bottom:634.927950px;}
.y21a{bottom:635.289975px;}
.y113{bottom:635.293950px;}
.y75{bottom:635.298225px;}
.y2e7{bottom:635.302200px;}
.yc4{bottom:635.306325px;}
.y38{bottom:635.308275px;}
.y1ad{bottom:635.310600px;}
.y153{bottom:635.318700px;}
.y59{bottom:635.322825px;}
.y23c{bottom:638.030400px;}
.ya4{bottom:638.508525px;}
.y299{bottom:640.119900px;}
.y2b8{bottom:644.954025px;}
.y1ce{bottom:646.073775px;}
.y132{bottom:647.607150px;}
.y32c{bottom:647.899350px;}
.y1e6{bottom:650.899950px;}
.y201{bottom:650.913075px;}
.y307{bottom:652.141200px;}
.y112{bottom:652.886325px;}
.y74{bottom:652.890600px;}
.y2e6{bottom:652.894575px;}
.yc3{bottom:652.898700px;}
.y37{bottom:652.900650px;}
.y1ac{bottom:652.902975px;}
.y152{bottom:652.911075px;}
.y58{bottom:652.915200px;}
.ya3{bottom:654.493650px;}
.y23b{bottom:655.622775px;}
.y298{bottom:656.105025px;}
.y16{bottom:659.520600px;}
.y2b7{bottom:660.939150px;}
.y1cd{bottom:663.666150px;}
.y354{bottom:664.216200px;}
.y32b{bottom:664.217700px;}
.y1e5{bottom:666.885075px;}
.y200{bottom:666.898200px;}
.y306{bottom:669.830325px;}
.y73{bottom:670.482975px;}
.y2e5{bottom:670.486950px;}
.yc2{bottom:670.491075px;}
.y36{bottom:670.493025px;}
.y111{bottom:670.495350px;}
.y151{bottom:670.503450px;}
.y57{bottom:670.507575px;}
.y297{bottom:672.090150px;}
.y23a{bottom:673.231650px;}
.y15{bottom:673.927950px;}
.y131{bottom:674.742150px;}
.y2b6{bottom:676.924275px;}
.y353{bottom:680.537700px;}
.y32a{bottom:680.539200px;}
.y1e4{bottom:682.883325px;}
.y305{bottom:687.519450px;}
.y2e4{bottom:688.079325px;}
.yc1{bottom:688.083450px;}
.y35{bottom:688.085400px;}
.y110{bottom:688.087725px;}
.y150{bottom:688.095825px;}
.y56{bottom:688.099950px;}
.y130{bottom:690.726150px;}
.y239{bottom:690.824025px;}
.y2b5{bottom:692.909400px;}
.y329{bottom:696.856350px;}
.y352{bottom:696.859200px;}
.y14{bottom:697.897950px;}
.y1cc{bottom:698.868450px;}
.y304{bottom:705.208575px;}
.yc0{bottom:705.675825px;}
.y34{bottom:705.677775px;}
.y10f{bottom:705.680100px;}
.y14f{bottom:705.688200px;}
.y55{bottom:705.692325px;}
.y238{bottom:708.416400px;}
.y2b4{bottom:708.894525px;}
.y328{bottom:713.177850px;}
.y351{bottom:713.179350px;}
.y1cb{bottom:714.853575px;}
.y13{bottom:717.082950px;}
.y12f{bottom:717.861150px;}
.y303{bottom:722.897700px;}
.y10e{bottom:723.272475px;}
.y14e{bottom:723.280575px;}
.y33{bottom:723.284700px;}
.y2b3{bottom:724.879650px;}
.y237{bottom:726.008775px;}
.y350{bottom:729.497700px;}
.y327{bottom:729.499350px;}
.y1ca{bottom:730.838700px;}
.y12e{bottom:733.845150px;}
.y302{bottom:740.586825px;}
.y14d{bottom:740.872950px;}
.y32{bottom:740.877075px;}
.y236{bottom:743.601150px;}
.y326{bottom:745.816200px;}
.y34f{bottom:745.819200px;}
.y1c9{bottom:746.823825px;}
.y12{bottom:756.127950px;}
.y301{bottom:758.275950px;}
.y14c{bottom:758.465325px;}
.y31{bottom:758.469450px;}
.y12d{bottom:760.978050px;}
.y34e{bottom:762.136200px;}
.y325{bottom:762.137700px;}
.y1c8{bottom:762.808950px;}
.y11{bottom:775.312950px;}
.y300{bottom:775.965075px;}
.y54{bottom:776.061825px;}
.y34d{bottom:778.457700px;}
.y324{bottom:778.459200px;}
.y1c7{bottom:778.794075px;}
.y30{bottom:793.654200px;}
.y10{bottom:794.497950px;}
.y1c6{bottom:794.779200px;}
.y2f{bottom:832.327200px;}
.yd{bottom:835.327800px;}
.y2{bottom:855.702900px;}
.yf{bottom:867.883800px;}
.ye{bottom:881.383800px;}
.h6{height:30.912000px;}
.h12{height:31.341064px;}
.h8{height:35.328000px;}
.h19{height:37.957500px;}
.h4{height:38.388000px;}
.h5{height:41.130000px;}
.he{height:42.539062px;}
.hc{height:43.054688px;}
.h7{height:44.496000px;}
.hd{height:44.671875px;}
.hf{height:45.745605px;}
.h13{height:47.091064px;}
.h15{height:47.856445px;}
.h16{height:48.436523px;}
.h1b{height:48.667500px;}
.h1a{height:48.825000px;}
.h2{height:51.127441px;}
.h14{height:52.472900px;}
.h17{height:52.478900px;}
.h18{height:52.484900px;}
.ha{height:53.173828px;}
.hb{height:53.818359px;}
.h9{height:55.839844px;}
.h11{height:57.854736px;}
.h10{height:60.027832px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xd{left:93.543300px;}
.x1{left:107.148450px;}
.x17{left:110.976300px;}
.x9{left:112.694100px;}
.x10{left:114.803100px;}
.xf{left:119.053050px;}
.xa{left:120.119100px;}
.x1c{left:123.299475px;}
.x16{left:126.589800px;}
.x11{left:128.409450px;}
.x3{left:132.664650px;}
.x1d{left:136.910325px;}
.x15{left:146.579100px;}
.x14{left:151.093050px;}
.x13{left:164.699400px;}
.x4{left:167.305800px;}
.x7{left:171.254100px;}
.x5{left:172.930800px;}
.x12{left:185.964150px;}
.x18{left:230.032800px;}
.x19{left:327.826800px;}
.x8{left:346.739100px;}
.xc{left:364.197450px;}
.x6{left:415.535250px;}
.xb{left:441.794100px;}
.xe{left:456.309900px;}
.x1b{left:484.278300px;}
.x1a{left:488.031300px;}
.x2{left:520.665750px;}
@media print{
.v4{vertical-align:-17.200000pt;}
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.560000pt;}
.v1{vertical-align:17.148267pt;}
.ls3f{letter-spacing:-1.146667pt;}
.ls40{letter-spacing:-1.089333pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls54{letter-spacing:-1.040000pt;}
.ls41{letter-spacing:-1.032000pt;}
.ls33{letter-spacing:-0.960000pt;}
.ls55{letter-spacing:-0.884000pt;}
.ls46{letter-spacing:-0.860000pt;}
.ls49{letter-spacing:-0.745333pt;}
.lsf{letter-spacing:-0.573333pt;}
.ls3b{letter-spacing:-0.520000pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.458667pt;}
.ls3a{letter-spacing:-0.372667pt;}
.ls3d{letter-spacing:-0.338000pt;}
.ls3c{letter-spacing:-0.312000pt;}
.ls3e{letter-spacing:-0.286667pt;}
.ls48{letter-spacing:-0.229333pt;}
.ls42{letter-spacing:-0.208000pt;}
.ls45{letter-spacing:-0.172000pt;}
.ls44{letter-spacing:-0.114667pt;}
.ls10{letter-spacing:-0.057333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.ls4c{letter-spacing:0.007467pt;}
.ls56{letter-spacing:0.008000pt;}
.ls4f{letter-spacing:0.008267pt;}
.ls4a{letter-spacing:0.008533pt;}
.ls47{letter-spacing:0.009067pt;}
.ls4b{letter-spacing:0.016533pt;}
.ls1a{letter-spacing:0.052000pt;}
.ls8{letter-spacing:0.057333pt;}
.ls4d{letter-spacing:0.058933pt;}
.ls1b{letter-spacing:0.104000pt;}
.ls12{letter-spacing:0.114667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.156000pt;}
.ls51{letter-spacing:0.166933pt;}
.lsd{letter-spacing:0.172000pt;}
.ls50{letter-spacing:0.174667pt;}
.ls23{letter-spacing:0.186333pt;}
.ls18{letter-spacing:0.186400pt;}
.ls37{letter-spacing:0.208000pt;}
.ls22{letter-spacing:0.223600pt;}
.lsa{letter-spacing:0.229333pt;}
.ls57{letter-spacing:0.233333pt;}
.ls39{letter-spacing:0.260000pt;}
.ls14{letter-spacing:0.286667pt;}
.ls24{letter-spacing:0.303333pt;}
.ls27{letter-spacing:0.312000pt;}
.ls21{letter-spacing:0.335400pt;}
.lsb{letter-spacing:0.344000pt;}
.ls34{letter-spacing:0.364000pt;}
.ls30{letter-spacing:0.372667pt;}
.ls13{letter-spacing:0.401333pt;}
.ls31{letter-spacing:0.409933pt;}
.ls35{letter-spacing:0.416000pt;}
.ls17{letter-spacing:0.458667pt;}
.ls20{letter-spacing:0.466667pt;}
.lsc{letter-spacing:0.516000pt;}
.ls43{letter-spacing:0.520000pt;}
.ls2e{letter-spacing:0.559000pt;}
.ls28{letter-spacing:0.572000pt;}
.lse{letter-spacing:0.573333pt;}
.ls16{letter-spacing:0.630667pt;}
.ls36{letter-spacing:0.676000pt;}
.ls26{letter-spacing:0.688000pt;}
.ls38{letter-spacing:0.728000pt;}
.ls15{letter-spacing:0.745333pt;}
.ls53{letter-spacing:0.750400pt;}
.ls52{letter-spacing:0.758667pt;}
.ls25{letter-spacing:0.802667pt;}
.ls29{letter-spacing:0.860000pt;}
.ls7{letter-spacing:0.917333pt;}
.ls19{letter-spacing:0.974667pt;}
.ls2f{letter-spacing:1.089333pt;}
.ls1{letter-spacing:1.120000pt;}
.ls2d{letter-spacing:1.146667pt;}
.ls1d{letter-spacing:1.261333pt;}
.ls2c{letter-spacing:1.490667pt;}
.ls2a{letter-spacing:1.720000pt;}
.ls4e{letter-spacing:6.550400pt;}
.ls2b{letter-spacing:7.854667pt;}
.ls4{letter-spacing:10.666667pt;}
.ls2{letter-spacing:11.120000pt;}
.ls0{letter-spacing:11.498667pt;}
.ls1e{letter-spacing:11.666667pt;}
.ls1f{letter-spacing:12.133333pt;}
.ws9c{word-spacing:-15.193333pt;}
.wsa5{word-spacing:-14.906667pt;}
.ws7f{word-spacing:-14.620000pt;}
.ws31{word-spacing:-14.333333pt;}
.ws113{word-spacing:-13.760000pt;}
.wsd7{word-spacing:-13.000000pt;}
.wsb1{word-spacing:-11.666667pt;}
.ws30{word-spacing:-11.333333pt;}
.ws9d{word-spacing:-9.875667pt;}
.wse6{word-spacing:-9.750000pt;}
.wsa7{word-spacing:-9.726600pt;}
.wsa6{word-spacing:-9.689333pt;}
.ws7d{word-spacing:-9.652067pt;}
.ws7e{word-spacing:-9.540267pt;}
.ws80{word-spacing:-9.503000pt;}
.ws1b{word-spacing:-9.316667pt;}
.wseb{word-spacing:-8.944000pt;}
.ws66{word-spacing:-8.450000pt;}
.wsfe{word-spacing:-8.112000pt;}
.ws81{word-spacing:-7.886667pt;}
.ws67{word-spacing:-7.583333pt;}
.ws6{word-spacing:-1.120000pt;}
.wsa3{word-spacing:-0.688000pt;}
.wsaa{word-spacing:-0.573333pt;}
.ws3e{word-spacing:-0.286667pt;}
.ws1{word-spacing:0.000000pt;}
.ws76{word-spacing:0.052000pt;}
.wsd8{word-spacing:0.057333pt;}
.ws89{word-spacing:0.114667pt;}
.ws129{word-spacing:0.140000pt;}
.ws6b{word-spacing:0.156000pt;}
.ws28{word-spacing:0.172000pt;}
.ws103{word-spacing:0.186667pt;}
.wsd2{word-spacing:0.208000pt;}
.wsbc{word-spacing:0.229333pt;}
.wsab{word-spacing:0.233333pt;}
.ws10d{word-spacing:0.260000pt;}
.ws12a{word-spacing:0.280000pt;}
.ws104{word-spacing:0.286667pt;}
.ws6a{word-spacing:0.312000pt;}
.ws9e{word-spacing:0.344000pt;}
.wsd1{word-spacing:0.364000pt;}
.ws45{word-spacing:0.401333pt;}
.ws6d{word-spacing:0.416000pt;}
.ws2c{word-spacing:0.458667pt;}
.wsc5{word-spacing:0.466667pt;}
.ws71{word-spacing:0.468000pt;}
.ws4{word-spacing:0.485333pt;}
.wsbb{word-spacing:0.516000pt;}
.ws110{word-spacing:0.572000pt;}
.ws9f{word-spacing:0.573333pt;}
.ws9a{word-spacing:0.624000pt;}
.ws4e{word-spacing:0.630667pt;}
.ws17{word-spacing:0.640000pt;}
.ws120{word-spacing:0.676000pt;}
.wsf1{word-spacing:0.688000pt;}
.ws102{word-spacing:0.728000pt;}
.ws5a{word-spacing:0.745333pt;}
.ws100{word-spacing:0.780000pt;}
.ws2a{word-spacing:0.802667pt;}
.ws10b{word-spacing:0.832000pt;}
.ws128{word-spacing:0.840000pt;}
.wsa9{word-spacing:0.860000pt;}
.ws63{word-spacing:0.884000pt;}
.ws5b{word-spacing:0.917333pt;}
.ws8c{word-spacing:0.933333pt;}
.ws6e{word-spacing:0.936000pt;}
.wsb2{word-spacing:0.960000pt;}
.ws35{word-spacing:0.974667pt;}
.ws127{word-spacing:0.980000pt;}
.ws125{word-spacing:1.026667pt;}
.ws4b{word-spacing:1.032000pt;}
.ws5f{word-spacing:1.040000pt;}
.wsa1{word-spacing:1.089333pt;}
.ws11d{word-spacing:1.092000pt;}
.wsf4{word-spacing:1.144000pt;}
.ws50{word-spacing:1.146667pt;}
.ws77{word-spacing:1.196000pt;}
.ws52{word-spacing:1.204000pt;}
.ws106{word-spacing:1.248000pt;}
.ws7c{word-spacing:1.261333pt;}
.ws16{word-spacing:1.280000pt;}
.ws90{word-spacing:1.306667pt;}
.ws3b{word-spacing:1.318667pt;}
.ws10f{word-spacing:1.352000pt;}
.ws83{word-spacing:1.376000pt;}
.ws23{word-spacing:1.433333pt;}
.ws70{word-spacing:1.456000pt;}
.ws56{word-spacing:1.490667pt;}
.ws3{word-spacing:1.493333pt;}
.wsfc{word-spacing:1.508000pt;}
.wsed{word-spacing:1.560000pt;}
.ws8a{word-spacing:1.586667pt;}
.ws48{word-spacing:1.605333pt;}
.wsf6{word-spacing:1.612000pt;}
.ws91{word-spacing:1.633333pt;}
.ws87{word-spacing:1.662667pt;}
.wsa{word-spacing:1.664000pt;}
.ws61{word-spacing:1.716000pt;}
.ws25{word-spacing:1.720000pt;}
.wsae{word-spacing:1.726667pt;}
.ws7a{word-spacing:1.768000pt;}
.wsb7{word-spacing:1.777333pt;}
.ws5{word-spacing:1.792000pt;}
.ws126{word-spacing:1.820000pt;}
.ws10{word-spacing:1.834667pt;}
.wsf7{word-spacing:1.872000pt;}
.ws36{word-spacing:1.892000pt;}
.ws12{word-spacing:1.920000pt;}
.wsec{word-spacing:1.924000pt;}
.ws4d{word-spacing:1.949333pt;}
.wse3{word-spacing:1.976000pt;}
.ws46{word-spacing:2.006667pt;}
.wscb{word-spacing:2.028000pt;}
.wsf3{word-spacing:2.064000pt;}
.ws11{word-spacing:2.090667pt;}
.ws3a{word-spacing:2.121333pt;}
.ws64{word-spacing:2.178667pt;}
.ws78{word-spacing:2.184000pt;}
.ws38{word-spacing:2.236000pt;}
.ws6c{word-spacing:2.288000pt;}
.wsb6{word-spacing:2.293333pt;}
.ws19{word-spacing:2.304000pt;}
.wse4{word-spacing:2.340000pt;}
.ws41{word-spacing:2.350667pt;}
.ws2{word-spacing:2.352000pt;}
.ws68{word-spacing:2.408000pt;}
.wscd{word-spacing:2.444000pt;}
.wsd9{word-spacing:2.465333pt;}
.ws99{word-spacing:2.496000pt;}
.ws22{word-spacing:2.522667pt;}
.ws72{word-spacing:2.548000pt;}
.ws57{word-spacing:2.580000pt;}
.ws11a{word-spacing:2.600000pt;}
.ws114{word-spacing:2.637333pt;}
.wsc{word-spacing:2.645333pt;}
.ws95{word-spacing:2.652000pt;}
.ws4c{word-spacing:2.694667pt;}
.ws118{word-spacing:2.704000pt;}
.wsad{word-spacing:2.706667pt;}
.ws34{word-spacing:2.752000pt;}
.ws10a{word-spacing:2.756000pt;}
.ws79{word-spacing:2.808000pt;}
.ws117{word-spacing:2.809333pt;}
.ws101{word-spacing:2.860000pt;}
.ws3c{word-spacing:2.866667pt;}
.wsc7{word-spacing:2.912000pt;}
.ws58{word-spacing:2.924000pt;}
.ws11e{word-spacing:2.964000pt;}
.ws33{word-spacing:2.981333pt;}
.wsf8{word-spacing:3.016000pt;}
.wsb9{word-spacing:3.038667pt;}
.wsd3{word-spacing:3.068000pt;}
.wsb{word-spacing:3.072000pt;}
.ws2f{word-spacing:3.096000pt;}
.ws124{word-spacing:3.126667pt;}
.wsb3{word-spacing:3.153333pt;}
.ws11c{word-spacing:3.172000pt;}
.wsd{word-spacing:3.200000pt;}
.ws21{word-spacing:3.210667pt;}
.ws73{word-spacing:3.224000pt;}
.ws3f{word-spacing:3.268000pt;}
.wsce{word-spacing:3.276000pt;}
.wsef{word-spacing:3.325333pt;}
.wse2{word-spacing:3.328000pt;}
.ws108{word-spacing:3.380000pt;}
.wsa0{word-spacing:3.382667pt;}
.wsdb{word-spacing:3.432000pt;}
.ws2d{word-spacing:3.440000pt;}
.ws10c{word-spacing:3.484000pt;}
.ws59{word-spacing:3.497333pt;}
.wse{word-spacing:3.498667pt;}
.ws8b{word-spacing:3.500000pt;}
.wsea{word-spacing:3.536000pt;}
.ws29{word-spacing:3.554667pt;}
.ws96{word-spacing:3.588000pt;}
.wsb8{word-spacing:3.612000pt;}
.wsdd{word-spacing:3.640000pt;}
.wsc1{word-spacing:3.669333pt;}
.wsfb{word-spacing:3.692000pt;}
.wsf{word-spacing:3.712000pt;}
.ws44{word-spacing:3.726667pt;}
.ws119{word-spacing:3.744000pt;}
.ws115{word-spacing:3.784000pt;}
.wsc9{word-spacing:3.796000pt;}
.ws49{word-spacing:3.841333pt;}
.ws65{word-spacing:3.873333pt;}
.ws37{word-spacing:3.898667pt;}
.ws1a{word-spacing:3.925333pt;}
.wscc{word-spacing:3.952000pt;}
.wsc2{word-spacing:3.956000pt;}
.wsfa{word-spacing:4.004000pt;}
.wsd4{word-spacing:4.013333pt;}
.ws8f{word-spacing:4.060000pt;}
.ws20{word-spacing:4.070667pt;}
.ws60{word-spacing:4.108000pt;}
.ws27{word-spacing:4.128000pt;}
.ws109{word-spacing:4.160000pt;}
.wsbe{word-spacing:4.185333pt;}
.ws9{word-spacing:4.224000pt;}
.ws82{word-spacing:4.242667pt;}
.wsf5{word-spacing:4.264000pt;}
.wsd5{word-spacing:4.300000pt;}
.wsff{word-spacing:4.316000pt;}
.wsd6{word-spacing:4.357333pt;}
.ws74{word-spacing:4.368000pt;}
.wsac{word-spacing:4.386667pt;}
.ws116{word-spacing:4.414667pt;}
.ws53{word-spacing:4.433333pt;}
.ws1e{word-spacing:4.472000pt;}
.ws93{word-spacing:4.524000pt;}
.wse1{word-spacing:4.529333pt;}
.ws111{word-spacing:4.576000pt;}
.ws42{word-spacing:4.586667pt;}
.wsdf{word-spacing:4.628000pt;}
.ws88{word-spacing:4.644000pt;}
.ws14{word-spacing:4.650667pt;}
.ws123{word-spacing:4.666667pt;}
.ws18{word-spacing:4.693333pt;}
.wsf2{word-spacing:4.701333pt;}
.ws9b{word-spacing:4.713333pt;}
.wsca{word-spacing:4.732000pt;}
.wsbf{word-spacing:4.758667pt;}
.ws105{word-spacing:4.784000pt;}
.ws8e{word-spacing:4.806667pt;}
.ws43{word-spacing:4.816000pt;}
.wsee{word-spacing:4.888000pt;}
.ws4f{word-spacing:4.930667pt;}
.ws15{word-spacing:4.949333pt;}
.ws26{word-spacing:4.988000pt;}
.wse7{word-spacing:5.044000pt;}
.ws5d{word-spacing:5.045333pt;}
.ws94{word-spacing:5.096000pt;}
.wsa8{word-spacing:5.102667pt;}
.wsdc{word-spacing:5.148000pt;}
.ws40{word-spacing:5.160000pt;}
.wsde{word-spacing:5.200000pt;}
.ws54{word-spacing:5.217333pt;}
.wsfd{word-spacing:5.252000pt;}
.wse5{word-spacing:5.274667pt;}
.ws39{word-spacing:5.332000pt;}
.ws13{word-spacing:5.333333pt;}
.ws10e{word-spacing:5.356000pt;}
.ws24{word-spacing:5.389333pt;}
.wsd0{word-spacing:5.408000pt;}
.wsb5{word-spacing:5.446667pt;}
.ws107{word-spacing:5.460000pt;}
.ws1d{word-spacing:5.504000pt;}
.ws69{word-spacing:5.561333pt;}
.wsf9{word-spacing:5.564000pt;}
.wsda{word-spacing:5.618667pt;}
.ws97{word-spacing:5.668000pt;}
.ws84{word-spacing:5.676000pt;}
.wse9{word-spacing:5.720000pt;}
.wsa2{word-spacing:5.733333pt;}
.ws5c{word-spacing:5.790667pt;}
.ws98{word-spacing:5.824000pt;}
.ws8d{word-spacing:5.833333pt;}
.wsa4{word-spacing:5.848000pt;}
.wsba{word-spacing:5.905333pt;}
.wscf{word-spacing:5.928000pt;}
.wsc3{word-spacing:5.962667pt;}
.ws112{word-spacing:5.980000pt;}
.wse0{word-spacing:6.020000pt;}
.ws92{word-spacing:6.077333pt;}
.wsc8{word-spacing:6.084000pt;}
.ws86{word-spacing:6.134667pt;}
.ws121{word-spacing:6.136000pt;}
.ws11f{word-spacing:6.188000pt;}
.ws47{word-spacing:6.249333pt;}
.ws75{word-spacing:6.292000pt;}
.ws62{word-spacing:6.344000pt;}
.ws2b{word-spacing:6.364000pt;}
.ws11b{word-spacing:6.396000pt;}
.wsc4{word-spacing:6.421333pt;}
.ws5e{word-spacing:6.448000pt;}
.ws122{word-spacing:6.486667pt;}
.ws6f{word-spacing:6.500000pt;}
.ws7b{word-spacing:6.536000pt;}
.wse8{word-spacing:6.593333pt;}
.wsb4{word-spacing:6.650667pt;}
.ws51{word-spacing:6.708000pt;}
.ws3d{word-spacing:6.765333pt;}
.wsc0{word-spacing:6.822667pt;}
.ws85{word-spacing:6.880000pt;}
.wsbd{word-spacing:6.937333pt;}
.ws4a{word-spacing:6.994667pt;}
.ws55{word-spacing:7.052000pt;}
.ws2e{word-spacing:7.109333pt;}
.ws1f{word-spacing:7.166667pt;}
.ws8{word-spacing:9.472000pt;}
.ws1c{word-spacing:11.333333pt;}
.wsf0{word-spacing:11.666667pt;}
.ws7{word-spacing:11.861333pt;}
.wsb0{word-spacing:75.600000pt;}
.wsaf{word-spacing:88.944000pt;}
.wsc6{word-spacing:996.512000pt;}
.ws32{word-spacing:1021.845333pt;}
.ws0{word-spacing:1616.672000pt;}
._16{margin-left:-11.666667pt;}
._4{margin-left:-8.288000pt;}
._9{margin-left:-2.161467pt;}
._1{margin-left:-1.120000pt;}
._6{width:1.072000pt;}
._2{width:2.912000pt;}
._18{width:4.246267pt;}
._17{width:5.531000pt;}
._8{width:6.953333pt;}
._0{width:8.026667pt;}
._3{width:10.378667pt;}
._5{width:11.861333pt;}
._d{width:37.930667pt;}
._11{width:44.640000pt;}
._f{width:57.984000pt;}
._13{width:87.600000pt;}
._c{width:112.341333pt;}
._12{width:167.040000pt;}
._a{width:170.965333pt;}
._e{width:182.016000pt;}
._b{width:194.602667pt;}
._14{width:382.944000pt;}
._10{width:452.304000pt;}
._15{width:724.964800pt;}
._7{width:750.298133pt;}
.fs9{font-size:30.333333pt;}
.fsc{font-size:33.800000pt;}
.fs8{font-size:37.266667pt;}
.fs2{font-size:37.333333pt;}
.fse{font-size:39.000000pt;}
.fs3{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsa{font-size:46.666667pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fsb{font-size:52.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.yc{bottom:84.188400pt;}
.yb{bottom:94.856400pt;}
.ya{bottom:109.296800pt;}
.y8f{bottom:110.735133pt;}
.y323{bottom:110.738000pt;}
.y34c{bottom:111.695733pt;}
.y14b{bottom:113.060933pt;}
.y53{bottom:114.240133pt;}
.y9{bottom:121.850133pt;}
.y12c{bottom:123.518467pt;}
.y322{bottom:125.324000pt;}
.y34b{bottom:126.203733pt;}
.y52{bottom:127.033467pt;}
.y14a{bottom:135.538800pt;}
.y8{bottom:136.298133pt;}
.y12b{bottom:136.316800pt;}
.y254{bottom:136.321800pt;}
.y51{bottom:139.826800pt;}
.y321{bottom:139.903467pt;}
.y34a{bottom:140.707733pt;}
.y7{bottom:146.238133pt;}
.y2ff{bottom:147.312067pt;}
.yde{bottom:149.100133pt;}
.y12a{bottom:149.115133pt;}
.y149{bottom:149.746800pt;}
.y8e{bottom:152.620133pt;}
.y320{bottom:154.489467pt;}
.y349{bottom:155.215733pt;}
.y6{bottom:156.178133pt;}
.y17b{bottom:158.086067pt;}
.ybf{bottom:158.241067pt;}
.y1ab{bottom:161.087733pt;}
.ydd{bottom:161.898467pt;}
.y296{bottom:162.437067pt;}
.y235{bottom:162.549467pt;}
.y2fe{bottom:162.949733pt;}
.y265{bottom:163.867400pt;}
.y129{bottom:165.413467pt;}
.ya2{bottom:168.050333pt;}
.y31f{bottom:169.075467pt;}
.y348{bottom:169.723733pt;}
.y5{bottom:169.898133pt;}
.y1ff{bottom:172.005733pt;}
.y27d{bottom:172.461467pt;}
.y72{bottom:173.687200pt;}
.y190{bottom:173.705733pt;}
.y1b9{bottom:173.716400pt;}
.y166{bottom:173.720067pt;}
.y17a{bottom:173.723733pt;}
.y2e3{bottom:173.771733pt;}
.y2b2{bottom:173.823067pt;}
.y148{bottom:173.866800pt;}
.ybe{bottom:173.878733pt;}
.ydc{bottom:174.696800pt;}
.yf6{bottom:176.662400pt;}
.y1aa{bottom:176.725400pt;}
.y234{bottom:176.758467pt;}
.y295{bottom:178.074733pt;}
.y128{bottom:178.206800pt;}
.y2fd{bottom:178.587400pt;}
.y264{bottom:179.505067pt;}
.y4{bottom:179.838133pt;}
.y2d0{bottom:180.924333pt;}
.ya1{bottom:183.688000pt;}
.y347{bottom:184.230533pt;}
.y1c5{bottom:185.124733pt;}
.y1e3{bottom:186.120333pt;}
.y1fe{bottom:186.214733pt;}
.y27c{bottom:186.670467pt;}
.y127{bottom:187.490133pt;}
.ydb{bottom:187.495133pt;}
.y147{bottom:188.074800pt;}
.y71{bottom:189.324867pt;}
.y10d{bottom:189.326467pt;}
.y18f{bottom:189.343400pt;}
.y8d{bottom:189.354067pt;}
.y50{bottom:189.355800pt;}
.y165{bottom:189.357733pt;}
.y179{bottom:189.361400pt;}
.y2e2{bottom:189.409400pt;}
.y2b1{bottom:189.460733pt;}
.ybd{bottom:189.516400pt;}
.y3{bottom:189.778133pt;}
.y233{bottom:190.967467pt;}
.yf5{bottom:192.300067pt;}
.y1a9{bottom:192.363067pt;}
.y219{bottom:193.291133pt;}
.y294{bottom:193.712400pt;}
.y2fc{bottom:194.225067pt;}
.y2cf{bottom:195.133333pt;}
.y263{bottom:195.142733pt;}
.y31e{bottom:195.361400pt;}
.y346{bottom:198.735733pt;}
.y253{bottom:199.002467pt;}
.y126{bottom:200.288467pt;}
.y1e2{bottom:200.329333pt;}
.y1fd{bottom:200.423733pt;}
.y1c4{bottom:200.762400pt;}
.y27b{bottom:200.879467pt;}
.y367{bottom:201.183733pt;}
.yda{bottom:203.793467pt;}
.y70{bottom:204.962533pt;}
.y10c{bottom:204.964133pt;}
.y18e{bottom:204.981067pt;}
.y8c{bottom:204.991733pt;}
.y4f{bottom:204.993467pt;}
.y164{bottom:204.995400pt;}
.y178{bottom:204.999067pt;}
.y2e1{bottom:205.047067pt;}
.y2b0{bottom:205.098400pt;}
.ybc{bottom:205.154067pt;}
.y232{bottom:205.176467pt;}
.yf4{bottom:207.937733pt;}
.y218{bottom:208.928800pt;}
.y2ce{bottom:209.342333pt;}
.y293{bottom:209.350067pt;}
.y2fb{bottom:209.862733pt;}
.y262{bottom:210.780400pt;}
.y146{bottom:212.194800pt;}
.y345{bottom:213.241067pt;}
.y366{bottom:213.982067pt;}
.y1fc{bottom:214.632733pt;}
.y252{bottom:214.640133pt;}
.ya0{bottom:214.979067pt;}
.y27a{bottom:215.088467pt;}
.y1c3{bottom:216.400067pt;}
.yd9{bottom:216.586800pt;}
.y231{bottom:219.385467pt;}
.y6f{bottom:220.600200pt;}
.y10b{bottom:220.601800pt;}
.y18d{bottom:220.618733pt;}
.y8b{bottom:220.629400pt;}
.y4e{bottom:220.631133pt;}
.y163{bottom:220.633067pt;}
.y177{bottom:220.636733pt;}
.y2af{bottom:220.736067pt;}
.ybb{bottom:220.791733pt;}
.y2cd{bottom:223.551333pt;}
.yf3{bottom:223.575400pt;}
.y1a8{bottom:223.682467pt;}
.y217{bottom:224.566467pt;}
.y292{bottom:224.987733pt;}
.y2fa{bottom:225.500400pt;}
.yd8{bottom:225.865133pt;}
.y145{bottom:226.402800pt;}
.y261{bottom:226.418067pt;}
.y365{bottom:226.780400pt;}
.y344{bottom:227.749067pt;}
.y1fb{bottom:228.841733pt;}
.y9f{bottom:229.188067pt;}
.y279{bottom:229.297467pt;}
.y125{bottom:229.380133pt;}
.y1e1{bottom:230.183400pt;}
.y251{bottom:230.277800pt;}
.y1c2{bottom:232.037733pt;}
.y230{bottom:233.594467pt;}
.y31d{bottom:233.760400pt;}
.y6e{bottom:236.237867pt;}
.y10a{bottom:236.239467pt;}
.y18c{bottom:236.256400pt;}
.y8a{bottom:236.267067pt;}
.y4d{bottom:236.268800pt;}
.y162{bottom:236.270733pt;}
.y176{bottom:236.274400pt;}
.y2e0{bottom:236.344800pt;}
.y2ae{bottom:236.373733pt;}
.yba{bottom:236.429400pt;}
.y1a7{bottom:237.891467pt;}
.yd7{bottom:238.663467pt;}
.yf2{bottom:239.213067pt;}
.y364{bottom:239.578733pt;}
.y216{bottom:240.204133pt;}
.y291{bottom:240.625400pt;}
.y2f9{bottom:241.138067pt;}
.y260{bottom:242.055733pt;}
.y124{bottom:242.173467pt;}
.y343{bottom:242.257067pt;}
.y9e{bottom:243.397067pt;}
.y278{bottom:243.506467pt;}
.y1e0{bottom:245.845800pt;}
.y250{bottom:245.915467pt;}
.y22f{bottom:247.803467pt;}
.y31c{bottom:249.484067pt;}
.y144{bottom:250.522800pt;}
.y2df{bottom:250.553800pt;}
.yd6{bottom:251.461800pt;}
.y6d{bottom:251.875533pt;}
.y109{bottom:251.877133pt;}
.y18b{bottom:251.894067pt;}
.y89{bottom:251.904733pt;}
.y4c{bottom:251.906467pt;}
.y161{bottom:251.908400pt;}
.y175{bottom:251.912067pt;}
.y2ad{bottom:252.011400pt;}
.yb9{bottom:252.067067pt;}
.y1a6{bottom:252.100467pt;}
.y363{bottom:252.377067pt;}
.y2e{bottom:252.576533pt;}
.y2cc{bottom:253.449400pt;}
.yf1{bottom:254.850733pt;}
.y215{bottom:255.841800pt;}
.y290{bottom:256.263067pt;}
.y342{bottom:256.762533pt;}
.y2f8{bottom:256.775733pt;}
.y9d{bottom:257.606067pt;}
.y277{bottom:257.715467pt;}
.y1fa{bottom:258.717800pt;}
.y1df{bottom:261.483467pt;}
.y22e{bottom:262.012467pt;}
.y1c1{bottom:263.330467pt;}
.y143{bottom:264.730800pt;}
.y2de{bottom:264.762800pt;}
.y362{bottom:265.175400pt;}
.y31b{bottom:265.207733pt;}
.y1a5{bottom:266.309467pt;}
.y18a{bottom:267.531733pt;}
.y88{bottom:267.542400pt;}
.y4b{bottom:267.544133pt;}
.y160{bottom:267.546067pt;}
.y174{bottom:267.549733pt;}
.y6c{bottom:267.575400pt;}
.y108{bottom:267.580800pt;}
.y2ac{bottom:267.649067pt;}
.yd5{bottom:267.760133pt;}
.y2cb{bottom:269.087067pt;}
.y2d{bottom:269.579200pt;}
.yf0{bottom:270.488400pt;}
.y341{bottom:271.270533pt;}
.y214{bottom:271.479467pt;}
.y9c{bottom:271.815067pt;}
.y276{bottom:271.924467pt;}
.y2f7{bottom:272.413400pt;}
.y25f{bottom:273.350000pt;}
.y1f9{bottom:274.355467pt;}
.y22d{bottom:276.221467pt;}
.y1de{bottom:277.121133pt;}
.y24f{bottom:277.221400pt;}
.y1c0{bottom:277.539467pt;}
.y361{bottom:277.973733pt;}
.y2dd{bottom:278.971800pt;}
.y1a4{bottom:280.518467pt;}
.y2c{bottom:280.907200pt;}
.y31a{bottom:280.931400pt;}
.y189{bottom:283.169400pt;}
.y87{bottom:283.180067pt;}
.y4a{bottom:283.181800pt;}
.y15f{bottom:283.183733pt;}
.y173{bottom:283.187400pt;}
.y6b{bottom:283.213067pt;}
.y107{bottom:283.218467pt;}
.y2ab{bottom:283.286733pt;}
.yb8{bottom:283.383133pt;}
.y2ca{bottom:284.724733pt;}
.y340{bottom:285.775733pt;}
.y9b{bottom:286.024067pt;}
.yef{bottom:286.126067pt;}
.y275{bottom:286.133467pt;}
.y213{bottom:287.117133pt;}
.y25e{bottom:287.559000pt;}
.y28f{bottom:287.565800pt;}
.y2f6{bottom:288.051067pt;}
.y142{bottom:288.850800pt;}
.y1f8{bottom:289.993133pt;}
.y22c{bottom:290.430467pt;}
.y360{bottom:290.772067pt;}
.y24e{bottom:291.430400pt;}
.y1bf{bottom:291.748467pt;}
.y2b{bottom:292.235200pt;}
.y1dd{bottom:292.758800pt;}
.y2dc{bottom:293.180800pt;}
.y1a3{bottom:294.727467pt;}
.y319{bottom:296.655067pt;}
.yb7{bottom:297.592133pt;}
.y188{bottom:298.807067pt;}
.y86{bottom:298.817733pt;}
.y49{bottom:298.819467pt;}
.y15e{bottom:298.821400pt;}
.y172{bottom:298.825067pt;}
.y6a{bottom:298.850733pt;}
.y106{bottom:298.856133pt;}
.y2aa{bottom:298.924400pt;}
.y9a{bottom:300.233067pt;}
.y33f{bottom:300.283733pt;}
.y274{bottom:300.342467pt;}
.y2c9{bottom:300.362400pt;}
.yee{bottom:301.763733pt;}
.y25d{bottom:301.768000pt;}
.y28e{bottom:301.774800pt;}
.y212{bottom:302.769467pt;}
.y141{bottom:303.058800pt;}
.y2a{bottom:303.563200pt;}
.y35f{bottom:303.570400pt;}
.y2f5{bottom:303.688733pt;}
.y22b{bottom:304.639467pt;}
.y1f7{bottom:305.630800pt;}
.y24d{bottom:305.639400pt;}
.y1be{bottom:305.957467pt;}
.y2db{bottom:307.389800pt;}
.y1dc{bottom:308.396467pt;}
.y1a2{bottom:308.936467pt;}
.yb6{bottom:311.801133pt;}
.y318{bottom:312.378733pt;}
.y187{bottom:314.444733pt;}
.yd4{bottom:314.451733pt;}
.y85{bottom:314.455400pt;}
.y48{bottom:314.457133pt;}
.y123{bottom:314.459067pt;}
.y171{bottom:314.462733pt;}
.y69{bottom:314.488400pt;}
.y105{bottom:314.493800pt;}
.y273{bottom:314.551467pt;}
.y2a9{bottom:314.562067pt;}
.y33e{bottom:314.789067pt;}
.y29{bottom:314.891200pt;}
.y25c{bottom:315.977000pt;}
.y28d{bottom:315.983800pt;}
.y2c8{bottom:316.000067pt;}
.y35e{bottom:316.368733pt;}
.yed{bottom:317.401400pt;}
.y211{bottom:318.407133pt;}
.y22a{bottom:318.848467pt;}
.y2f4{bottom:319.326400pt;}
.y24c{bottom:319.848400pt;}
.y1bd{bottom:320.166467pt;}
.y1f6{bottom:321.268467pt;}
.y2da{bottom:321.598800pt;}
.y1a1{bottom:323.145467pt;}
.y1db{bottom:324.034133pt;}
.yb5{bottom:326.010133pt;}
.y28{bottom:326.219200pt;}
.y140{bottom:327.178800pt;}
.y317{bottom:328.102400pt;}
.y272{bottom:328.760467pt;}
.y35d{bottom:329.167067pt;}
.y33d{bottom:329.297067pt;}
.y186{bottom:330.082400pt;}
.yd3{bottom:330.089400pt;}
.y84{bottom:330.093067pt;}
.y47{bottom:330.094800pt;}
.y122{bottom:330.096733pt;}
.y170{bottom:330.100400pt;}
.y68{bottom:330.126067pt;}
.y104{bottom:330.131467pt;}
.y99{bottom:330.152067pt;}
.y25b{bottom:330.186000pt;}
.y28c{bottom:330.192800pt;}
.y2a8{bottom:330.199733pt;}
.y2c7{bottom:331.637733pt;}
.yec{bottom:333.039067pt;}
.y229{bottom:333.057467pt;}
.y210{bottom:334.044800pt;}
.y24b{bottom:334.057400pt;}
.y1bc{bottom:334.375467pt;}
.y2f3{bottom:334.964067pt;}
.y2d9{bottom:335.807800pt;}
.y1f5{bottom:336.906133pt;}
.y1a0{bottom:337.354467pt;}
.y27{bottom:337.547200pt;}
.yb4{bottom:340.219133pt;}
.y13f{bottom:341.386800pt;}
.y35c{bottom:341.965400pt;}
.y271{bottom:342.969467pt;}
.y33c{bottom:343.801200pt;}
.y316{bottom:343.826067pt;}
.y25a{bottom:344.395000pt;}
.y28b{bottom:344.401800pt;}
.yd2{bottom:345.727067pt;}
.y83{bottom:345.730733pt;}
.y46{bottom:345.732467pt;}
.y121{bottom:345.734400pt;}
.y16f{bottom:345.738067pt;}
.y67{bottom:345.763733pt;}
.y103{bottom:345.769133pt;}
.y98{bottom:345.789733pt;}
.y2a7{bottom:345.837400pt;}
.y228{bottom:347.266467pt;}
.y2c6{bottom:347.275400pt;}
.y24a{bottom:348.266400pt;}
.y1bb{bottom:348.584467pt;}
.y26{bottom:348.875200pt;}
.y20f{bottom:349.682467pt;}
.y2d8{bottom:350.016800pt;}
.y2f2{bottom:350.601733pt;}
.y19f{bottom:351.563467pt;}
.y1f4{bottom:352.543800pt;}
.yb3{bottom:354.428133pt;}
.y1da{bottom:355.309467pt;}
.y13e{bottom:355.594800pt;}
.y270{bottom:357.178467pt;}
.y33b{bottom:358.309200pt;}
.y259{bottom:358.604000pt;}
.y28a{bottom:358.610800pt;}
.y315{bottom:359.549733pt;}
.y25{bottom:360.203200pt;}
.y185{bottom:361.357733pt;}
.yd1{bottom:361.364733pt;}
.y82{bottom:361.368400pt;}
.y45{bottom:361.370133pt;}
.y120{bottom:361.372067pt;}
.y16e{bottom:361.375733pt;}
.y66{bottom:361.401400pt;}
.y102{bottom:361.406800pt;}
.y97{bottom:361.427400pt;}
.y2a6{bottom:361.475067pt;}
.y227{bottom:361.475467pt;}
.y249{bottom:362.475400pt;}
.y35b{bottom:362.580400pt;}
.y1ba{bottom:362.793467pt;}
.y2c5{bottom:362.913067pt;}
.y2d7{bottom:364.225800pt;}
.yeb{bottom:364.340133pt;}
.y20e{bottom:365.327467pt;}
.y19e{bottom:365.772467pt;}
.y2f1{bottom:366.239400pt;}
.y1f3{bottom:368.203467pt;}
.yb2{bottom:368.637133pt;}
.y26f{bottom:371.387467pt;}
.y24{bottom:371.531200pt;}
.y258{bottom:372.813000pt;}
.y33a{bottom:372.817200pt;}
.y289{bottom:372.819800pt;}
.y314{bottom:375.273400pt;}
.y226{bottom:375.684467pt;}
.y248{bottom:376.684400pt;}
.y81{bottom:377.006067pt;}
.y44{bottom:377.007800pt;}
.y11f{bottom:377.009733pt;}
.y16d{bottom:377.013400pt;}
.yd0{bottom:377.017067pt;}
.y65{bottom:377.039067pt;}
.y101{bottom:377.044467pt;}
.y96{bottom:377.065067pt;}
.y2a5{bottom:377.112733pt;}
.y2d6{bottom:378.434800pt;}
.yea{bottom:378.549133pt;}
.y2c4{bottom:378.550733pt;}
.y13d{bottom:379.714800pt;}
.y19d{bottom:379.981467pt;}
.y20d{bottom:380.965133pt;}
.y2f0{bottom:381.877067pt;}
.yb1{bottom:382.846133pt;}
.y23{bottom:382.859200pt;}
.y1f2{bottom:383.841133pt;}
.y26e{bottom:385.596467pt;}
.y257{bottom:387.022000pt;}
.y288{bottom:387.028800pt;}
.y339{bottom:387.322533pt;}
.y225{bottom:389.893467pt;}
.y247{bottom:390.893400pt;}
.y313{bottom:390.997067pt;}
.y11e{bottom:392.647400pt;}
.y16c{bottom:392.651067pt;}
.ycf{bottom:392.654733pt;}
.y80{bottom:392.658533pt;}
.y43{bottom:392.660133pt;}
.y64{bottom:392.676733pt;}
.y100{bottom:392.682133pt;}
.y95{bottom:392.702733pt;}
.y1b8{bottom:392.706200pt;}
.y2a4{bottom:392.750400pt;}
.ye9{bottom:392.758133pt;}
.y13c{bottom:393.922800pt;}
.y2c3{bottom:394.188400pt;}
.y19c{bottom:394.190467pt;}
.y20c{bottom:396.624800pt;}
.yb0{bottom:397.055133pt;}
.y2ef{bottom:397.514733pt;}
.y1f1{bottom:399.478800pt;}
.y26d{bottom:399.805467pt;}
.y287{bottom:401.237800pt;}
.y35a{bottom:401.829067pt;}
.y338{bottom:401.830533pt;}
.y1d9{bottom:402.236800pt;}
.y224{bottom:404.102467pt;}
.y246{bottom:405.102400pt;}
.y22{bottom:405.525867pt;}
.y312{bottom:406.720733pt;}
.ye8{bottom:406.967133pt;}
.y13b{bottom:408.130800pt;}
.y16b{bottom:408.288733pt;}
.yce{bottom:408.292400pt;}
.y7f{bottom:408.296200pt;}
.y42{bottom:408.297800pt;}
.y63{bottom:408.314400pt;}
.y11d{bottom:408.318067pt;}
.yff{bottom:408.319800pt;}
.y2d5{bottom:408.325533pt;}
.y184{bottom:408.329067pt;}
.y94{bottom:408.340400pt;}
.y1b7{bottom:408.343867pt;}
.y15d{bottom:408.351067pt;}
.y2a3{bottom:408.388067pt;}
.y19b{bottom:408.399467pt;}
.y2c2{bottom:409.826067pt;}
.yaf{bottom:411.264133pt;}
.y20b{bottom:412.262467pt;}
.y2ee{bottom:413.152400pt;}
.y26c{bottom:414.014467pt;}
.y1f0{bottom:415.116467pt;}
.y286{bottom:415.446800pt;}
.y337{bottom:416.337067pt;}
.y256{bottom:416.876067pt;}
.y1d8{bottom:417.874467pt;}
.y223{bottom:418.311467pt;}
.y245{bottom:419.311400pt;}
.ye7{bottom:421.176133pt;}
.y311{bottom:422.444400pt;}
.y21{bottom:422.528533pt;}
.y19a{bottom:422.608467pt;}
.ycd{bottom:423.930067pt;}
.y7e{bottom:423.933867pt;}
.y41{bottom:423.935467pt;}
.y62{bottom:423.952067pt;}
.y11c{bottom:423.955733pt;}
.yfe{bottom:423.957467pt;}
.y2d4{bottom:423.963200pt;}
.y183{bottom:423.966733pt;}
.y1b6{bottom:423.981533pt;}
.y15c{bottom:423.988733pt;}
.y16a{bottom:423.992400pt;}
.y2a2{bottom:424.025733pt;}
.y2c1{bottom:425.463733pt;}
.yae{bottom:425.473133pt;}
.y20a{bottom:427.900133pt;}
.y26b{bottom:428.223467pt;}
.y2ed{bottom:428.790067pt;}
.y285{bottom:429.655800pt;}
.y1ef{bottom:430.754133pt;}
.y336{bottom:430.842400pt;}
.y13a{bottom:432.250800pt;}
.y255{bottom:432.513733pt;}
.y222{bottom:432.520467pt;}
.y244{bottom:433.520400pt;}
.y1d7{bottom:433.548800pt;}
.y20{bottom:433.856533pt;}
.ye6{bottom:435.385133pt;}
.y199{bottom:436.817467pt;}
.y310{bottom:438.168067pt;}
.y7d{bottom:439.571533pt;}
.y40{bottom:439.573133pt;}
.ycc{bottom:439.578733pt;}
.y61{bottom:439.589733pt;}
.y11b{bottom:439.593400pt;}
.yfd{bottom:439.595133pt;}
.y2d3{bottom:439.600867pt;}
.y182{bottom:439.604400pt;}
.y93{bottom:439.615733pt;}
.y1b5{bottom:439.619200pt;}
.y15b{bottom:439.626400pt;}
.y169{bottom:439.630067pt;}
.yad{bottom:439.682133pt;}
.y2c0{bottom:441.101400pt;}
.y26a{bottom:442.432467pt;}
.y209{bottom:443.537800pt;}
.y284{bottom:443.864800pt;}
.y2ec{bottom:444.427733pt;}
.y1f{bottom:445.184533pt;}
.y335{bottom:445.350400pt;}
.y1ee{bottom:446.391800pt;}
.y139{bottom:446.458800pt;}
.y221{bottom:446.729467pt;}
.y243{bottom:447.729400pt;}
.y1d6{bottom:449.186467pt;}
.ye5{bottom:449.594133pt;}
.y198{bottom:451.026467pt;}
.yac{bottom:453.891133pt;}
.y30f{bottom:453.891733pt;}
.ycb{bottom:455.216400pt;}
.y60{bottom:455.227400pt;}
.y11a{bottom:455.231067pt;}
.yfc{bottom:455.232800pt;}
.y2d2{bottom:455.238533pt;}
.y181{bottom:455.242067pt;}
.y7c{bottom:455.245867pt;}
.y3f{bottom:455.254800pt;}
.y1b4{bottom:455.256867pt;}
.y15a{bottom:455.264067pt;}
.y168{bottom:455.267733pt;}
.y2a1{bottom:455.323467pt;}
.y1e{bottom:456.512533pt;}
.y269{bottom:456.641467pt;}
.y2bf{bottom:456.739067pt;}
.y283{bottom:458.073800pt;}
.y208{bottom:459.175467pt;}
.y334{bottom:459.853067pt;}
.y359{bottom:459.854400pt;}
.y2eb{bottom:460.065400pt;}
.y220{bottom:460.938467pt;}
.y242{bottom:461.938400pt;}
.y1ed{bottom:462.029467pt;}
.ye4{bottom:463.803133pt;}
.y1d5{bottom:464.824133pt;}
.y197{bottom:465.235467pt;}
.y1d{bottom:467.840533pt;}
.yab{bottom:468.100133pt;}
.y2a0{bottom:469.532467pt;}
.y30e{bottom:469.615400pt;}
.y138{bottom:470.578800pt;}
.yca{bottom:470.854067pt;}
.y5f{bottom:470.865067pt;}
.y119{bottom:470.868733pt;}
.yfb{bottom:470.870467pt;}
.y2d1{bottom:470.876200pt;}
.y180{bottom:470.879733pt;}
.y7b{bottom:470.883533pt;}
.y3e{bottom:470.892467pt;}
.y1b3{bottom:470.894533pt;}
.y159{bottom:470.901733pt;}
.y167{bottom:470.905400pt;}
.y282{bottom:472.282800pt;}
.y333{bottom:474.361067pt;}
.y358{bottom:474.362400pt;}
.y207{bottom:474.813133pt;}
.y21f{bottom:475.147467pt;}
.y2ea{bottom:475.703067pt;}
.y241{bottom:476.147400pt;}
.ye3{bottom:478.012133pt;}
.y1c{bottom:479.168533pt;}
.y196{bottom:479.444467pt;}
.y1d4{bottom:480.461800pt;}
.yaa{bottom:482.309133pt;}
.y29f{bottom:483.741467pt;}
.y137{bottom:484.786800pt;}
.y30d{bottom:485.339067pt;}
.y5e{bottom:486.502733pt;}
.y118{bottom:486.506400pt;}
.yfa{bottom:486.508133pt;}
.y268{bottom:486.513867pt;}
.y17f{bottom:486.517400pt;}
.y7a{bottom:486.521200pt;}
.yc9{bottom:486.528400pt;}
.y3d{bottom:486.530133pt;}
.y1b2{bottom:486.532200pt;}
.y158{bottom:486.539400pt;}
.y92{bottom:486.543067pt;}
.y2be{bottom:488.038467pt;}
.y332{bottom:488.869067pt;}
.y357{bottom:488.870400pt;}
.y21e{bottom:489.356467pt;}
.y240{bottom:490.356400pt;}
.y206{bottom:490.450800pt;}
.y1b{bottom:490.496533pt;}
.y2e9{bottom:491.340733pt;}
.ye2{bottom:492.221133pt;}
.y1ec{bottom:493.323733pt;}
.y195{bottom:493.653467pt;}
.y1d3{bottom:496.099467pt;}
.ya9{bottom:496.518133pt;}
.y29e{bottom:497.950467pt;}
.y30c{bottom:501.062733pt;}
.y1a{bottom:501.824533pt;}
.y5d{bottom:502.140400pt;}
.y117{bottom:502.144067pt;}
.yf9{bottom:502.145800pt;}
.y281{bottom:502.147733pt;}
.y267{bottom:502.151533pt;}
.y17e{bottom:502.155067pt;}
.y79{bottom:502.158867pt;}
.yc8{bottom:502.166067pt;}
.y3c{bottom:502.167800pt;}
.y1b1{bottom:502.169867pt;}
.y157{bottom:502.177067pt;}
.y91{bottom:502.180733pt;}
.y2bd{bottom:502.247467pt;}
.y331{bottom:503.377067pt;}
.y21d{bottom:503.565467pt;}
.ye1{bottom:506.430133pt;}
.y1eb{bottom:507.532733pt;}
.y194{bottom:507.862467pt;}
.y136{bottom:508.906800pt;}
.ya8{bottom:510.727133pt;}
.y1d2{bottom:511.737133pt;}
.y29d{bottom:512.159467pt;}
.y19{bottom:513.152533pt;}
.y2bc{bottom:516.456467pt;}
.y30b{bottom:516.786400pt;}
.y5c{bottom:517.778067pt;}
.y116{bottom:517.781733pt;}
.yf8{bottom:517.783467pt;}
.y280{bottom:517.785400pt;}
.y266{bottom:517.789200pt;}
.y17d{bottom:517.792733pt;}
.y78{bottom:517.796533pt;}
.yc7{bottom:517.803733pt;}
.y3b{bottom:517.805467pt;}
.y1b0{bottom:517.807533pt;}
.y156{bottom:517.814733pt;}
.y90{bottom:517.818400pt;}
.y330{bottom:517.882400pt;}
.y23f{bottom:520.225133pt;}
.ye0{bottom:520.639133pt;}
.y1ea{bottom:521.741733pt;}
.y205{bottom:521.753400pt;}
.y193{bottom:522.071467pt;}
.y2e8{bottom:522.616067pt;}
.y135{bottom:523.114800pt;}
.y18{bottom:524.480533pt;}
.ya7{bottom:524.936133pt;}
.y29c{bottom:526.368467pt;}
.y1d1{bottom:527.374800pt;}
.y2bb{bottom:530.665467pt;}
.y32f{bottom:532.390400pt;}
.y30a{bottom:532.510067pt;}
.y115{bottom:533.419400pt;}
.yf7{bottom:533.421133pt;}
.y27f{bottom:533.423067pt;}
.y21c{bottom:533.426867pt;}
.y17c{bottom:533.430400pt;}
.y77{bottom:533.434200pt;}
.yc6{bottom:533.441400pt;}
.y3a{bottom:533.443133pt;}
.y1af{bottom:533.445200pt;}
.y155{bottom:533.452400pt;}
.y5b{bottom:533.456067pt;}
.ydf{bottom:534.848133pt;}
.y17{bottom:535.808533pt;}
.y23e{bottom:535.862800pt;}
.y1e9{bottom:535.950733pt;}
.y204{bottom:535.962400pt;}
.y192{bottom:536.280467pt;}
.ya6{bottom:539.145133pt;}
.y29b{bottom:540.577467pt;}
.y1d0{bottom:543.012467pt;}
.y2ba{bottom:544.874467pt;}
.y32e{bottom:546.894533pt;}
.y356{bottom:546.895867pt;}
.y134{bottom:547.234800pt;}
.y309{bottom:548.233733pt;}
.y27e{bottom:549.060733pt;}
.y21b{bottom:549.064533pt;}
.y114{bottom:549.068067pt;}
.y76{bottom:549.071867pt;}
.yc5{bottom:549.079067pt;}
.y39{bottom:549.080800pt;}
.y1ae{bottom:549.082867pt;}
.y154{bottom:549.090067pt;}
.y5a{bottom:549.093733pt;}
.y1e8{bottom:550.159733pt;}
.y203{bottom:550.171400pt;}
.y191{bottom:550.489467pt;}
.y23d{bottom:551.500467pt;}
.ya5{bottom:553.354133pt;}
.y29a{bottom:554.786467pt;}
.y1cf{bottom:558.650133pt;}
.y2b9{bottom:559.083467pt;}
.y32d{bottom:561.402533pt;}
.y355{bottom:561.403867pt;}
.y133{bottom:561.442800pt;}
.y308{bottom:563.957400pt;}
.y1e7{bottom:564.368733pt;}
.y202{bottom:564.380400pt;}
.y21a{bottom:564.702200pt;}
.y113{bottom:564.705733pt;}
.y75{bottom:564.709533pt;}
.y2e7{bottom:564.713067pt;}
.yc4{bottom:564.716733pt;}
.y38{bottom:564.718467pt;}
.y1ad{bottom:564.720533pt;}
.y153{bottom:564.727733pt;}
.y59{bottom:564.731400pt;}
.y23c{bottom:567.138133pt;}
.ya4{bottom:567.563133pt;}
.y299{bottom:568.995467pt;}
.y2b8{bottom:573.292467pt;}
.y1ce{bottom:574.287800pt;}
.y132{bottom:575.650800pt;}
.y32c{bottom:575.910533pt;}
.y1e6{bottom:578.577733pt;}
.y201{bottom:578.589400pt;}
.y307{bottom:579.681067pt;}
.y112{bottom:580.343400pt;}
.y74{bottom:580.347200pt;}
.y2e6{bottom:580.350733pt;}
.yc3{bottom:580.354400pt;}
.y37{bottom:580.356133pt;}
.y1ac{bottom:580.358200pt;}
.y152{bottom:580.365400pt;}
.y58{bottom:580.369067pt;}
.ya3{bottom:581.772133pt;}
.y23b{bottom:582.775800pt;}
.y298{bottom:583.204467pt;}
.y16{bottom:586.240533pt;}
.y2b7{bottom:587.501467pt;}
.y1cd{bottom:589.925467pt;}
.y354{bottom:590.414400pt;}
.y32b{bottom:590.415733pt;}
.y1e5{bottom:592.786733pt;}
.y200{bottom:592.798400pt;}
.y306{bottom:595.404733pt;}
.y73{bottom:595.984867pt;}
.y2e5{bottom:595.988400pt;}
.yc2{bottom:595.992067pt;}
.y36{bottom:595.993800pt;}
.y111{bottom:595.995867pt;}
.y151{bottom:596.003067pt;}
.y57{bottom:596.006733pt;}
.y297{bottom:597.413467pt;}
.y23a{bottom:598.428133pt;}
.y15{bottom:599.047067pt;}
.y131{bottom:599.770800pt;}
.y2b6{bottom:601.710467pt;}
.y353{bottom:604.922400pt;}
.y32a{bottom:604.923733pt;}
.y1e4{bottom:607.007400pt;}
.y305{bottom:611.128400pt;}
.y2e4{bottom:611.626067pt;}
.yc1{bottom:611.629733pt;}
.y35{bottom:611.631467pt;}
.y110{bottom:611.633533pt;}
.y150{bottom:611.640733pt;}
.y56{bottom:611.644400pt;}
.y130{bottom:613.978800pt;}
.y239{bottom:614.065800pt;}
.y2b5{bottom:615.919467pt;}
.y329{bottom:619.427867pt;}
.y352{bottom:619.430400pt;}
.y14{bottom:620.353733pt;}
.y1cc{bottom:621.216400pt;}
.y304{bottom:626.852067pt;}
.yc0{bottom:627.267400pt;}
.y34{bottom:627.269133pt;}
.y10f{bottom:627.271200pt;}
.y14f{bottom:627.278400pt;}
.y55{bottom:627.282067pt;}
.y238{bottom:629.703467pt;}
.y2b4{bottom:630.128467pt;}
.y328{bottom:633.935867pt;}
.y351{bottom:633.937200pt;}
.y1cb{bottom:635.425400pt;}
.y13{bottom:637.407067pt;}
.y12f{bottom:638.098800pt;}
.y303{bottom:642.575733pt;}
.y10e{bottom:642.908867pt;}
.y14e{bottom:642.916067pt;}
.y33{bottom:642.919733pt;}
.y2b3{bottom:644.337467pt;}
.y237{bottom:645.341133pt;}
.y350{bottom:648.442400pt;}
.y327{bottom:648.443867pt;}
.y1ca{bottom:649.634400pt;}
.y12e{bottom:652.306800pt;}
.y302{bottom:658.299400pt;}
.y14d{bottom:658.553733pt;}
.y32{bottom:658.557400pt;}
.y236{bottom:660.978800pt;}
.y326{bottom:662.947733pt;}
.y34f{bottom:662.950400pt;}
.y1c9{bottom:663.843400pt;}
.y12{bottom:672.113733pt;}
.y301{bottom:674.023067pt;}
.y14c{bottom:674.191400pt;}
.y31{bottom:674.195067pt;}
.y12d{bottom:676.424933pt;}
.y34e{bottom:677.454400pt;}
.y325{bottom:677.455733pt;}
.y1c8{bottom:678.052400pt;}
.y11{bottom:689.167067pt;}
.y300{bottom:689.746733pt;}
.y54{bottom:689.832733pt;}
.y34d{bottom:691.962400pt;}
.y324{bottom:691.963733pt;}
.y1c7{bottom:692.261400pt;}
.y30{bottom:705.470400pt;}
.y10{bottom:706.220400pt;}
.y1c6{bottom:706.470400pt;}
.y2f{bottom:739.846400pt;}
.yd{bottom:742.513600pt;}
.y2{bottom:760.624800pt;}
.yf{bottom:771.452267pt;}
.ye{bottom:783.452267pt;}
.h6{height:27.477333pt;}
.h12{height:27.858724pt;}
.h8{height:31.402667pt;}
.h19{height:33.740000pt;}
.h4{height:34.122667pt;}
.h5{height:36.560000pt;}
.he{height:37.812500pt;}
.hc{height:38.270833pt;}
.h7{height:39.552000pt;}
.hd{height:39.708333pt;}
.hf{height:40.662760pt;}
.h13{height:41.858724pt;}
.h15{height:42.539062pt;}
.h16{height:43.054688pt;}
.h1b{height:43.260000pt;}
.h1a{height:43.400000pt;}
.h2{height:45.446615pt;}
.h14{height:46.642578pt;}
.h17{height:46.647911pt;}
.h18{height:46.653245pt;}
.ha{height:47.265625pt;}
.hb{height:47.838542pt;}
.h9{height:49.635417pt;}
.h11{height:51.426432pt;}
.h10{height:53.358073pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xd{left:83.149600pt;}
.x1{left:95.243067pt;}
.x17{left:98.645600pt;}
.x9{left:100.172533pt;}
.x10{left:102.047200pt;}
.xf{left:105.824933pt;}
.xa{left:106.772533pt;}
.x1c{left:109.599533pt;}
.x16{left:112.524267pt;}
.x11{left:114.141733pt;}
.x3{left:117.924133pt;}
.x1d{left:121.698067pt;}
.x15{left:130.292533pt;}
.x14{left:134.304933pt;}
.x13{left:146.399467pt;}
.x4{left:148.716267pt;}
.x7{left:152.225867pt;}
.x5{left:153.716267pt;}
.x12{left:165.301467pt;}
.x18{left:204.473600pt;}
.x19{left:291.401600pt;}
.x8{left:308.212533pt;}
.xc{left:323.731067pt;}
.x6{left:369.364667pt;}
.xb{left:392.705867pt;}
.xe{left:405.608800pt;}
.x1b{left:430.469600pt;}
.x1a{left:433.805600pt;}
.x2{left:462.814000pt;}
}




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