
    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_a3ffdb4b581a7381ed5981bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.177000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c71d2859b972fedca3d0b696.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179000;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_7baaa716f68c9d62504ddaf8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_f4d8d491a3d83855132f6f77.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_ffb8ce76a6e499d74274a537.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_2785f6d58c09e0ce93d325f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962000;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.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.780000px;}
.v1{vertical-align:24.750000px;}
.ls60{letter-spacing:-1.080000px;}
.ls33{letter-spacing:-0.990000px;}
.ls61{letter-spacing:-0.900000px;}
.ls3f{letter-spacing:-0.858000px;}
.ls3{letter-spacing:-0.810000px;}
.ls64{letter-spacing:-0.780000px;}
.ls5f{letter-spacing:-0.765000px;}
.ls40{letter-spacing:-0.660000px;}
.ls4c{letter-spacing:-0.600000px;}
.ls1f{letter-spacing:-0.528000px;}
.ls20{letter-spacing:-0.462000px;}
.ls44{letter-spacing:-0.396000px;}
.ls63{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.330000px;}
.ls45{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.264000px;}
.ls11{letter-spacing:-0.255000px;}
.ls55{letter-spacing:-0.240000px;}
.ls35{letter-spacing:-0.204000px;}
.ls2b{letter-spacing:-0.198000px;}
.ls56{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.162000px;}
.ls26{letter-spacing:-0.153000px;}
.ls18{letter-spacing:-0.132000px;}
.ls46{letter-spacing:-0.122400px;}
.ls21{letter-spacing:-0.120000px;}
.ls4{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.102000px;}
.ls3c{letter-spacing:-0.091800px;}
.lsf{letter-spacing:-0.066000px;}
.ls2c{letter-spacing:-0.061200px;}
.ls22{letter-spacing:-0.060000px;}
.ls23{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.025500px;}
.ls25{letter-spacing:0.033000px;}
.ls2f{letter-spacing:0.039600px;}
.lsd{letter-spacing:0.051000px;}
.ls5b{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.066000px;}
.ls4d{letter-spacing:0.090000px;}
.ls43{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.124800px;}
.ls6{letter-spacing:0.132000px;}
.lsb{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.162000px;}
.ls47{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.198000px;}
.ls1e{letter-spacing:0.204000px;}
.ls29{letter-spacing:0.228600px;}
.ls3a{letter-spacing:0.229500px;}
.ls34{letter-spacing:0.237600px;}
.ls48{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.255000px;}
.ls12{letter-spacing:0.264000px;}
.ls4b{letter-spacing:0.267600px;}
.ls2{letter-spacing:0.270000px;}
.ls2a{letter-spacing:0.277200px;}
.ls31{letter-spacing:0.280500px;}
.lsa{letter-spacing:0.298200px;}
.ls37{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.306000px;}
.ls57{letter-spacing:0.326400px;}
.ls7{letter-spacing:0.330000px;}
.ls15{letter-spacing:0.347400px;}
.ls3b{letter-spacing:0.357000px;}
.ls42{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.396000px;}
.ls1c{letter-spacing:0.420000px;}
.ls65{letter-spacing:0.426000px;}
.ls28{letter-spacing:0.429000px;}
.ls13{letter-spacing:0.462000px;}
.ls41{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.495000px;}
.ls10{letter-spacing:0.528000px;}
.ls39{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.561000px;}
.ls14{letter-spacing:0.594000px;}
.ls4a{letter-spacing:0.600000px;}
.ls3e{letter-spacing:0.660000px;}
.ls54{letter-spacing:0.693000px;}
.ls5d{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.750000px;}
.ls5c{letter-spacing:0.780000px;}
.ls5e{letter-spacing:0.792000px;}
.ls49{letter-spacing:0.825000px;}
.ls36{letter-spacing:0.858000px;}
.ls53{letter-spacing:0.924000px;}
.ls62{letter-spacing:0.960000px;}
.ls50{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.020000px;}
.ls4f{letter-spacing:1.056000px;}
.ls66{letter-spacing:1.230000px;}
.ls51{letter-spacing:1.320000px;}
.ls17{letter-spacing:1.479000px;}
.ls4e{letter-spacing:1.518000px;}
.ls52{letter-spacing:1.551000px;}
.ls16{letter-spacing:1.581000px;}
.ls3d{letter-spacing:1.617000px;}
.ls30{letter-spacing:1.650000px;}
.ls5a{letter-spacing:4.214400px;}
.ls58{letter-spacing:4.417800px;}
.ls59{letter-spacing:7.453800px;}
.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;}
}
.ws1e{word-spacing:-20.250000px;}
.wscb{word-spacing:-17.985000px;}
.ws124{word-spacing:-17.028000px;}
.ws12a{word-spacing:-16.764000px;}
.ws111{word-spacing:-16.698000px;}
.ws118{word-spacing:-16.500000px;}
.wsf7{word-spacing:-16.368000px;}
.ws1{word-spacing:-15.624000px;}
.ws104{word-spacing:-15.540000px;}
.ws14a{word-spacing:-15.306000px;}
.ws149{word-spacing:-15.240000px;}
.wsfe{word-spacing:-14.880000px;}
.ws134{word-spacing:-14.760000px;}
.ws13f{word-spacing:-14.640000px;}
.ws6{word-spacing:-14.580000px;}
.ws140{word-spacing:-14.100000px;}
.ws12f{word-spacing:-13.980000px;}
.ws0{word-spacing:-13.392000px;}
.wsd1{word-spacing:-12.648000px;}
.ws10c{word-spacing:-12.495000px;}
.ws1f{word-spacing:-12.150000px;}
.ws2{word-spacing:-11.718000px;}
.ws133{word-spacing:-11.160000px;}
.ws125{word-spacing:-10.216800px;}
.ws85{word-spacing:-10.098000px;}
.wsa2{word-spacing:-10.058400px;}
.ws5{word-spacing:-10.044000px;}
.wse1{word-spacing:-10.018800px;}
.ws93{word-spacing:-9.860400px;}
.ws3c{word-spacing:-9.820800px;}
.ws20{word-spacing:-7.588800px;}
.ws86{word-spacing:-7.527600px;}
.wsc2{word-spacing:-7.497000px;}
.wse2{word-spacing:-7.466400px;}
.ws29{word-spacing:-2.508000px;}
.ws144{word-spacing:-2.460000px;}
.ws21{word-spacing:-2.442000px;}
.ws7d{word-spacing:-2.376000px;}
.ws135{word-spacing:-2.340000px;}
.wsb3{word-spacing:-2.310000px;}
.ws56{word-spacing:-2.280000px;}
.ws68{word-spacing:-2.244000px;}
.ws59{word-spacing:-2.220000px;}
.wsab{word-spacing:-2.178000px;}
.ws28{word-spacing:-2.112000px;}
.ws5e{word-spacing:-2.046000px;}
.wse{word-spacing:-1.998000px;}
.ws5a{word-spacing:-1.980000px;}
.wsa{word-spacing:-1.944000px;}
.ws9f{word-spacing:-1.938000px;}
.ws13d{word-spacing:-1.920000px;}
.wsbb{word-spacing:-1.914000px;}
.ws19{word-spacing:-1.890000px;}
.ws61{word-spacing:-1.887000px;}
.ws7f{word-spacing:-1.848000px;}
.wsc{word-spacing:-1.836000px;}
.wsf4{word-spacing:-1.782000px;}
.ws36{word-spacing:-1.734000px;}
.ws2a{word-spacing:-1.716000px;}
.ws7e{word-spacing:-1.650000px;}
.wsc4{word-spacing:-1.620000px;}
.ws4a{word-spacing:-1.584000px;}
.ws38{word-spacing:-1.530000px;}
.ws9a{word-spacing:-1.518000px;}
.ws9{word-spacing:-1.512000px;}
.wsaa{word-spacing:-1.452000px;}
.ws10{word-spacing:-1.404000px;}
.wsd3{word-spacing:-1.386000px;}
.ws1d{word-spacing:-1.350000px;}
.ws8b{word-spacing:-1.320000px;}
.ws33{word-spacing:-1.275000px;}
.ws46{word-spacing:-1.254000px;}
.ws107{word-spacing:-1.200000px;}
.ws90{word-spacing:-1.188000px;}
.wsc0{word-spacing:-1.140000px;}
.ws83{word-spacing:-1.122000px;}
.ws122{word-spacing:-1.080000px;}
.ws27{word-spacing:-1.056000px;}
.ws4e{word-spacing:-1.020000px;}
.ws51{word-spacing:-0.990000px;}
.wsea{word-spacing:-0.969000px;}
.ws142{word-spacing:-0.960000px;}
.ws67{word-spacing:-0.924000px;}
.wsec{word-spacing:-0.918000px;}
.ws13c{word-spacing:-0.900000px;}
.ws6f{word-spacing:-0.867000px;}
.ws1b{word-spacing:-0.864000px;}
.ws6c{word-spacing:-0.858000px;}
.ws11c{word-spacing:-0.840000px;}
.ws9e{word-spacing:-0.816000px;}
.ws55{word-spacing:-0.792000px;}
.ws101{word-spacing:-0.726000px;}
.wsb8{word-spacing:-0.714000px;}
.wsb5{word-spacing:-0.663000px;}
.ws3d{word-spacing:-0.660000px;}
.wsf3{word-spacing:-0.612000px;}
.wsbc{word-spacing:-0.594000px;}
.ws114{word-spacing:-0.540000px;}
.ws42{word-spacing:-0.528000px;}
.ws92{word-spacing:-0.510000px;}
.ws79{word-spacing:-0.462000px;}
.wsd6{word-spacing:-0.459000px;}
.ws126{word-spacing:-0.420000px;}
.ws64{word-spacing:-0.396000px;}
.ws137{word-spacing:-0.360000px;}
.ws3b{word-spacing:-0.357000px;}
.ws75{word-spacing:-0.330000px;}
.ws13{word-spacing:-0.324000px;}
.ws26{word-spacing:-0.264000px;}
.ws91{word-spacing:-0.255000px;}
.ws105{word-spacing:-0.240000px;}
.ws39{word-spacing:-0.204000px;}
.wsff{word-spacing:-0.198000px;}
.ws76{word-spacing:-0.132000px;}
.ws73{word-spacing:-0.066000px;}
.wsfa{word-spacing:-0.060000px;}
.ws4b{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.ws132{word-spacing:0.060000px;}
.wsa3{word-spacing:0.066000px;}
.ws110{word-spacing:0.102000px;}
.ws16{word-spacing:0.108000px;}
.wsfc{word-spacing:0.120000px;}
.wsc7{word-spacing:0.132000px;}
.ws30{word-spacing:0.153000px;}
.ws12c{word-spacing:0.180000px;}
.ws3f{word-spacing:0.198000px;}
.wsb4{word-spacing:0.204000px;}
.ws141{word-spacing:0.240000px;}
.wsa8{word-spacing:0.264000px;}
.wsdc{word-spacing:0.300000px;}
.ws6e{word-spacing:0.306000px;}
.wsb{word-spacing:0.324000px;}
.wse4{word-spacing:0.330000px;}
.ws96{word-spacing:0.396000px;}
.ws7a{word-spacing:0.462000px;}
.ws5b{word-spacing:0.480000px;}
.wsc6{word-spacing:0.528000px;}
.wsbe{word-spacing:0.540000px;}
.ws53{word-spacing:0.594000px;}
.ws58{word-spacing:0.600000px;}
.ws60{word-spacing:0.612000px;}
.ws14{word-spacing:0.648000px;}
.ws74{word-spacing:0.660000px;}
.wsd0{word-spacing:0.663000px;}
.ws37{word-spacing:0.714000px;}
.wsbf{word-spacing:0.720000px;}
.ws82{word-spacing:0.726000px;}
.ws12{word-spacing:0.756000px;}
.wsae{word-spacing:0.765000px;}
.ws115{word-spacing:0.780000px;}
.ws119{word-spacing:0.792000px;}
.ws7{word-spacing:0.810000px;}
.ws15{word-spacing:0.864000px;}
.ws103{word-spacing:0.900000px;}
.ws11{word-spacing:0.918000px;}
.wse6{word-spacing:0.924000px;}
.wsda{word-spacing:0.960000px;}
.ws8{word-spacing:0.972000px;}
.wsb2{word-spacing:0.990000px;}
.wsed{word-spacing:1.020000px;}
.wsc8{word-spacing:1.056000px;}
.ws5d{word-spacing:1.080000px;}
.wsd7{word-spacing:1.122000px;}
.wsd{word-spacing:1.134000px;}
.ws5c{word-spacing:1.140000px;}
.ws1c{word-spacing:1.188000px;}
.wsdb{word-spacing:1.200000px;}
.ws84{word-spacing:1.254000px;}
.wsc5{word-spacing:1.260000px;}
.wsd5{word-spacing:1.275000px;}
.ws18{word-spacing:1.296000px;}
.ws9c{word-spacing:1.320000px;}
.ws7b{word-spacing:1.386000px;}
.ws1a{word-spacing:1.404000px;}
.ws70{word-spacing:1.428000px;}
.ws22{word-spacing:1.452000px;}
.ws13a{word-spacing:1.500000px;}
.ws88{word-spacing:1.518000px;}
.wsb1{word-spacing:1.584000px;}
.wsa0{word-spacing:1.632000px;}
.wsc9{word-spacing:1.650000px;}
.ws2c{word-spacing:1.716000px;}
.ws2d{word-spacing:1.734000px;}
.wsdf{word-spacing:1.740000px;}
.ws94{word-spacing:1.782000px;}
.wse5{word-spacing:1.848000px;}
.wsf0{word-spacing:1.920000px;}
.ws45{word-spacing:1.980000px;}
.wscf{word-spacing:1.989000px;}
.ws31{word-spacing:2.040000px;}
.wse9{word-spacing:2.046000px;}
.wsfb{word-spacing:2.100000px;}
.wse3{word-spacing:2.112000px;}
.ws34{word-spacing:2.142000px;}
.ws13e{word-spacing:2.160000px;}
.ws9d{word-spacing:2.178000px;}
.wsad{word-spacing:2.192995px;}
.ws17{word-spacing:2.214000px;}
.ws112{word-spacing:2.244000px;}
.wsce{word-spacing:2.310000px;}
.ws100{word-spacing:2.376000px;}
.ws2e{word-spacing:2.397000px;}
.ws12e{word-spacing:2.400000px;}
.ws77{word-spacing:2.442000px;}
.wsa1{word-spacing:2.499000px;}
.wse0{word-spacing:2.508000px;}
.wsfd{word-spacing:2.520000px;}
.ws35{word-spacing:2.550000px;}
.ws5f{word-spacing:2.574000px;}
.ws10a{word-spacing:2.579994px;}
.ws8d{word-spacing:2.640000px;}
.ws11a{word-spacing:2.706000px;}
.wsef{word-spacing:2.760000px;}
.wse8{word-spacing:2.772000px;}
.ws78{word-spacing:2.837993px;}
.ws139{word-spacing:2.880000px;}
.wsa5{word-spacing:2.904000px;}
.ws40{word-spacing:2.970000px;}
.wsc3{word-spacing:3.000000px;}
.wsd4{word-spacing:3.009000px;}
.ws116{word-spacing:3.036000px;}
.ws97{word-spacing:3.102000px;}
.ws2f{word-spacing:3.162000px;}
.wsb9{word-spacing:3.168000px;}
.ws12d{word-spacing:3.180000px;}
.wsb6{word-spacing:3.213000px;}
.ws48{word-spacing:3.234000px;}
.ws14e{word-spacing:3.240000px;}
.wsb7{word-spacing:3.264000px;}
.ws3e{word-spacing:3.300000px;}
.wsf{word-spacing:3.348000px;}
.ws123{word-spacing:3.360000px;}
.wsf5{word-spacing:3.365993px;}
.ws71{word-spacing:3.366000px;}
.ws146{word-spacing:3.420000px;}
.ws9b{word-spacing:3.432000px;}
.wsac{word-spacing:3.468000px;}
.ws62{word-spacing:3.498000px;}
.wsdd{word-spacing:3.540000px;}
.ws89{word-spacing:3.564000px;}
.ws80{word-spacing:3.630000px;}
.ws32{word-spacing:3.672000px;}
.wse7{word-spacing:3.696000px;}
.wsc1{word-spacing:3.720000px;}
.ws8f{word-spacing:3.762000px;}
.ws66{word-spacing:3.828000px;}
.ws11d{word-spacing:3.840000px;}
.wsa4{word-spacing:3.894000px;}
.ws43{word-spacing:3.960000px;}
.ws113{word-spacing:4.020000px;}
.ws49{word-spacing:4.026000px;}
.ws3a{word-spacing:4.080000px;}
.ws23{word-spacing:4.092000px;}
.wseb{word-spacing:4.131000px;}
.ws7c{word-spacing:4.158000px;}
.wsde{word-spacing:4.200000px;}
.ws44{word-spacing:4.224000px;}
.ws4f{word-spacing:4.290000px;}
.wsee{word-spacing:4.320000px;}
.wsca{word-spacing:4.335000px;}
.ws6d{word-spacing:4.356000px;}
.ws24{word-spacing:4.422000px;}
.ws138{word-spacing:4.440000px;}
.ws14b{word-spacing:4.500000px;}
.ws99{word-spacing:4.554000px;}
.ws108{word-spacing:4.560000px;}
.ws6a{word-spacing:4.620000px;}
.ws25{word-spacing:4.685993px;}
.ws8c{word-spacing:4.752000px;}
.ws72{word-spacing:4.818000px;}
.ws13b{word-spacing:4.860000px;}
.ws95{word-spacing:4.884000px;}
.wsd9{word-spacing:4.980000px;}
.wsb0{word-spacing:5.016000px;}
.wsf2{word-spacing:5.082000px;}
.ws11f{word-spacing:5.100000px;}
.ws54{word-spacing:5.148000px;}
.wsaf{word-spacing:5.214000px;}
.ws65{word-spacing:5.280000px;}
.ws14c{word-spacing:5.340000px;}
.ws8a{word-spacing:5.346000px;}
.ws121{word-spacing:5.478000px;}
.ws136{word-spacing:5.520000px;}
.ws87{word-spacing:5.544000px;}
.ws57{word-spacing:5.580000px;}
.ws50{word-spacing:5.610000px;}
.ws11b{word-spacing:5.675993px;}
.ws41{word-spacing:5.741993px;}
.ws4d{word-spacing:5.814000px;}
.ws11e{word-spacing:5.820000px;}
.wsa6{word-spacing:5.874000px;}
.ws69{word-spacing:5.940000px;}
.wsa7{word-spacing:6.006000px;}
.ws81{word-spacing:6.072000px;}
.wsd8{word-spacing:6.120000px;}
.ws63{word-spacing:6.138000px;}
.ws2b{word-spacing:6.204000px;}
.wsf1{word-spacing:6.336000px;}
.ws12b{word-spacing:6.468000px;}
.ws6b{word-spacing:6.534000px;}
.ws10e{word-spacing:6.600000px;}
.ws109{word-spacing:6.660000px;}
.wsd2{word-spacing:6.864000px;}
.ws117{word-spacing:6.930000px;}
.ws98{word-spacing:6.996000px;}
.wsf6{word-spacing:7.062000px;}
.ws10d{word-spacing:7.128000px;}
.ws4c{word-spacing:7.242000px;}
.ws47{word-spacing:7.260000px;}
.ws129{word-spacing:7.326000px;}
.ws102{word-spacing:7.380000px;}
.ws8e{word-spacing:7.590000px;}
.ws148{word-spacing:7.680000px;}
.ws106{word-spacing:8.040000px;}
.wscd{word-spacing:8.118000px;}
.ws128{word-spacing:8.184000px;}
.wsa9{word-spacing:8.382000px;}
.ws52{word-spacing:8.514000px;}
.wsf9{word-spacing:8.580000px;}
.ws10f{word-spacing:8.646000px;}
.ws127{word-spacing:9.540000px;}
.ws120{word-spacing:10.032000px;}
.wsf8{word-spacing:10.296000px;}
.wsbd{word-spacing:10.692000px;}
.ws147{word-spacing:11.700000px;}
.ws150{word-spacing:12.600000px;}
.ws4{word-spacing:13.608000px;}
.ws14d{word-spacing:15.300000px;}
.wsba{word-spacing:18.900000px;}
.ws10b{word-spacing:19.074000px;}
.wscc{word-spacing:20.196000px;}
.ws130{word-spacing:45.060000px;}
.ws145{word-spacing:45.120000px;}
.ws143{word-spacing:45.360000px;}
.ws131{word-spacing:45.420000px;}
.ws14f{word-spacing:46.140000px;}
._a{margin-left:-37.501200px;}
._8{margin-left:-13.992000px;}
._2{margin-left:-3.570000px;}
._1{margin-left:-1.620000px;}
._4{width:1.909800px;}
._c{width:3.379200px;}
._6{width:4.590000px;}
._b{width:5.715600px;}
._7{width:9.690000px;}
._3{width:11.118000px;}
._9{width:12.240000px;}
._5{width:14.126400px;}
._0{width:1936.940400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:30.600000px;}
.fs8{font-size:36.000000px;}
.fsd{font-size:39.600000px;}
.fs1{font-size:40.500000px;}
.fsb{font-size:45.000000px;}
.fs5{font-size:47.250000px;}
.fs9{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fsf{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fsc{font-size:66.000000px;}
.fsa{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:12.756000px;}
.y2{bottom:31.500000px;}
.y3{bottom:62.777250px;}
.y4{bottom:94.277250px;}
.y1{bottom:110.477250px;}
.y3a{bottom:171.814950px;}
.y9e{bottom:171.815100px;}
.y80{bottom:171.815250px;}
.y5f{bottom:176.022750px;}
.y9d{bottom:188.315100px;}
.y7f{bottom:188.315250px;}
.y39{bottom:189.064950px;}
.y2b2{bottom:190.564950px;}
.yee{bottom:192.064950px;}
.y1f7{bottom:192.162450px;}
.y212{bottom:192.250650px;}
.yfd{bottom:192.522600px;}
.y5e{bottom:192.815250px;}
.y226{bottom:201.239100px;}
.y9c{bottom:204.815100px;}
.y13d{bottom:204.815250px;}
.y38{bottom:206.314950px;}
.y7e{bottom:209.022600px;}
.y2b1{bottom:209.314950px;}
.y5d{bottom:209.315250px;}
.yfc{bottom:209.315400px;}
.y1b7{bottom:212.314950px;}
.y1f6{bottom:212.509800px;}
.y211{bottom:212.686350px;}
.y2fa{bottom:218.916600px;}
.ybc{bottom:221.315100px;}
.y1c2{bottom:221.315250px;}
.y240{bottom:221.606850px;}
.y9b{bottom:225.522600px;}
.y5c{bottom:225.815250px;}
.y7d{bottom:225.815400px;}
.yed{bottom:225.971250px;}
.y2b0{bottom:228.064950px;}
.y225{bottom:230.663250px;}
.y1b6{bottom:232.564950px;}
.y1f5{bottom:232.857300px;}
.y210{bottom:233.122050px;}
.y157{bottom:234.579000px;}
.y2f9{bottom:237.666600px;}
.ybb{bottom:237.815100px;}
.y1c1{bottom:237.815250px;}
.y315{bottom:238.951500px;}
.y32e{bottom:239.323800px;}
.y23f{bottom:240.356850px;}
.y5b{bottom:242.315250px;}
.y7c{bottom:242.315400px;}
.yec{bottom:246.221250px;}
.y2af{bottom:246.814950px;}
.y293{bottom:247.508700px;}
.y224{bottom:249.413250px;}
.yd7{bottom:251.079000px;}
.y37{bottom:252.525900px;}
.y1b5{bottom:252.814950px;}
.y1f4{bottom:253.204650px;}
.y156{bottom:253.329000px;}
.y20f{bottom:253.557750px;}
.yba{bottom:254.315100px;}
.y1c0{bottom:254.315250px;}
.y2cd{bottom:254.829000px;}
.y314{bottom:257.701500px;}
.y32d{bottom:258.073800px;}
.y173{bottom:258.522600px;}
.y5a{bottom:258.815250px;}
.y129{bottom:258.815400px;}
.y23e{bottom:259.106850px;}
.y7b{bottom:263.022900px;}
.y2f8{bottom:266.018100px;}
.yeb{bottom:266.471250px;}
.y9a{bottom:267.579000px;}
.y292{bottom:267.758700px;}
.y223{bottom:268.163250px;}
.y36{bottom:269.775900px;}
.yb9{bottom:270.815100px;}
.y1bf{bottom:270.815250px;}
.yd6{bottom:271.329000px;}
.y155{bottom:272.079000px;}
.y1b4{bottom:273.064950px;}
.y1f3{bottom:273.552150px;}
.y117{bottom:275.022600px;}
.y59{bottom:275.315250px;}
.y128{bottom:275.315400px;}
.y313{bottom:276.451500px;}
.y2ae{bottom:277.682250px;}
.y23d{bottom:284.526600px;}
.y2f7{bottom:284.768100px;}
.y2cc{bottom:286.692600px;}
.yea{bottom:286.721250px;}
.yb8{bottom:287.315100px;}
.y99{bottom:287.829000px;}
.y291{bottom:288.008700px;}
.y32c{bottom:288.082650px;}
.y154{bottom:290.829000px;}
.y20e{bottom:291.497400px;}
.y19d{bottom:291.522600px;}
.yd5{bottom:291.579000px;}
.y58{bottom:291.815250px;}
.y127{bottom:291.815400px;}
.y1b3{bottom:293.314950px;}
.y1f2{bottom:293.899500px;}
.y13c{bottom:296.022900px;}
.y222{bottom:297.587250px;}
.y2ad{bottom:297.932250px;}
.y35{bottom:298.735200px;}
.y172{bottom:300.579000px;}
.y23c{bottom:303.276600px;}
.y7a{bottom:305.079150px;}
.y312{bottom:306.088050px;}
.y2cb{bottom:306.942600px;}
.ye9{bottom:306.971250px;}
.yb7{bottom:308.022600px;}
.y98{bottom:308.079000px;}
.y126{bottom:308.315400px;}
.y153{bottom:309.579000px;}
.y20d{bottom:310.433100px;}
.yd4{bottom:311.829000px;}
.y57{bottom:312.522750px;}
.y2f6{bottom:313.119750px;}
.y1b2{bottom:313.564950px;}
.y1f1{bottom:314.247000px;}
.y34{bottom:315.985200px;}
.y116{bottom:317.079000px;}
.y32b{bottom:318.091500px;}
.y2ac{bottom:318.182250px;}
.y171{bottom:320.829000px;}
.y23b{bottom:322.026600px;}
.y290{bottom:323.202450px;}
.y125{bottom:324.815400px;}
.y311{bottom:324.838050px;}
.y79{bottom:325.329150px;}
.y221{bottom:327.011400px;}
.y2e1{bottom:327.182250px;}
.y2ca{bottom:327.192600px;}
.ye8{bottom:327.221250px;}
.y97{bottom:328.329000px;}
.y187{bottom:329.022900px;}
.y56{bottom:329.315400px;}
.y20c{bottom:329.368650px;}
.y2f5{bottom:331.869750px;}
.y33{bottom:333.235200px;}
.y19c{bottom:333.579000px;}
.y255{bottom:333.814950px;}
.y1f0{bottom:334.594350px;}
.y32a{bottom:336.841500px;}
.y1d7{bottom:337.416600px;}
.y115{bottom:337.426800px;}
.y152{bottom:337.619850px;}
.y13b{bottom:338.079150px;}
.y2ab{bottom:338.432250px;}
.y23a{bottom:340.776600px;}
.y170{bottom:341.079000px;}
.y28f{bottom:341.952450px;}
.yd3{bottom:342.755100px;}
.y310{bottom:343.588050px;}
.y1b1{bottom:343.869750px;}
.y124{bottom:345.522900px;}
.yfb{bottom:345.579150px;}
.y220{bottom:345.761400px;}
.y55{bottom:345.815400px;}
.y2e0{bottom:345.932250px;}
.y2c9{bottom:347.442600px;}
.ye7{bottom:347.471250px;}
.y20b{bottom:348.304350px;}
.yb6{bottom:350.079000px;}
.y32{bottom:350.485200px;}
.y2f4{bottom:350.619750px;}
.y19b{bottom:353.829000px;}
.y254{bottom:354.064950px;}
.y1ef{bottom:354.941700px;}
.y1d6{bottom:357.666600px;}
.y114{bottom:357.774750px;}
.y151{bottom:357.869850px;}
.y13a{bottom:358.329150px;}
.y239{bottom:359.526600px;}
.y78{bottom:360.181350px;}
.y30e{bottom:360.474450px;}
.y28e{bottom:360.702450px;}
.y16f{bottom:361.329000px;}
.y54{bottom:362.315400px;}
.y1b0{bottom:362.619750px;}
.y96{bottom:362.813850px;}
.yd2{bottom:363.005100px;}
.y2df{bottom:364.682250px;}
.yfa{bottom:365.829150px;}
.y27b{bottom:366.143100px;}
.y329{bottom:366.850350px;}
.y20a{bottom:367.240050px;}
.y2c8{bottom:367.692600px;}
.ye6{bottom:367.721250px;}
.y31{bottom:367.735200px;}
.yb5{bottom:370.629000px;}
.y2aa{bottom:370.799400px;}
.y186{bottom:371.079150px;}
.y30f{bottom:373.224450px;}
.y19a{bottom:374.079000px;}
.y253{bottom:374.314950px;}
.y21f{bottom:375.185550px;}
.y1ee{bottom:375.289200px;}
.y1d5{bottom:377.916600px;}
.y150{bottom:378.119850px;}
.y113{bottom:378.122550px;}
.y139{bottom:378.579150px;}
.y53{bottom:378.815400px;}
.y2f3{bottom:378.971250px;}
.y28d{bottom:379.452450px;}
.y77{bottom:380.431350px;}
.y1af{bottom:381.369750px;}
.y95{bottom:381.563850px;}
.y16e{bottom:381.579000px;}
.yd1{bottom:383.255100px;}
.y2de{bottom:383.432250px;}
.y238{bottom:384.946500px;}
.y30{bottom:384.985200px;}
.y328{bottom:385.600350px;}
.yf9{bottom:386.079150px;}
.y209{bottom:386.175750px;}
.y27a{bottom:386.393100px;}
.y123{bottom:387.579150px;}
.y268{bottom:390.649050px;}
.y2a9{bottom:391.049400px;}
.yb4{bottom:391.179000px;}
.y185{bottom:391.329150px;}
.y30d{bottom:391.974450px;}
.y52{bottom:395.315400px;}
.y1ed{bottom:395.636700px;}
.y2f2{bottom:397.721250px;}
.y1d4{bottom:398.166600px;}
.y28c{bottom:398.202450px;}
.y112{bottom:398.470500px;}
.y138{bottom:398.829150px;}
.y2c7{bottom:399.556350px;}
.y1ae{bottom:400.119750px;}
.y94{bottom:400.313850px;}
.y76{bottom:400.681350px;}
.ye5{bottom:401.627400px;}
.y16d{bottom:401.829000px;}
.y2dd{bottom:402.182250px;}
.y2f{bottom:402.235200px;}
.yd0{bottom:403.505100px;}
.y237{bottom:403.696500px;}
.y327{bottom:404.350350px;}
.y21e{bottom:404.609550px;}
.y252{bottom:406.307250px;}
.yf8{bottom:406.329150px;}
.y279{bottom:406.643100px;}
.y14f{bottom:407.660850px;}
.y122{bottom:407.829150px;}
.y267{bottom:410.899050px;}
.y2a8{bottom:411.299400px;}
.y184{bottom:411.579150px;}
.yb3{bottom:411.729000px;}
.y51{bottom:411.815400px;}
.y199{bottom:414.192600px;}
.y1ec{bottom:415.984050px;}
.y28b{bottom:416.952450px;}
.y1d3{bottom:418.416600px;}
.y111{bottom:418.818300px;}
.y1ad{bottom:418.869750px;}
.y93{bottom:419.063850px;}
.y137{bottom:419.079150px;}
.y2e{bottom:419.485200px;}
.y2c6{bottom:419.806350px;}
.y75{bottom:420.931350px;}
.y2dc{bottom:420.932250px;}
.y30c{bottom:421.610850px;}
.ye4{bottom:421.877400px;}
.y16c{bottom:422.079000px;}
.y236{bottom:422.446500px;}
.y208{bottom:422.615400px;}
.ycf{bottom:423.755100px;}
.y21d{bottom:424.859550px;}
.y2f1{bottom:426.072900px;}
.y251{bottom:426.557250px;}
.yf7{bottom:426.579150px;}
.y278{bottom:426.893100px;}
.y14e{bottom:427.910850px;}
.y1be{bottom:428.079150px;}
.y50{bottom:428.315400px;}
.y266{bottom:431.149050px;}
.y2a7{bottom:431.549400px;}
.y183{bottom:431.829150px;}
.yb2{bottom:432.279150px;}
.y326{bottom:434.359200px;}
.y28a{bottom:435.702450px;}
.y1eb{bottom:436.331400px;}
.y2d{bottom:436.735200px;}
.y1ac{bottom:437.619750px;}
.y92{bottom:437.813850px;}
.y1d2{bottom:438.666600px;}
.y110{bottom:439.166250px;}
.y136{bottom:439.329150px;}
.y2db{bottom:439.682250px;}
.y2c5{bottom:440.056350px;}
.y30b{bottom:440.360850px;}
.y74{bottom:441.181350px;}
.y121{bottom:441.931350px;}
.ye3{bottom:442.127400px;}
.y207{bottom:443.051100px;}
.yce{bottom:444.005100px;}
.y4f{bottom:444.815400px;}
.y2f0{bottom:444.822900px;}
.y21c{bottom:445.109550px;}
.y250{bottom:446.807250px;}
.y14d{bottom:448.160850px;}
.y235{bottom:450.488400px;}
.y265{bottom:451.399050px;}
.y2a6{bottom:451.799400px;}
.y182{bottom:452.079150px;}
.yb1{bottom:452.829150px;}
.y325{bottom:453.109200px;}
.y289{bottom:454.452450px;}
.y16b{bottom:455.945850px;}
.y1ab{bottom:456.369750px;}
.y91{bottom:456.563850px;}
.y1ea{bottom:456.678900px;}
.yf6{bottom:457.314000px;}
.y2da{bottom:458.432250px;}
.y277{bottom:459.221250px;}
.y10f{bottom:459.514050px;}
.y135{bottom:459.579150px;}
.y2c4{bottom:460.306350px;}
.y73{bottom:461.431350px;}
.y120{bottom:462.181350px;}
.ye2{bottom:462.377400px;}
.y206{bottom:463.486650px;}
.ycd{bottom:464.255100px;}
.y21b{bottom:465.359550px;}
.y4e{bottom:465.522900px;}
.y24f{bottom:467.057250px;}
.y1d1{bottom:468.004350px;}
.y14c{bottom:468.410850px;}
.y30a{bottom:469.997400px;}
.y14{bottom:470.261700px;}
.y234{bottom:470.738400px;}
.y264{bottom:471.649050px;}
.y2a5{bottom:472.049400px;}
.y2ef{bottom:473.174400px;}
.y288{bottom:473.202450px;}
.yb0{bottom:473.379150px;}
.y198{bottom:474.556350px;}
.y1aa{bottom:475.119750px;}
.y90{bottom:475.313850px;}
.y16a{bottom:476.195850px;}
.y1e9{bottom:477.026250px;}
.y2d9{bottom:477.182250px;}
.yf5{bottom:477.564000px;}
.y276{bottom:477.971250px;}
.y134{bottom:479.829150px;}
.y2c3{bottom:480.556350px;}
.y72{bottom:481.681350px;}
.y11f{bottom:482.431350px;}
.ye1{bottom:482.627400px;}
.y2c{bottom:482.946150px;}
.y324{bottom:483.117900px;}
.y205{bottom:483.922350px;}
.ycc{bottom:484.505100px;}
.y21a{bottom:485.609550px;}
.y181{bottom:487.063950px;}
.y24e{bottom:487.307250px;}
.y1d0{bottom:488.254350px;}
.y13{bottom:488.261700px;}
.y14b{bottom:488.660850px;}
.y309{bottom:488.747400px;}
.y233{bottom:490.988400px;}
.y263{bottom:491.899050px;}
.y2ee{bottom:491.924400px;}
.y2a4{bottom:492.299400px;}
.y1a9{bottom:493.869750px;}
.yaf{bottom:493.929150px;}
.y8f{bottom:494.063850px;}
.y197{bottom:494.806350px;}
.y169{bottom:496.445850px;}
.y275{bottom:496.721250px;}
.y10e{bottom:497.365950px;}
.y1e8{bottom:497.373750px;}
.yf4{bottom:497.814000px;}
.y133{bottom:500.079000px;}
.y2b{bottom:500.196150px;}
.y10{bottom:500.261700px;}
.y2c2{bottom:500.806350px;}
.y323{bottom:501.867900px;}
.y71{bottom:501.931350px;}
.y11e{bottom:502.681350px;}
.ye0{bottom:502.877400px;}
.y204{bottom:504.358050px;}
.ycb{bottom:504.755100px;}
.y219{bottom:505.859550px;}
.y287{bottom:506.896200px;}
.y180{bottom:507.313950px;}
.y308{bottom:507.497400px;}
.y24d{bottom:507.557250px;}
.y4d{bottom:507.579300px;}
.y1cf{bottom:508.504350px;}
.y14a{bottom:508.910850px;}
.y2d8{bottom:509.549400px;}
.y232{bottom:511.238400px;}
.y262{bottom:512.149050px;}
.y2a3{bottom:512.549400px;}
.y1a8{bottom:512.619750px;}
.y8e{bottom:512.813850px;}
.yae{bottom:514.479150px;}
.y196{bottom:515.056350px;}
.y12{bottom:515.261700px;}
.y274{bottom:515.471250px;}
.y168{bottom:516.695850px;}
.y10d{bottom:517.713750px;}
.y1e7{bottom:517.721100px;}
.yf3{bottom:518.064000px;}
.y2ed{bottom:520.275900px;}
.y132{bottom:520.329000px;}
.y2c1{bottom:521.056350px;}
.y70{bottom:522.181350px;}
.y11d{bottom:522.931350px;}
.ydf{bottom:523.127400px;}
.y203{bottom:524.793750px;}
.y218{bottom:526.109550px;}
.y286{bottom:527.146200px;}
.y17f{bottom:527.563950px;}
.y24c{bottom:527.807250px;}
.y4c{bottom:527.890650px;}
.y1ce{bottom:528.754350px;}
.y2a{bottom:529.155450px;}
.y149{bottom:529.160850px;}
.y2d7{bottom:529.799400px;}
.y1a7{bottom:531.369750px;}
.y231{bottom:531.488400px;}
.y8d{bottom:531.563850px;}
.y11{bottom:531.761700px;}
.y322{bottom:531.876750px;}
.y261{bottom:532.399050px;}
.y2a2{bottom:532.799400px;}
.y273{bottom:534.221250px;}
.yad{bottom:535.029300px;}
.y195{bottom:535.306350px;}
.yca{bottom:535.681350px;}
.y167{bottom:536.945850px;}
.y307{bottom:537.133800px;}
.y10c{bottom:538.061700px;}
.y1e6{bottom:538.068450px;}
.yf2{bottom:538.314000px;}
.y2ec{bottom:539.025900px;}
.y131{bottom:540.579000px;}
.y2c0{bottom:541.306350px;}
.y6f{bottom:542.431350px;}
.y11c{bottom:543.181350px;}
.yde{bottom:543.377400px;}
.y217{bottom:546.359550px;}
.y29{bottom:546.405450px;}
.y17e{bottom:547.813950px;}
.y24b{bottom:548.057250px;}
.y4b{bottom:548.202000px;}
.y1cd{bottom:549.004350px;}
.y148{bottom:549.410850px;}
.y1a6{bottom:550.119750px;}
.y8c{bottom:550.313850px;}
.y321{bottom:550.626750px;}
.y230{bottom:551.738400px;}
.y260{bottom:552.649050px;}
.y272{bottom:552.971250px;}
.y2a1{bottom:553.049400px;}
.yd{bottom:554.261700px;}
.y194{bottom:555.556350px;}
.y306{bottom:555.883800px;}
.yc9{bottom:555.931350px;}
.y166{bottom:557.195850px;}
.y10b{bottom:558.409500px;}
.y1e5{bottom:558.415950px;}
.yf1{bottom:558.564000px;}
.y130{bottom:560.829000px;}
.y2bf{bottom:561.556350px;}
.y285{bottom:562.339950px;}
.y6e{bottom:562.681350px;}
.y202{bottom:562.733400px;}
.y11b{bottom:563.431350px;}
.y28{bottom:563.655450px;}
.y2d6{bottom:563.666550px;}
.y216{bottom:566.609550px;}
.y2eb{bottom:567.377400px;}
.y17d{bottom:568.063950px;}
.y4a{bottom:568.513350px;}
.y1a5{bottom:568.869750px;}
.y1cc{bottom:569.254350px;}
.yf{bottom:569.261700px;}
.y147{bottom:569.660850px;}
.y22f{bottom:571.988400px;}
.yac{bottom:573.083250px;}
.y339{bottom:573.179700px;}
.y2a0{bottom:573.299400px;}
.y305{bottom:574.633800px;}
.y193{bottom:575.806350px;}
.yc8{bottom:576.181350px;}
.ydd{bottom:577.283700px;}
.y165{bottom:577.445850px;}
.y10a{bottom:578.757450px;}
.y1e4{bottom:578.763300px;}
.yf0{bottom:578.814000px;}
.y24a{bottom:580.049400px;}
.y320{bottom:580.635600px;}
.y27{bottom:580.905450px;}
.y12f{bottom:581.079000px;}
.y2be{bottom:581.806350px;}
.y25f{bottom:581.969250px;}
.y284{bottom:582.589950px;}
.y6d{bottom:582.931350px;}
.y201{bottom:583.169100px;}
.y8b{bottom:583.298700px;}
.y11a{bottom:583.681350px;}
.y271{bottom:583.799400px;}
.y2d5{bottom:583.916550px;}
.ye{bottom:585.761700px;}
.y2ea{bottom:586.127400px;}
.y215{bottom:586.859550px;}
.y49{bottom:588.824550px;}
.y338{bottom:591.929700px;}
.y22e{bottom:592.238400px;}
.y29f{bottom:593.549400px;}
.yab{bottom:593.633250px;}
.y192{bottom:596.056350px;}
.yc7{bottom:596.431350px;}
.ydc{bottom:597.533700px;}
.y1a4{bottom:597.674400px;}
.y26{bottom:598.155450px;}
.y1cb{bottom:598.591950px;}
.y109{bottom:599.105250px;}
.y1e3{bottom:599.110800px;}
.y31f{bottom:599.385600px;}
.y249{bottom:600.299400px;}
.y12e{bottom:601.329000px;}
.y2bd{bottom:602.056350px;}
.y25e{bottom:602.219250px;}
.y283{bottom:602.839950px;}
.y17c{bottom:603.048900px;}
.y6c{bottom:603.181350px;}
.y8a{bottom:603.548700px;}
.y200{bottom:603.604650px;}
.y119{bottom:603.931350px;}
.y270{bottom:604.049400px;}
.y2d4{bottom:604.166550px;}
.y304{bottom:604.270350px;}
.y214{bottom:607.109550px;}
.y146{bottom:608.201850px;}
.y48{bottom:609.135900px;}
.y164{bottom:611.312850px;}
.y22d{bottom:612.488400px;}
.yaa{bottom:614.183250px;}
.y2e9{bottom:614.479050px;}
.y25{bottom:615.405450px;}
.yc6{bottom:616.681350px;}
.ydb{bottom:617.783700px;}
.y1a3{bottom:617.924400px;}
.yef{bottom:618.548850px;}
.y1ca{bottom:618.841950px;}
.y108{bottom:619.453050px;}
.y1e2{bottom:619.458150px;}
.y337{bottom:619.679700px;}
.y248{bottom:620.549400px;}
.y12d{bottom:621.579000px;}
.y2bc{bottom:622.306350px;}
.y25d{bottom:622.469250px;}
.y303{bottom:623.020350px;}
.y282{bottom:623.089950px;}
.yc{bottom:623.261700px;}
.y17b{bottom:623.298900px;}
.y6b{bottom:623.431350px;}
.y89{bottom:623.798700px;}
.y1ff{bottom:624.040350px;}
.y118{bottom:624.181350px;}
.y26f{bottom:624.299400px;}
.y2d3{bottom:624.416550px;}
.y29e{bottom:625.916550px;}
.y191{bottom:627.169950px;}
.y213{bottom:627.359550px;}
.y31e{bottom:629.394450px;}
.y47{bottom:629.447250px;}
.y145{bottom:630.701850px;}
.y163{bottom:631.562850px;}
.y24{bottom:632.655450px;}
.y2e8{bottom:633.229050px;}
.ya9{bottom:634.733250px;}
.yc5{bottom:636.931350px;}
.yda{bottom:638.033700px;}
.y1a2{bottom:638.174400px;}
.y336{bottom:638.429700px;}
.y1c9{bottom:639.091950px;}
.y247{bottom:640.799400px;}
.y302{bottom:641.770350px;}
.y12c{bottom:641.829000px;}
.y22c{bottom:642.030150px;}
.y2bb{bottom:642.556350px;}
.y25c{bottom:642.719250px;}
.y281{bottom:643.339950px;}
.y17a{bottom:643.548900px;}
.y6a{bottom:643.681350px;}
.y88{bottom:644.048700px;}
.y1bd{bottom:644.431350px;}
.y1fe{bottom:644.476050px;}
.y2d2{bottom:644.666550px;}
.y29d{bottom:646.166550px;}
.yb{bottom:647.261700px;}
.y190{bottom:647.419950px;}
.y31d{bottom:648.144450px;}
.y46{bottom:649.758600px;}
.y23{bottom:649.905450px;}
.y162{bottom:651.812850px;}
.ya8{bottom:655.283400px;}
.y26e{bottom:656.627400px;}
.y107{bottom:657.304950px;}
.y1e1{bottom:657.309600px;}
.yd9{bottom:658.283700px;}
.y1a1{bottom:658.424400px;}
.y1c8{bottom:659.341950px;}
.y301{bottom:660.520350px;}
.y246{bottom:661.049400px;}
.y12b{bottom:662.079000px;}
.y2ba{bottom:662.806350px;}
.y25b{bottom:662.969250px;}
.y280{bottom:663.589950px;}
.y179{bottom:663.798900px;}
.y69{bottom:663.931350px;}
.y87{bottom:664.298700px;}
.y1bc{bottom:664.681350px;}
.y2d1{bottom:664.916550px;}
.y335{bottom:666.179700px;}
.y29c{bottom:666.416550px;}
.y18f{bottom:667.669950px;}
.yc4{bottom:667.857450px;}
.y45{bottom:670.069950px;}
.y22b{bottom:670.072050px;}
.y2e7{bottom:670.580550px;}
.y161{bottom:672.062850px;}
.ya7{bottom:675.833400px;}
.y26d{bottom:676.877400px;}
.y106{bottom:677.652900px;}
.y1e0{bottom:677.656950px;}
.y31c{bottom:678.153300px;}
.yd8{bottom:678.533700px;}
.y1c7{bottom:679.591950px;}
.y245{bottom:681.299400px;}
.y12a{bottom:682.329150px;}
.y2b9{bottom:683.056350px;}
.y25a{bottom:683.219250px;}
.y27f{bottom:683.839950px;}
.y178{bottom:684.048900px;}
.y86{bottom:684.548700px;}
.y1bb{bottom:684.931350px;}
.y2d0{bottom:685.166550px;}
.y29b{bottom:686.666550px;}
.y18e{bottom:687.919950px;}
.yc3{bottom:688.107450px;}
.y1a0{bottom:688.729050px;}
.y22a{bottom:688.822050px;}
.ya{bottom:689.261700px;}
.y144{bottom:689.492700px;}
.y300{bottom:690.156750px;}
.y44{bottom:690.381300px;}
.y1fd{bottom:691.415700px;}
.y160{bottom:692.312850px;}
.y334{bottom:693.929700px;}
.y22{bottom:696.116250px;}
.ya6{bottom:696.383400px;}
.y31b{bottom:696.903300px;}
.y26c{bottom:697.127400px;}
.y105{bottom:698.000700px;}
.y1df{bottom:698.004300px;}
.y68{bottom:698.783700px;}
.y1c6{bottom:699.841950px;}
.y2b8{bottom:703.306350px;}
.y27e{bottom:704.089950px;}
.y177{bottom:704.298900px;}
.y85{bottom:704.798700px;}
.y1ba{bottom:705.181350px;}
.y2cf{bottom:705.416550px;}
.y29a{bottom:706.916550px;}
.y229{bottom:707.572050px;}
.y18d{bottom:708.169950px;}
.yc2{bottom:708.357450px;}
.y2ff{bottom:708.906750px;}
.y19f{bottom:708.979050px;}
.y143{bottom:709.742700px;}
.y43{bottom:710.692650px;}
.y259{bottom:712.539450px;}
.y15f{bottom:712.562850px;}
.y333{bottom:712.679700px;}
.y9{bottom:713.261700px;}
.y244{bottom:713.291550px;}
.y21{bottom:713.366250px;}
.y31a{bottom:715.653300px;}
.ya5{bottom:716.933400px;}
.y26b{bottom:717.377400px;}
.y104{bottom:718.348500px;}
.y1de{bottom:718.351800px;}
.y67{bottom:719.033700px;}
.y1c5{bottom:720.091950px;}
.y27d{bottom:724.339950px;}
.y176{bottom:724.548900px;}
.y84{bottom:725.048700px;}
.y1b9{bottom:725.431350px;}
.y2ce{bottom:725.666550px;}
.y299{bottom:727.166550px;}
.y2fe{bottom:727.656750px;}
.y18c{bottom:728.419950px;}
.yc1{bottom:728.607450px;}
.y19e{bottom:729.229050px;}
.y2e6{bottom:729.682200px;}
.y142{bottom:729.992700px;}
.y42{bottom:731.004000px;}
.y332{bottom:731.429700px;}
.y243{bottom:732.041550px;}
.y15e{bottom:732.812850px;}
.y228{bottom:732.991950px;}
.y2b7{bottom:735.169950px;}
.ya4{bottom:737.483550px;}
.y26a{bottom:737.627400px;}
.y103{bottom:738.696450px;}
.y1dd{bottom:738.699150px;}
.y66{bottom:739.283700px;}
.y258{bottom:740.359650px;}
.y20{bottom:742.325700px;}
.y27c{bottom:744.589950px;}
.y175{bottom:744.798900px;}
.y83{bottom:745.298700px;}
.y319{bottom:745.662000px;}
.y1b8{bottom:745.681350px;}
.y298{bottom:747.416550px;}
.y18b{bottom:748.669950px;}
.yc0{bottom:748.857450px;}
.y1c4{bottom:749.429700px;}
.y2e5{bottom:749.932200px;}
.y141{bottom:750.242700px;}
.y3c{bottom:750.575700px;}
.y242{bottom:750.791550px;}
.y41{bottom:751.315350px;}
.y227{bottom:751.741950px;}
.y15d{bottom:753.062850px;}
.y2b6{bottom:753.919950px;}
.y8{bottom:755.261700px;}
.y2fd{bottom:757.293300px;}
.ya3{bottom:758.033550px;}
.y1fc{bottom:758.605350px;}
.y102{bottom:759.044250px;}
.y1dc{bottom:759.046650px;}
.y257{bottom:759.109650px;}
.y331{bottom:759.179700px;}
.y65{bottom:759.533700px;}
.y1f{bottom:759.575700px;}
.y318{bottom:764.412000px;}
.y174{bottom:765.048900px;}
.y82{bottom:765.548700px;}
.y297{bottom:767.666550px;}
.y3b{bottom:767.825700px;}
.y1c3{bottom:768.179700px;}
.y18a{bottom:768.919950px;}
.ybf{bottom:769.107450px;}
.y241{bottom:769.541550px;}
.y2e4{bottom:770.182200px;}
.y140{bottom:770.492850px;}
.y40{bottom:771.626700px;}
.y2b5{bottom:772.669950px;}
.y2fc{bottom:776.043300px;}
.y1e{bottom:776.825700px;}
.y256{bottom:777.859650px;}
.y330{bottom:777.929700px;}
.ya2{bottom:778.583550px;}
.y269{bottom:778.955550px;}
.y1fb{bottom:779.041050px;}
.y7{bottom:779.261700px;}
.y101{bottom:779.392200px;}
.y1db{bottom:779.394000px;}
.y64{bottom:779.783700px;}
.y81{bottom:785.798700px;}
.y15c{bottom:786.929700px;}
.y296{bottom:787.916550px;}
.y189{bottom:789.169950px;}
.ybe{bottom:789.357450px;}
.y2e3{bottom:790.432200px;}
.y13f{bottom:790.742850px;}
.y2b4{bottom:791.419950px;}
.y3f{bottom:791.938050px;}
.y1d{bottom:794.075700px;}
.y317{bottom:794.421000px;}
.y2fb{bottom:794.793300px;}
.y32f{bottom:796.679700px;}
.ya1{bottom:799.133550px;}
.y1fa{bottom:799.476600px;}
.y100{bottom:799.740000px;}
.y1da{bottom:799.741350px;}
.y63{bottom:800.033700px;}
.y15b{bottom:805.679700px;}
.y295{bottom:808.166550px;}
.y188{bottom:809.419950px;}
.ybd{bottom:809.607450px;}
.y2b3{bottom:810.169950px;}
.y2e2{bottom:810.682200px;}
.y13e{bottom:810.992850px;}
.y1c{bottom:811.325700px;}
.y3e{bottom:812.249400px;}
.y316{bottom:813.171000px;}
.ya0{bottom:819.683550px;}
.y1f9{bottom:819.912300px;}
.yff{bottom:820.087950px;}
.y1d9{bottom:820.088850px;}
.y62{bottom:820.283700px;}
.y6{bottom:821.261700px;}
.y15a{bottom:824.429700px;}
.y294{bottom:828.416550px;}
.y1b{bottom:828.575700px;}
.y9f{bottom:840.233700px;}
.y1f8{bottom:840.348000px;}
.yfe{bottom:840.435750px;}
.y1d8{bottom:840.436200px;}
.y61{bottom:840.533700px;}
.y159{bottom:843.179700px;}
.y1a{bottom:845.825700px;}
.y5{bottom:852.761700px;}
.y3d{bottom:859.064700px;}
.y60{bottom:860.783700px;}
.y158{bottom:861.929700px;}
.y19{bottom:863.075700px;}
.y18{bottom:905.238000px;}
.y16{bottom:930.737850px;}
.y17{bottom:936.738000px;}
.ha{height:26.532000px;}
.h10{height:31.263000px;}
.h11{height:31.263600px;}
.h4{height:38.191500px;}
.hc{height:45.264000px;}
.h8{height:48.093000px;}
.h2{height:50.922000px;}
.hd{height:50.976000px;}
.h9{height:53.751000px;}
.h13{height:56.460000px;}
.h12{height:56.580000px;}
.h7{height:59.409000px;}
.h14{height:62.106000px;}
.hf{height:62.238000px;}
.he{height:70.800000px;}
.h6{height:79.296000px;}
.hb{height:101.844000px;}
.h5{height:101.952000px;}
.h3{height:1003.464000px;}
.h0{height:1066.464000px;}
.h1{height:1066.500000px;}
.w2{width:705.826500px;}
.w1{width:768.750000px;}
.w0{width:768.826500px;}
.x0{left:0.000000px;}
.x2{left:31.500000px;}
.x9{left:59.255850px;}
.x6{left:119.055000px;}
.xc{left:129.295350px;}
.x12{left:146.303100px;}
.x5{left:150.555000px;}
.xd{left:165.380100px;}
.x17{left:167.562900px;}
.x19{left:169.609050px;}
.x18{left:171.814950px;}
.xe{left:188.710050px;}
.x1a{left:193.074750px;}
.x1b{left:210.082650px;}
.x1f{left:212.712300px;}
.x8{left:264.984900px;}
.x14{left:274.834050px;}
.x7{left:282.096900px;}
.x13{left:290.431350px;}
.xa{left:301.269300px;}
.x1{left:302.905050px;}
.x3{left:322.530150px;}
.x10{left:344.489100px;}
.xb{left:353.352750px;}
.xf{left:360.086400px;}
.x1e{left:370.285800px;}
.x4{left:374.613750px;}
.x1c{left:392.416500px;}
.x1d{left:402.055500px;}
.x15{left:413.506050px;}
.x11{left:483.161100px;}
.x16{left:603.446550px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.360000pt;}
.v1{vertical-align:22.000000pt;}
.ls60{letter-spacing:-0.960000pt;}
.ls33{letter-spacing:-0.880000pt;}
.ls61{letter-spacing:-0.800000pt;}
.ls3f{letter-spacing:-0.762667pt;}
.ls3{letter-spacing:-0.720000pt;}
.ls64{letter-spacing:-0.693333pt;}
.ls5f{letter-spacing:-0.680000pt;}
.ls40{letter-spacing:-0.586667pt;}
.ls4c{letter-spacing:-0.533333pt;}
.ls1f{letter-spacing:-0.469333pt;}
.ls20{letter-spacing:-0.410667pt;}
.ls44{letter-spacing:-0.352000pt;}
.ls63{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.293333pt;}
.ls45{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.234667pt;}
.ls11{letter-spacing:-0.226667pt;}
.ls55{letter-spacing:-0.213333pt;}
.ls35{letter-spacing:-0.181333pt;}
.ls2b{letter-spacing:-0.176000pt;}
.ls56{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls26{letter-spacing:-0.136000pt;}
.ls18{letter-spacing:-0.117333pt;}
.ls46{letter-spacing:-0.108800pt;}
.ls21{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.090667pt;}
.ls3c{letter-spacing:-0.081600pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls2c{letter-spacing:-0.054400pt;}
.ls22{letter-spacing:-0.053333pt;}
.ls23{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.022667pt;}
.ls25{letter-spacing:0.029333pt;}
.ls2f{letter-spacing:0.035200pt;}
.lsd{letter-spacing:0.045333pt;}
.ls5b{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.058667pt;}
.ls4d{letter-spacing:0.080000pt;}
.ls43{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.110933pt;}
.ls6{letter-spacing:0.117333pt;}
.lsb{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.144000pt;}
.ls47{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.176000pt;}
.ls1e{letter-spacing:0.181333pt;}
.ls29{letter-spacing:0.203200pt;}
.ls3a{letter-spacing:0.204000pt;}
.ls34{letter-spacing:0.211200pt;}
.ls48{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.226667pt;}
.ls12{letter-spacing:0.234667pt;}
.ls4b{letter-spacing:0.237867pt;}
.ls2{letter-spacing:0.240000pt;}
.ls2a{letter-spacing:0.246400pt;}
.ls31{letter-spacing:0.249333pt;}
.lsa{letter-spacing:0.265067pt;}
.ls37{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.272000pt;}
.ls57{letter-spacing:0.290133pt;}
.ls7{letter-spacing:0.293333pt;}
.ls15{letter-spacing:0.308800pt;}
.ls3b{letter-spacing:0.317333pt;}
.ls42{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.352000pt;}
.ls1c{letter-spacing:0.373333pt;}
.ls65{letter-spacing:0.378667pt;}
.ls28{letter-spacing:0.381333pt;}
.ls13{letter-spacing:0.410667pt;}
.ls41{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.440000pt;}
.ls10{letter-spacing:0.469333pt;}
.ls39{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.498667pt;}
.ls14{letter-spacing:0.528000pt;}
.ls4a{letter-spacing:0.533333pt;}
.ls3e{letter-spacing:0.586667pt;}
.ls54{letter-spacing:0.616000pt;}
.ls5d{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.666667pt;}
.ls5c{letter-spacing:0.693333pt;}
.ls5e{letter-spacing:0.704000pt;}
.ls49{letter-spacing:0.733333pt;}
.ls36{letter-spacing:0.762667pt;}
.ls53{letter-spacing:0.821333pt;}
.ls62{letter-spacing:0.853333pt;}
.ls50{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls4f{letter-spacing:0.938667pt;}
.ls66{letter-spacing:1.093333pt;}
.ls51{letter-spacing:1.173333pt;}
.ls17{letter-spacing:1.314667pt;}
.ls4e{letter-spacing:1.349333pt;}
.ls52{letter-spacing:1.378667pt;}
.ls16{letter-spacing:1.405333pt;}
.ls3d{letter-spacing:1.437333pt;}
.ls30{letter-spacing:1.466667pt;}
.ls5a{letter-spacing:3.746133pt;}
.ls58{letter-spacing:3.926933pt;}
.ls59{letter-spacing:6.625600pt;}
.ws1e{word-spacing:-18.000000pt;}
.wscb{word-spacing:-15.986667pt;}
.ws124{word-spacing:-15.136000pt;}
.ws12a{word-spacing:-14.901333pt;}
.ws111{word-spacing:-14.842667pt;}
.ws118{word-spacing:-14.666667pt;}
.wsf7{word-spacing:-14.549333pt;}
.ws1{word-spacing:-13.888000pt;}
.ws104{word-spacing:-13.813333pt;}
.ws14a{word-spacing:-13.605333pt;}
.ws149{word-spacing:-13.546667pt;}
.wsfe{word-spacing:-13.226667pt;}
.ws134{word-spacing:-13.120000pt;}
.ws13f{word-spacing:-13.013333pt;}
.ws6{word-spacing:-12.960000pt;}
.ws140{word-spacing:-12.533333pt;}
.ws12f{word-spacing:-12.426667pt;}
.ws0{word-spacing:-11.904000pt;}
.wsd1{word-spacing:-11.242667pt;}
.ws10c{word-spacing:-11.106667pt;}
.ws1f{word-spacing:-10.800000pt;}
.ws2{word-spacing:-10.416000pt;}
.ws133{word-spacing:-9.920000pt;}
.ws125{word-spacing:-9.081600pt;}
.ws85{word-spacing:-8.976000pt;}
.wsa2{word-spacing:-8.940800pt;}
.ws5{word-spacing:-8.928000pt;}
.wse1{word-spacing:-8.905600pt;}
.ws93{word-spacing:-8.764800pt;}
.ws3c{word-spacing:-8.729600pt;}
.ws20{word-spacing:-6.745600pt;}
.ws86{word-spacing:-6.691200pt;}
.wsc2{word-spacing:-6.664000pt;}
.wse2{word-spacing:-6.636800pt;}
.ws29{word-spacing:-2.229333pt;}
.ws144{word-spacing:-2.186667pt;}
.ws21{word-spacing:-2.170667pt;}
.ws7d{word-spacing:-2.112000pt;}
.ws135{word-spacing:-2.080000pt;}
.wsb3{word-spacing:-2.053333pt;}
.ws56{word-spacing:-2.026667pt;}
.ws68{word-spacing:-1.994667pt;}
.ws59{word-spacing:-1.973333pt;}
.wsab{word-spacing:-1.936000pt;}
.ws28{word-spacing:-1.877333pt;}
.ws5e{word-spacing:-1.818667pt;}
.wse{word-spacing:-1.776000pt;}
.ws5a{word-spacing:-1.760000pt;}
.wsa{word-spacing:-1.728000pt;}
.ws9f{word-spacing:-1.722667pt;}
.ws13d{word-spacing:-1.706667pt;}
.wsbb{word-spacing:-1.701333pt;}
.ws19{word-spacing:-1.680000pt;}
.ws61{word-spacing:-1.677333pt;}
.ws7f{word-spacing:-1.642667pt;}
.wsc{word-spacing:-1.632000pt;}
.wsf4{word-spacing:-1.584000pt;}
.ws36{word-spacing:-1.541333pt;}
.ws2a{word-spacing:-1.525333pt;}
.ws7e{word-spacing:-1.466667pt;}
.wsc4{word-spacing:-1.440000pt;}
.ws4a{word-spacing:-1.408000pt;}
.ws38{word-spacing:-1.360000pt;}
.ws9a{word-spacing:-1.349333pt;}
.ws9{word-spacing:-1.344000pt;}
.wsaa{word-spacing:-1.290667pt;}
.ws10{word-spacing:-1.248000pt;}
.wsd3{word-spacing:-1.232000pt;}
.ws1d{word-spacing:-1.200000pt;}
.ws8b{word-spacing:-1.173333pt;}
.ws33{word-spacing:-1.133333pt;}
.ws46{word-spacing:-1.114667pt;}
.ws107{word-spacing:-1.066667pt;}
.ws90{word-spacing:-1.056000pt;}
.wsc0{word-spacing:-1.013333pt;}
.ws83{word-spacing:-0.997333pt;}
.ws122{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.938667pt;}
.ws4e{word-spacing:-0.906667pt;}
.ws51{word-spacing:-0.880000pt;}
.wsea{word-spacing:-0.861333pt;}
.ws142{word-spacing:-0.853333pt;}
.ws67{word-spacing:-0.821333pt;}
.wsec{word-spacing:-0.816000pt;}
.ws13c{word-spacing:-0.800000pt;}
.ws6f{word-spacing:-0.770667pt;}
.ws1b{word-spacing:-0.768000pt;}
.ws6c{word-spacing:-0.762667pt;}
.ws11c{word-spacing:-0.746667pt;}
.ws9e{word-spacing:-0.725333pt;}
.ws55{word-spacing:-0.704000pt;}
.ws101{word-spacing:-0.645333pt;}
.wsb8{word-spacing:-0.634667pt;}
.wsb5{word-spacing:-0.589333pt;}
.ws3d{word-spacing:-0.586667pt;}
.wsf3{word-spacing:-0.544000pt;}
.wsbc{word-spacing:-0.528000pt;}
.ws114{word-spacing:-0.480000pt;}
.ws42{word-spacing:-0.469333pt;}
.ws92{word-spacing:-0.453333pt;}
.ws79{word-spacing:-0.410667pt;}
.wsd6{word-spacing:-0.408000pt;}
.ws126{word-spacing:-0.373333pt;}
.ws64{word-spacing:-0.352000pt;}
.ws137{word-spacing:-0.320000pt;}
.ws3b{word-spacing:-0.317333pt;}
.ws75{word-spacing:-0.293333pt;}
.ws13{word-spacing:-0.288000pt;}
.ws26{word-spacing:-0.234667pt;}
.ws91{word-spacing:-0.226667pt;}
.ws105{word-spacing:-0.213333pt;}
.ws39{word-spacing:-0.181333pt;}
.wsff{word-spacing:-0.176000pt;}
.ws76{word-spacing:-0.117333pt;}
.ws73{word-spacing:-0.058667pt;}
.wsfa{word-spacing:-0.053333pt;}
.ws4b{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.ws132{word-spacing:0.053333pt;}
.wsa3{word-spacing:0.058667pt;}
.ws110{word-spacing:0.090667pt;}
.ws16{word-spacing:0.096000pt;}
.wsfc{word-spacing:0.106667pt;}
.wsc7{word-spacing:0.117333pt;}
.ws30{word-spacing:0.136000pt;}
.ws12c{word-spacing:0.160000pt;}
.ws3f{word-spacing:0.176000pt;}
.wsb4{word-spacing:0.181333pt;}
.ws141{word-spacing:0.213333pt;}
.wsa8{word-spacing:0.234667pt;}
.wsdc{word-spacing:0.266667pt;}
.ws6e{word-spacing:0.272000pt;}
.wsb{word-spacing:0.288000pt;}
.wse4{word-spacing:0.293333pt;}
.ws96{word-spacing:0.352000pt;}
.ws7a{word-spacing:0.410667pt;}
.ws5b{word-spacing:0.426667pt;}
.wsc6{word-spacing:0.469333pt;}
.wsbe{word-spacing:0.480000pt;}
.ws53{word-spacing:0.528000pt;}
.ws58{word-spacing:0.533333pt;}
.ws60{word-spacing:0.544000pt;}
.ws14{word-spacing:0.576000pt;}
.ws74{word-spacing:0.586667pt;}
.wsd0{word-spacing:0.589333pt;}
.ws37{word-spacing:0.634667pt;}
.wsbf{word-spacing:0.640000pt;}
.ws82{word-spacing:0.645333pt;}
.ws12{word-spacing:0.672000pt;}
.wsae{word-spacing:0.680000pt;}
.ws115{word-spacing:0.693333pt;}
.ws119{word-spacing:0.704000pt;}
.ws7{word-spacing:0.720000pt;}
.ws15{word-spacing:0.768000pt;}
.ws103{word-spacing:0.800000pt;}
.ws11{word-spacing:0.816000pt;}
.wse6{word-spacing:0.821333pt;}
.wsda{word-spacing:0.853333pt;}
.ws8{word-spacing:0.864000pt;}
.wsb2{word-spacing:0.880000pt;}
.wsed{word-spacing:0.906667pt;}
.wsc8{word-spacing:0.938667pt;}
.ws5d{word-spacing:0.960000pt;}
.wsd7{word-spacing:0.997333pt;}
.wsd{word-spacing:1.008000pt;}
.ws5c{word-spacing:1.013333pt;}
.ws1c{word-spacing:1.056000pt;}
.wsdb{word-spacing:1.066667pt;}
.ws84{word-spacing:1.114667pt;}
.wsc5{word-spacing:1.120000pt;}
.wsd5{word-spacing:1.133333pt;}
.ws18{word-spacing:1.152000pt;}
.ws9c{word-spacing:1.173333pt;}
.ws7b{word-spacing:1.232000pt;}
.ws1a{word-spacing:1.248000pt;}
.ws70{word-spacing:1.269333pt;}
.ws22{word-spacing:1.290667pt;}
.ws13a{word-spacing:1.333333pt;}
.ws88{word-spacing:1.349333pt;}
.wsb1{word-spacing:1.408000pt;}
.wsa0{word-spacing:1.450667pt;}
.wsc9{word-spacing:1.466667pt;}
.ws2c{word-spacing:1.525333pt;}
.ws2d{word-spacing:1.541333pt;}
.wsdf{word-spacing:1.546667pt;}
.ws94{word-spacing:1.584000pt;}
.wse5{word-spacing:1.642667pt;}
.wsf0{word-spacing:1.706667pt;}
.ws45{word-spacing:1.760000pt;}
.wscf{word-spacing:1.768000pt;}
.ws31{word-spacing:1.813333pt;}
.wse9{word-spacing:1.818667pt;}
.wsfb{word-spacing:1.866667pt;}
.wse3{word-spacing:1.877333pt;}
.ws34{word-spacing:1.904000pt;}
.ws13e{word-spacing:1.920000pt;}
.ws9d{word-spacing:1.936000pt;}
.wsad{word-spacing:1.949329pt;}
.ws17{word-spacing:1.968000pt;}
.ws112{word-spacing:1.994667pt;}
.wsce{word-spacing:2.053333pt;}
.ws100{word-spacing:2.112000pt;}
.ws2e{word-spacing:2.130667pt;}
.ws12e{word-spacing:2.133333pt;}
.ws77{word-spacing:2.170667pt;}
.wsa1{word-spacing:2.221333pt;}
.wse0{word-spacing:2.229333pt;}
.wsfd{word-spacing:2.240000pt;}
.ws35{word-spacing:2.266667pt;}
.ws5f{word-spacing:2.288000pt;}
.ws10a{word-spacing:2.293328pt;}
.ws8d{word-spacing:2.346667pt;}
.ws11a{word-spacing:2.405333pt;}
.wsef{word-spacing:2.453333pt;}
.wse8{word-spacing:2.464000pt;}
.ws78{word-spacing:2.522661pt;}
.ws139{word-spacing:2.560000pt;}
.wsa5{word-spacing:2.581333pt;}
.ws40{word-spacing:2.640000pt;}
.wsc3{word-spacing:2.666667pt;}
.wsd4{word-spacing:2.674667pt;}
.ws116{word-spacing:2.698667pt;}
.ws97{word-spacing:2.757333pt;}
.ws2f{word-spacing:2.810667pt;}
.wsb9{word-spacing:2.816000pt;}
.ws12d{word-spacing:2.826667pt;}
.wsb6{word-spacing:2.856000pt;}
.ws48{word-spacing:2.874667pt;}
.ws14e{word-spacing:2.880000pt;}
.wsb7{word-spacing:2.901333pt;}
.ws3e{word-spacing:2.933333pt;}
.wsf{word-spacing:2.976000pt;}
.ws123{word-spacing:2.986667pt;}
.wsf5{word-spacing:2.991994pt;}
.ws71{word-spacing:2.992000pt;}
.ws146{word-spacing:3.040000pt;}
.ws9b{word-spacing:3.050667pt;}
.wsac{word-spacing:3.082667pt;}
.ws62{word-spacing:3.109333pt;}
.wsdd{word-spacing:3.146667pt;}
.ws89{word-spacing:3.168000pt;}
.ws80{word-spacing:3.226667pt;}
.ws32{word-spacing:3.264000pt;}
.wse7{word-spacing:3.285333pt;}
.wsc1{word-spacing:3.306667pt;}
.ws8f{word-spacing:3.344000pt;}
.ws66{word-spacing:3.402667pt;}
.ws11d{word-spacing:3.413333pt;}
.wsa4{word-spacing:3.461333pt;}
.ws43{word-spacing:3.520000pt;}
.ws113{word-spacing:3.573333pt;}
.ws49{word-spacing:3.578667pt;}
.ws3a{word-spacing:3.626667pt;}
.ws23{word-spacing:3.637333pt;}
.wseb{word-spacing:3.672000pt;}
.ws7c{word-spacing:3.696000pt;}
.wsde{word-spacing:3.733333pt;}
.ws44{word-spacing:3.754667pt;}
.ws4f{word-spacing:3.813333pt;}
.wsee{word-spacing:3.840000pt;}
.wsca{word-spacing:3.853333pt;}
.ws6d{word-spacing:3.872000pt;}
.ws24{word-spacing:3.930667pt;}
.ws138{word-spacing:3.946667pt;}
.ws14b{word-spacing:4.000000pt;}
.ws99{word-spacing:4.048000pt;}
.ws108{word-spacing:4.053333pt;}
.ws6a{word-spacing:4.106667pt;}
.ws25{word-spacing:4.165327pt;}
.ws8c{word-spacing:4.224000pt;}
.ws72{word-spacing:4.282667pt;}
.ws13b{word-spacing:4.320000pt;}
.ws95{word-spacing:4.341333pt;}
.wsd9{word-spacing:4.426667pt;}
.wsb0{word-spacing:4.458667pt;}
.wsf2{word-spacing:4.517333pt;}
.ws11f{word-spacing:4.533333pt;}
.ws54{word-spacing:4.576000pt;}
.wsaf{word-spacing:4.634667pt;}
.ws65{word-spacing:4.693333pt;}
.ws14c{word-spacing:4.746667pt;}
.ws8a{word-spacing:4.752000pt;}
.ws121{word-spacing:4.869333pt;}
.ws136{word-spacing:4.906667pt;}
.ws87{word-spacing:4.928000pt;}
.ws57{word-spacing:4.960000pt;}
.ws50{word-spacing:4.986667pt;}
.ws11b{word-spacing:5.045327pt;}
.ws41{word-spacing:5.103994pt;}
.ws4d{word-spacing:5.168000pt;}
.ws11e{word-spacing:5.173333pt;}
.wsa6{word-spacing:5.221333pt;}
.ws69{word-spacing:5.280000pt;}
.wsa7{word-spacing:5.338667pt;}
.ws81{word-spacing:5.397333pt;}
.wsd8{word-spacing:5.440000pt;}
.ws63{word-spacing:5.456000pt;}
.ws2b{word-spacing:5.514667pt;}
.wsf1{word-spacing:5.632000pt;}
.ws12b{word-spacing:5.749333pt;}
.ws6b{word-spacing:5.808000pt;}
.ws10e{word-spacing:5.866667pt;}
.ws109{word-spacing:5.920000pt;}
.wsd2{word-spacing:6.101333pt;}
.ws117{word-spacing:6.160000pt;}
.ws98{word-spacing:6.218667pt;}
.wsf6{word-spacing:6.277333pt;}
.ws10d{word-spacing:6.336000pt;}
.ws4c{word-spacing:6.437333pt;}
.ws47{word-spacing:6.453333pt;}
.ws129{word-spacing:6.512000pt;}
.ws102{word-spacing:6.560000pt;}
.ws8e{word-spacing:6.746667pt;}
.ws148{word-spacing:6.826667pt;}
.ws106{word-spacing:7.146667pt;}
.wscd{word-spacing:7.216000pt;}
.ws128{word-spacing:7.274667pt;}
.wsa9{word-spacing:7.450667pt;}
.ws52{word-spacing:7.568000pt;}
.wsf9{word-spacing:7.626667pt;}
.ws10f{word-spacing:7.685333pt;}
.ws127{word-spacing:8.480000pt;}
.ws120{word-spacing:8.917333pt;}
.wsf8{word-spacing:9.152000pt;}
.wsbd{word-spacing:9.504000pt;}
.ws147{word-spacing:10.400000pt;}
.ws150{word-spacing:11.200000pt;}
.ws4{word-spacing:12.096000pt;}
.ws14d{word-spacing:13.600000pt;}
.wsba{word-spacing:16.800000pt;}
.ws10b{word-spacing:16.954667pt;}
.wscc{word-spacing:17.952000pt;}
.ws130{word-spacing:40.053333pt;}
.ws145{word-spacing:40.106667pt;}
.ws143{word-spacing:40.320000pt;}
.ws131{word-spacing:40.373333pt;}
.ws14f{word-spacing:41.013333pt;}
._a{margin-left:-33.334400pt;}
._8{margin-left:-12.437333pt;}
._2{margin-left:-3.173333pt;}
._1{margin-left:-1.440000pt;}
._4{width:1.697600pt;}
._c{width:3.003733pt;}
._6{width:4.080000pt;}
._b{width:5.080533pt;}
._7{width:8.613333pt;}
._3{width:9.882667pt;}
._9{width:10.880000pt;}
._5{width:12.556800pt;}
._0{width:1721.724800pt;}
.fse{font-size:27.200000pt;}
.fs8{font-size:32.000000pt;}
.fsd{font-size:35.200000pt;}
.fs1{font-size:36.000000pt;}
.fsb{font-size:40.000000pt;}
.fs5{font-size:42.000000pt;}
.fs9{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fsf{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fsc{font-size:58.666667pt;}
.fsa{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:11.338667pt;}
.y2{bottom:28.000000pt;}
.y3{bottom:55.802000pt;}
.y4{bottom:83.802000pt;}
.y1{bottom:98.202000pt;}
.y3a{bottom:152.724400pt;}
.y9e{bottom:152.724533pt;}
.y80{bottom:152.724667pt;}
.y5f{bottom:156.464667pt;}
.y9d{bottom:167.391200pt;}
.y7f{bottom:167.391333pt;}
.y39{bottom:168.057733pt;}
.y2b2{bottom:169.391067pt;}
.yee{bottom:170.724400pt;}
.y1f7{bottom:170.811067pt;}
.y212{bottom:170.889467pt;}
.yfd{bottom:171.131200pt;}
.y5e{bottom:171.391333pt;}
.y226{bottom:178.879200pt;}
.y9c{bottom:182.057867pt;}
.y13d{bottom:182.058000pt;}
.y38{bottom:183.391067pt;}
.y7e{bottom:185.797867pt;}
.y2b1{bottom:186.057733pt;}
.y5d{bottom:186.058000pt;}
.yfc{bottom:186.058133pt;}
.y1b7{bottom:188.724400pt;}
.y1f6{bottom:188.897600pt;}
.y211{bottom:189.054533pt;}
.y2fa{bottom:194.592533pt;}
.ybc{bottom:196.724533pt;}
.y1c2{bottom:196.724667pt;}
.y240{bottom:196.983867pt;}
.y9b{bottom:200.464533pt;}
.y5c{bottom:200.724667pt;}
.y7d{bottom:200.724800pt;}
.yed{bottom:200.863333pt;}
.y2b0{bottom:202.724400pt;}
.y225{bottom:205.034000pt;}
.y1b6{bottom:206.724400pt;}
.y1f5{bottom:206.984267pt;}
.y210{bottom:207.219600pt;}
.y157{bottom:208.514667pt;}
.y2f9{bottom:211.259200pt;}
.ybb{bottom:211.391200pt;}
.y1c1{bottom:211.391333pt;}
.y315{bottom:212.401333pt;}
.y32e{bottom:212.732267pt;}
.y23f{bottom:213.650533pt;}
.y5b{bottom:215.391333pt;}
.y7c{bottom:215.391467pt;}
.yec{bottom:218.863333pt;}
.y2af{bottom:219.391067pt;}
.y293{bottom:220.007733pt;}
.y224{bottom:221.700667pt;}
.yd7{bottom:223.181333pt;}
.y37{bottom:224.467467pt;}
.y1b5{bottom:224.724400pt;}
.y1f4{bottom:225.070800pt;}
.y156{bottom:225.181333pt;}
.y20f{bottom:225.384667pt;}
.yba{bottom:226.057867pt;}
.y1c0{bottom:226.058000pt;}
.y2cd{bottom:226.514667pt;}
.y314{bottom:229.068000pt;}
.y32d{bottom:229.398933pt;}
.y173{bottom:229.797867pt;}
.y5a{bottom:230.058000pt;}
.y129{bottom:230.058133pt;}
.y23e{bottom:230.317200pt;}
.y7b{bottom:233.798133pt;}
.y2f8{bottom:236.460533pt;}
.yeb{bottom:236.863333pt;}
.y9a{bottom:237.848000pt;}
.y292{bottom:238.007733pt;}
.y223{bottom:238.367333pt;}
.y36{bottom:239.800800pt;}
.yb9{bottom:240.724533pt;}
.y1bf{bottom:240.724667pt;}
.yd6{bottom:241.181333pt;}
.y155{bottom:241.848000pt;}
.y1b4{bottom:242.724400pt;}
.y1f3{bottom:243.157467pt;}
.y117{bottom:244.464533pt;}
.y59{bottom:244.724667pt;}
.y128{bottom:244.724800pt;}
.y313{bottom:245.734667pt;}
.y2ae{bottom:246.828667pt;}
.y23d{bottom:252.912533pt;}
.y2f7{bottom:253.127200pt;}
.y2cc{bottom:254.837867pt;}
.yea{bottom:254.863333pt;}
.yb8{bottom:255.391200pt;}
.y99{bottom:255.848000pt;}
.y291{bottom:256.007733pt;}
.y32c{bottom:256.073467pt;}
.y154{bottom:258.514667pt;}
.y20e{bottom:259.108800pt;}
.y19d{bottom:259.131200pt;}
.yd5{bottom:259.181333pt;}
.y58{bottom:259.391333pt;}
.y127{bottom:259.391467pt;}
.y1b3{bottom:260.724400pt;}
.y1f2{bottom:261.244000pt;}
.y13c{bottom:263.131467pt;}
.y222{bottom:264.522000pt;}
.y2ad{bottom:264.828667pt;}
.y35{bottom:265.542400pt;}
.y172{bottom:267.181333pt;}
.y23c{bottom:269.579200pt;}
.y7a{bottom:271.181467pt;}
.y312{bottom:272.078267pt;}
.y2cb{bottom:272.837867pt;}
.ye9{bottom:272.863333pt;}
.yb7{bottom:273.797867pt;}
.y98{bottom:273.848000pt;}
.y126{bottom:274.058133pt;}
.y153{bottom:275.181333pt;}
.y20d{bottom:275.940533pt;}
.yd4{bottom:277.181333pt;}
.y57{bottom:277.798000pt;}
.y2f6{bottom:278.328667pt;}
.y1b2{bottom:278.724400pt;}
.y1f1{bottom:279.330667pt;}
.y34{bottom:280.875733pt;}
.y116{bottom:281.848000pt;}
.y32b{bottom:282.748000pt;}
.y2ac{bottom:282.828667pt;}
.y171{bottom:285.181333pt;}
.y23b{bottom:286.245867pt;}
.y290{bottom:287.291067pt;}
.y125{bottom:288.724800pt;}
.y311{bottom:288.744933pt;}
.y79{bottom:289.181467pt;}
.y221{bottom:290.676800pt;}
.y2e1{bottom:290.828667pt;}
.y2ca{bottom:290.837867pt;}
.ye8{bottom:290.863333pt;}
.y97{bottom:291.848000pt;}
.y187{bottom:292.464800pt;}
.y56{bottom:292.724800pt;}
.y20c{bottom:292.772133pt;}
.y2f5{bottom:294.995333pt;}
.y33{bottom:296.209067pt;}
.y19c{bottom:296.514667pt;}
.y255{bottom:296.724400pt;}
.y1f0{bottom:297.417200pt;}
.y32a{bottom:299.414667pt;}
.y1d7{bottom:299.925867pt;}
.y115{bottom:299.934933pt;}
.y152{bottom:300.106533pt;}
.y13b{bottom:300.514800pt;}
.y2ab{bottom:300.828667pt;}
.y23a{bottom:302.912533pt;}
.y170{bottom:303.181333pt;}
.y28f{bottom:303.957733pt;}
.yd3{bottom:304.671200pt;}
.y310{bottom:305.411600pt;}
.y1b1{bottom:305.662000pt;}
.y124{bottom:307.131467pt;}
.yfb{bottom:307.181467pt;}
.y220{bottom:307.343467pt;}
.y55{bottom:307.391467pt;}
.y2e0{bottom:307.495333pt;}
.y2c9{bottom:308.837867pt;}
.ye7{bottom:308.863333pt;}
.y20b{bottom:309.603867pt;}
.yb6{bottom:311.181333pt;}
.y32{bottom:311.542400pt;}
.y2f4{bottom:311.662000pt;}
.y19b{bottom:314.514667pt;}
.y254{bottom:314.724400pt;}
.y1ef{bottom:315.503733pt;}
.y1d6{bottom:317.925867pt;}
.y114{bottom:318.022000pt;}
.y151{bottom:318.106533pt;}
.y13a{bottom:318.514800pt;}
.y239{bottom:319.579200pt;}
.y78{bottom:320.161200pt;}
.y30e{bottom:320.421733pt;}
.y28e{bottom:320.624400pt;}
.y16f{bottom:321.181333pt;}
.y54{bottom:322.058133pt;}
.y1b0{bottom:322.328667pt;}
.y96{bottom:322.501200pt;}
.yd2{bottom:322.671200pt;}
.y2df{bottom:324.162000pt;}
.yfa{bottom:325.181467pt;}
.y27b{bottom:325.460533pt;}
.y329{bottom:326.089200pt;}
.y20a{bottom:326.435600pt;}
.y2c8{bottom:326.837867pt;}
.ye6{bottom:326.863333pt;}
.y31{bottom:326.875733pt;}
.yb5{bottom:329.448000pt;}
.y2aa{bottom:329.599467pt;}
.y186{bottom:329.848133pt;}
.y30f{bottom:331.755067pt;}
.y19a{bottom:332.514667pt;}
.y253{bottom:332.724400pt;}
.y21f{bottom:333.498267pt;}
.y1ee{bottom:333.590400pt;}
.y1d5{bottom:335.925867pt;}
.y150{bottom:336.106533pt;}
.y113{bottom:336.108933pt;}
.y139{bottom:336.514800pt;}
.y53{bottom:336.724800pt;}
.y2f3{bottom:336.863333pt;}
.y28d{bottom:337.291067pt;}
.y77{bottom:338.161200pt;}
.y1af{bottom:338.995333pt;}
.y95{bottom:339.167867pt;}
.y16e{bottom:339.181333pt;}
.yd1{bottom:340.671200pt;}
.y2de{bottom:340.828667pt;}
.y238{bottom:342.174667pt;}
.y30{bottom:342.209067pt;}
.y328{bottom:342.755867pt;}
.yf9{bottom:343.181467pt;}
.y209{bottom:343.267333pt;}
.y27a{bottom:343.460533pt;}
.y123{bottom:344.514800pt;}
.y268{bottom:347.243600pt;}
.y2a9{bottom:347.599467pt;}
.yb4{bottom:347.714667pt;}
.y185{bottom:347.848133pt;}
.y30d{bottom:348.421733pt;}
.y52{bottom:351.391467pt;}
.y1ed{bottom:351.677067pt;}
.y2f2{bottom:353.530000pt;}
.y1d4{bottom:353.925867pt;}
.y28c{bottom:353.957733pt;}
.y112{bottom:354.196000pt;}
.y138{bottom:354.514800pt;}
.y2c7{bottom:355.161200pt;}
.y1ae{bottom:355.662000pt;}
.y94{bottom:355.834533pt;}
.y76{bottom:356.161200pt;}
.ye5{bottom:357.002133pt;}
.y16d{bottom:357.181333pt;}
.y2dd{bottom:357.495333pt;}
.y2f{bottom:357.542400pt;}
.yd0{bottom:358.671200pt;}
.y237{bottom:358.841333pt;}
.y327{bottom:359.422533pt;}
.y21e{bottom:359.652933pt;}
.y252{bottom:361.162000pt;}
.yf8{bottom:361.181467pt;}
.y279{bottom:361.460533pt;}
.y14f{bottom:362.365200pt;}
.y122{bottom:362.514800pt;}
.y267{bottom:365.243600pt;}
.y2a8{bottom:365.599467pt;}
.y184{bottom:365.848133pt;}
.yb3{bottom:365.981333pt;}
.y51{bottom:366.058133pt;}
.y199{bottom:368.171200pt;}
.y1ec{bottom:369.763600pt;}
.y28b{bottom:370.624400pt;}
.y1d3{bottom:371.925867pt;}
.y111{bottom:372.282933pt;}
.y1ad{bottom:372.328667pt;}
.y93{bottom:372.501200pt;}
.y137{bottom:372.514800pt;}
.y2e{bottom:372.875733pt;}
.y2c6{bottom:373.161200pt;}
.y75{bottom:374.161200pt;}
.y2dc{bottom:374.162000pt;}
.y30c{bottom:374.765200pt;}
.ye4{bottom:375.002133pt;}
.y16c{bottom:375.181333pt;}
.y236{bottom:375.508000pt;}
.y208{bottom:375.658133pt;}
.ycf{bottom:376.671200pt;}
.y21d{bottom:377.652933pt;}
.y2f1{bottom:378.731467pt;}
.y251{bottom:379.162000pt;}
.yf7{bottom:379.181467pt;}
.y278{bottom:379.460533pt;}
.y14e{bottom:380.365200pt;}
.y1be{bottom:380.514800pt;}
.y50{bottom:380.724800pt;}
.y266{bottom:383.243600pt;}
.y2a7{bottom:383.599467pt;}
.y183{bottom:383.848133pt;}
.yb2{bottom:384.248133pt;}
.y326{bottom:386.097067pt;}
.y28a{bottom:387.291067pt;}
.y1eb{bottom:387.850133pt;}
.y2d{bottom:388.209067pt;}
.y1ac{bottom:388.995333pt;}
.y92{bottom:389.167867pt;}
.y1d2{bottom:389.925867pt;}
.y110{bottom:390.370000pt;}
.y136{bottom:390.514800pt;}
.y2db{bottom:390.828667pt;}
.y2c5{bottom:391.161200pt;}
.y30b{bottom:391.431867pt;}
.y74{bottom:392.161200pt;}
.y121{bottom:392.827867pt;}
.ye3{bottom:393.002133pt;}
.y207{bottom:393.823200pt;}
.yce{bottom:394.671200pt;}
.y4f{bottom:395.391467pt;}
.y2f0{bottom:395.398133pt;}
.y21c{bottom:395.652933pt;}
.y250{bottom:397.162000pt;}
.y14d{bottom:398.365200pt;}
.y235{bottom:400.434133pt;}
.y265{bottom:401.243600pt;}
.y2a6{bottom:401.599467pt;}
.y182{bottom:401.848133pt;}
.yb1{bottom:402.514800pt;}
.y325{bottom:402.763733pt;}
.y289{bottom:403.957733pt;}
.y16b{bottom:405.285200pt;}
.y1ab{bottom:405.662000pt;}
.y91{bottom:405.834533pt;}
.y1ea{bottom:405.936800pt;}
.yf6{bottom:406.501333pt;}
.y2da{bottom:407.495333pt;}
.y277{bottom:408.196667pt;}
.y10f{bottom:408.456933pt;}
.y135{bottom:408.514800pt;}
.y2c4{bottom:409.161200pt;}
.y73{bottom:410.161200pt;}
.y120{bottom:410.827867pt;}
.ye2{bottom:411.002133pt;}
.y206{bottom:411.988133pt;}
.ycd{bottom:412.671200pt;}
.y21b{bottom:413.652933pt;}
.y4e{bottom:413.798133pt;}
.y24f{bottom:415.162000pt;}
.y1d1{bottom:416.003867pt;}
.y14c{bottom:416.365200pt;}
.y30a{bottom:417.775467pt;}
.y14{bottom:418.010400pt;}
.y234{bottom:418.434133pt;}
.y264{bottom:419.243600pt;}
.y2a5{bottom:419.599467pt;}
.y2ef{bottom:420.599467pt;}
.y288{bottom:420.624400pt;}
.yb0{bottom:420.781467pt;}
.y198{bottom:421.827867pt;}
.y1aa{bottom:422.328667pt;}
.y90{bottom:422.501200pt;}
.y16a{bottom:423.285200pt;}
.y1e9{bottom:424.023333pt;}
.y2d9{bottom:424.162000pt;}
.yf5{bottom:424.501333pt;}
.y276{bottom:424.863333pt;}
.y134{bottom:426.514800pt;}
.y2c3{bottom:427.161200pt;}
.y72{bottom:428.161200pt;}
.y11f{bottom:428.827867pt;}
.ye1{bottom:429.002133pt;}
.y2c{bottom:429.285467pt;}
.y324{bottom:429.438133pt;}
.y205{bottom:430.153200pt;}
.ycc{bottom:430.671200pt;}
.y21a{bottom:431.652933pt;}
.y181{bottom:432.945733pt;}
.y24e{bottom:433.162000pt;}
.y1d0{bottom:434.003867pt;}
.y13{bottom:434.010400pt;}
.y14b{bottom:434.365200pt;}
.y309{bottom:434.442133pt;}
.y233{bottom:436.434133pt;}
.y263{bottom:437.243600pt;}
.y2ee{bottom:437.266133pt;}
.y2a4{bottom:437.599467pt;}
.y1a9{bottom:438.995333pt;}
.yaf{bottom:439.048133pt;}
.y8f{bottom:439.167867pt;}
.y197{bottom:439.827867pt;}
.y169{bottom:441.285200pt;}
.y275{bottom:441.530000pt;}
.y10e{bottom:442.103067pt;}
.y1e8{bottom:442.110000pt;}
.yf4{bottom:442.501333pt;}
.y133{bottom:444.514667pt;}
.y2b{bottom:444.618800pt;}
.y10{bottom:444.677067pt;}
.y2c2{bottom:445.161200pt;}
.y323{bottom:446.104800pt;}
.y71{bottom:446.161200pt;}
.y11e{bottom:446.827867pt;}
.ye0{bottom:447.002133pt;}
.y204{bottom:448.318267pt;}
.ycb{bottom:448.671200pt;}
.y219{bottom:449.652933pt;}
.y287{bottom:450.574400pt;}
.y180{bottom:450.945733pt;}
.y308{bottom:451.108800pt;}
.y24d{bottom:451.162000pt;}
.y4d{bottom:451.181600pt;}
.y1cf{bottom:452.003867pt;}
.y14a{bottom:452.365200pt;}
.y2d8{bottom:452.932800pt;}
.y232{bottom:454.434133pt;}
.y262{bottom:455.243600pt;}
.y2a3{bottom:455.599467pt;}
.y1a8{bottom:455.662000pt;}
.y8e{bottom:455.834533pt;}
.yae{bottom:457.314800pt;}
.y196{bottom:457.827867pt;}
.y12{bottom:458.010400pt;}
.y274{bottom:458.196667pt;}
.y168{bottom:459.285200pt;}
.y10d{bottom:460.190000pt;}
.y1e7{bottom:460.196533pt;}
.yf3{bottom:460.501333pt;}
.y2ed{bottom:462.467467pt;}
.y132{bottom:462.514667pt;}
.y2c1{bottom:463.161200pt;}
.y70{bottom:464.161200pt;}
.y11d{bottom:464.827867pt;}
.ydf{bottom:465.002133pt;}
.y203{bottom:466.483333pt;}
.y218{bottom:467.652933pt;}
.y286{bottom:468.574400pt;}
.y17f{bottom:468.945733pt;}
.y24c{bottom:469.162000pt;}
.y4c{bottom:469.236133pt;}
.y1ce{bottom:470.003867pt;}
.y2a{bottom:470.360400pt;}
.y149{bottom:470.365200pt;}
.y2d7{bottom:470.932800pt;}
.y1a7{bottom:472.328667pt;}
.y231{bottom:472.434133pt;}
.y8d{bottom:472.501200pt;}
.y11{bottom:472.677067pt;}
.y322{bottom:472.779333pt;}
.y261{bottom:473.243600pt;}
.y2a2{bottom:473.599467pt;}
.y273{bottom:474.863333pt;}
.yad{bottom:475.581600pt;}
.y195{bottom:475.827867pt;}
.yca{bottom:476.161200pt;}
.y167{bottom:477.285200pt;}
.y307{bottom:477.452267pt;}
.y10c{bottom:478.277067pt;}
.y1e6{bottom:478.283067pt;}
.yf2{bottom:478.501333pt;}
.y2ec{bottom:479.134133pt;}
.y131{bottom:480.514667pt;}
.y2c0{bottom:481.161200pt;}
.y6f{bottom:482.161200pt;}
.y11c{bottom:482.827867pt;}
.yde{bottom:483.002133pt;}
.y217{bottom:485.652933pt;}
.y29{bottom:485.693733pt;}
.y17e{bottom:486.945733pt;}
.y24b{bottom:487.162000pt;}
.y4b{bottom:487.290667pt;}
.y1cd{bottom:488.003867pt;}
.y148{bottom:488.365200pt;}
.y1a6{bottom:488.995333pt;}
.y8c{bottom:489.167867pt;}
.y321{bottom:489.446000pt;}
.y230{bottom:490.434133pt;}
.y260{bottom:491.243600pt;}
.y272{bottom:491.530000pt;}
.y2a1{bottom:491.599467pt;}
.yd{bottom:492.677067pt;}
.y194{bottom:493.827867pt;}
.y306{bottom:494.118933pt;}
.yc9{bottom:494.161200pt;}
.y166{bottom:495.285200pt;}
.y10b{bottom:496.364000pt;}
.y1e5{bottom:496.369733pt;}
.yf1{bottom:496.501333pt;}
.y130{bottom:498.514667pt;}
.y2bf{bottom:499.161200pt;}
.y285{bottom:499.857733pt;}
.y6e{bottom:500.161200pt;}
.y202{bottom:500.207467pt;}
.y11b{bottom:500.827867pt;}
.y28{bottom:501.027067pt;}
.y2d6{bottom:501.036933pt;}
.y216{bottom:503.652933pt;}
.y2eb{bottom:504.335467pt;}
.y17d{bottom:504.945733pt;}
.y4a{bottom:505.345200pt;}
.y1a5{bottom:505.662000pt;}
.y1cc{bottom:506.003867pt;}
.yf{bottom:506.010400pt;}
.y147{bottom:506.365200pt;}
.y22f{bottom:508.434133pt;}
.yac{bottom:509.407333pt;}
.y339{bottom:509.493067pt;}
.y2a0{bottom:509.599467pt;}
.y305{bottom:510.785600pt;}
.y193{bottom:511.827867pt;}
.yc8{bottom:512.161200pt;}
.ydd{bottom:513.141067pt;}
.y165{bottom:513.285200pt;}
.y10a{bottom:514.451067pt;}
.y1e4{bottom:514.456267pt;}
.yf0{bottom:514.501333pt;}
.y24a{bottom:515.599467pt;}
.y320{bottom:516.120533pt;}
.y27{bottom:516.360400pt;}
.y12f{bottom:516.514667pt;}
.y2be{bottom:517.161200pt;}
.y25f{bottom:517.306000pt;}
.y284{bottom:517.857733pt;}
.y6d{bottom:518.161200pt;}
.y201{bottom:518.372533pt;}
.y8b{bottom:518.487733pt;}
.y11a{bottom:518.827867pt;}
.y271{bottom:518.932800pt;}
.y2d5{bottom:519.036933pt;}
.ye{bottom:520.677067pt;}
.y2ea{bottom:521.002133pt;}
.y215{bottom:521.652933pt;}
.y49{bottom:523.399600pt;}
.y338{bottom:526.159733pt;}
.y22e{bottom:526.434133pt;}
.y29f{bottom:527.599467pt;}
.yab{bottom:527.674000pt;}
.y192{bottom:529.827867pt;}
.yc7{bottom:530.161200pt;}
.ydc{bottom:531.141067pt;}
.y1a4{bottom:531.266133pt;}
.y26{bottom:531.693733pt;}
.y1cb{bottom:532.081733pt;}
.y109{bottom:532.538000pt;}
.y1e3{bottom:532.542933pt;}
.y31f{bottom:532.787200pt;}
.y249{bottom:533.599467pt;}
.y12e{bottom:534.514667pt;}
.y2bd{bottom:535.161200pt;}
.y25e{bottom:535.306000pt;}
.y283{bottom:535.857733pt;}
.y17c{bottom:536.043467pt;}
.y6c{bottom:536.161200pt;}
.y8a{bottom:536.487733pt;}
.y200{bottom:536.537467pt;}
.y119{bottom:536.827867pt;}
.y270{bottom:536.932800pt;}
.y2d4{bottom:537.036933pt;}
.y304{bottom:537.129200pt;}
.y214{bottom:539.652933pt;}
.y146{bottom:540.623867pt;}
.y48{bottom:541.454133pt;}
.y164{bottom:543.389200pt;}
.y22d{bottom:544.434133pt;}
.yaa{bottom:545.940667pt;}
.y2e9{bottom:546.203600pt;}
.y25{bottom:547.027067pt;}
.yc6{bottom:548.161200pt;}
.ydb{bottom:549.141067pt;}
.y1a3{bottom:549.266133pt;}
.yef{bottom:549.821200pt;}
.y1ca{bottom:550.081733pt;}
.y108{bottom:550.624933pt;}
.y1e2{bottom:550.629467pt;}
.y337{bottom:550.826400pt;}
.y248{bottom:551.599467pt;}
.y12d{bottom:552.514667pt;}
.y2bc{bottom:553.161200pt;}
.y25d{bottom:553.306000pt;}
.y303{bottom:553.795867pt;}
.y282{bottom:553.857733pt;}
.yc{bottom:554.010400pt;}
.y17b{bottom:554.043467pt;}
.y6b{bottom:554.161200pt;}
.y89{bottom:554.487733pt;}
.y1ff{bottom:554.702533pt;}
.y118{bottom:554.827867pt;}
.y26f{bottom:554.932800pt;}
.y2d3{bottom:555.036933pt;}
.y29e{bottom:556.370267pt;}
.y191{bottom:557.484400pt;}
.y213{bottom:557.652933pt;}
.y31e{bottom:559.461733pt;}
.y47{bottom:559.508667pt;}
.y145{bottom:560.623867pt;}
.y163{bottom:561.389200pt;}
.y24{bottom:562.360400pt;}
.y2e8{bottom:562.870267pt;}
.ya9{bottom:564.207333pt;}
.yc5{bottom:566.161200pt;}
.yda{bottom:567.141067pt;}
.y1a2{bottom:567.266133pt;}
.y336{bottom:567.493067pt;}
.y1c9{bottom:568.081733pt;}
.y247{bottom:569.599467pt;}
.y302{bottom:570.462533pt;}
.y12c{bottom:570.514667pt;}
.y22c{bottom:570.693467pt;}
.y2bb{bottom:571.161200pt;}
.y25c{bottom:571.306000pt;}
.y281{bottom:571.857733pt;}
.y17a{bottom:572.043467pt;}
.y6a{bottom:572.161200pt;}
.y88{bottom:572.487733pt;}
.y1bd{bottom:572.827867pt;}
.y1fe{bottom:572.867600pt;}
.y2d2{bottom:573.036933pt;}
.y29d{bottom:574.370267pt;}
.yb{bottom:575.343733pt;}
.y190{bottom:575.484400pt;}
.y31d{bottom:576.128400pt;}
.y46{bottom:577.563200pt;}
.y23{bottom:577.693733pt;}
.y162{bottom:579.389200pt;}
.ya8{bottom:582.474133pt;}
.y26e{bottom:583.668800pt;}
.y107{bottom:584.271067pt;}
.y1e1{bottom:584.275200pt;}
.yd9{bottom:585.141067pt;}
.y1a1{bottom:585.266133pt;}
.y1c8{bottom:586.081733pt;}
.y301{bottom:587.129200pt;}
.y246{bottom:587.599467pt;}
.y12b{bottom:588.514667pt;}
.y2ba{bottom:589.161200pt;}
.y25b{bottom:589.306000pt;}
.y280{bottom:589.857733pt;}
.y179{bottom:590.043467pt;}
.y69{bottom:590.161200pt;}
.y87{bottom:590.487733pt;}
.y1bc{bottom:590.827867pt;}
.y2d1{bottom:591.036933pt;}
.y335{bottom:592.159733pt;}
.y29c{bottom:592.370267pt;}
.y18f{bottom:593.484400pt;}
.yc4{bottom:593.651067pt;}
.y45{bottom:595.617733pt;}
.y22b{bottom:595.619600pt;}
.y2e7{bottom:596.071600pt;}
.y161{bottom:597.389200pt;}
.ya7{bottom:600.740800pt;}
.y26d{bottom:601.668800pt;}
.y106{bottom:602.358133pt;}
.y1e0{bottom:602.361733pt;}
.y31c{bottom:602.802933pt;}
.yd8{bottom:603.141067pt;}
.y1c7{bottom:604.081733pt;}
.y245{bottom:605.599467pt;}
.y12a{bottom:606.514800pt;}
.y2b9{bottom:607.161200pt;}
.y25a{bottom:607.306000pt;}
.y27f{bottom:607.857733pt;}
.y178{bottom:608.043467pt;}
.y86{bottom:608.487733pt;}
.y1bb{bottom:608.827867pt;}
.y2d0{bottom:609.036933pt;}
.y29b{bottom:610.370267pt;}
.y18e{bottom:611.484400pt;}
.yc3{bottom:611.651067pt;}
.y1a0{bottom:612.203600pt;}
.y22a{bottom:612.286267pt;}
.ya{bottom:612.677067pt;}
.y144{bottom:612.882400pt;}
.y300{bottom:613.472667pt;}
.y44{bottom:613.672267pt;}
.y1fd{bottom:614.591733pt;}
.y160{bottom:615.389200pt;}
.y334{bottom:616.826400pt;}
.y22{bottom:618.770000pt;}
.ya6{bottom:619.007467pt;}
.y31b{bottom:619.469600pt;}
.y26c{bottom:619.668800pt;}
.y105{bottom:620.445067pt;}
.y1df{bottom:620.448267pt;}
.y68{bottom:621.141067pt;}
.y1c6{bottom:622.081733pt;}
.y2b8{bottom:625.161200pt;}
.y27e{bottom:625.857733pt;}
.y177{bottom:626.043467pt;}
.y85{bottom:626.487733pt;}
.y1ba{bottom:626.827867pt;}
.y2cf{bottom:627.036933pt;}
.y29a{bottom:628.370267pt;}
.y229{bottom:628.952933pt;}
.y18d{bottom:629.484400pt;}
.yc2{bottom:629.651067pt;}
.y2ff{bottom:630.139333pt;}
.y19f{bottom:630.203600pt;}
.y143{bottom:630.882400pt;}
.y43{bottom:631.726800pt;}
.y259{bottom:633.368400pt;}
.y15f{bottom:633.389200pt;}
.y333{bottom:633.493067pt;}
.y9{bottom:634.010400pt;}
.y244{bottom:634.036933pt;}
.y21{bottom:634.103333pt;}
.y31a{bottom:636.136267pt;}
.ya5{bottom:637.274133pt;}
.y26b{bottom:637.668800pt;}
.y104{bottom:638.532000pt;}
.y1de{bottom:638.534933pt;}
.y67{bottom:639.141067pt;}
.y1c5{bottom:640.081733pt;}
.y27d{bottom:643.857733pt;}
.y176{bottom:644.043467pt;}
.y84{bottom:644.487733pt;}
.y1b9{bottom:644.827867pt;}
.y2ce{bottom:645.036933pt;}
.y299{bottom:646.370267pt;}
.y2fe{bottom:646.806000pt;}
.y18c{bottom:647.484400pt;}
.yc1{bottom:647.651067pt;}
.y19e{bottom:648.203600pt;}
.y2e6{bottom:648.606400pt;}
.y142{bottom:648.882400pt;}
.y42{bottom:649.781333pt;}
.y332{bottom:650.159733pt;}
.y243{bottom:650.703600pt;}
.y15e{bottom:651.389200pt;}
.y228{bottom:651.548400pt;}
.y2b7{bottom:653.484400pt;}
.ya4{bottom:655.540933pt;}
.y26a{bottom:655.668800pt;}
.y103{bottom:656.619067pt;}
.y1dd{bottom:656.621467pt;}
.y66{bottom:657.141067pt;}
.y258{bottom:658.097467pt;}
.y20{bottom:659.845067pt;}
.y27c{bottom:661.857733pt;}
.y175{bottom:662.043467pt;}
.y83{bottom:662.487733pt;}
.y319{bottom:662.810667pt;}
.y1b8{bottom:662.827867pt;}
.y298{bottom:664.370267pt;}
.y18b{bottom:665.484400pt;}
.yc0{bottom:665.651067pt;}
.y1c4{bottom:666.159733pt;}
.y2e5{bottom:666.606400pt;}
.y141{bottom:666.882400pt;}
.y3c{bottom:667.178400pt;}
.y242{bottom:667.370267pt;}
.y41{bottom:667.835867pt;}
.y227{bottom:668.215067pt;}
.y15d{bottom:669.389200pt;}
.y2b6{bottom:670.151067pt;}
.y8{bottom:671.343733pt;}
.y2fd{bottom:673.149600pt;}
.ya3{bottom:673.807600pt;}
.y1fc{bottom:674.315867pt;}
.y102{bottom:674.706000pt;}
.y1dc{bottom:674.708133pt;}
.y257{bottom:674.764133pt;}
.y331{bottom:674.826400pt;}
.y65{bottom:675.141067pt;}
.y1f{bottom:675.178400pt;}
.y318{bottom:679.477333pt;}
.y174{bottom:680.043467pt;}
.y82{bottom:680.487733pt;}
.y297{bottom:682.370267pt;}
.y3b{bottom:682.511733pt;}
.y1c3{bottom:682.826400pt;}
.y18a{bottom:683.484400pt;}
.ybf{bottom:683.651067pt;}
.y241{bottom:684.036933pt;}
.y2e4{bottom:684.606400pt;}
.y140{bottom:684.882533pt;}
.y40{bottom:685.890400pt;}
.y2b5{bottom:686.817733pt;}
.y2fc{bottom:689.816267pt;}
.y1e{bottom:690.511733pt;}
.y256{bottom:691.430800pt;}
.y330{bottom:691.493067pt;}
.ya2{bottom:692.074267pt;}
.y269{bottom:692.404933pt;}
.y1fb{bottom:692.480933pt;}
.y7{bottom:692.677067pt;}
.y101{bottom:692.793067pt;}
.y1db{bottom:692.794667pt;}
.y64{bottom:693.141067pt;}
.y81{bottom:698.487733pt;}
.y15c{bottom:699.493067pt;}
.y296{bottom:700.370267pt;}
.y189{bottom:701.484400pt;}
.ybe{bottom:701.651067pt;}
.y2e3{bottom:702.606400pt;}
.y13f{bottom:702.882533pt;}
.y2b4{bottom:703.484400pt;}
.y3f{bottom:703.944933pt;}
.y1d{bottom:705.845067pt;}
.y317{bottom:706.152000pt;}
.y2fb{bottom:706.482933pt;}
.y32f{bottom:708.159733pt;}
.ya1{bottom:710.340933pt;}
.y1fa{bottom:710.645867pt;}
.y100{bottom:710.880000pt;}
.y1da{bottom:710.881200pt;}
.y63{bottom:711.141067pt;}
.y15b{bottom:716.159733pt;}
.y295{bottom:718.370267pt;}
.y188{bottom:719.484400pt;}
.ybd{bottom:719.651067pt;}
.y2b3{bottom:720.151067pt;}
.y2e2{bottom:720.606400pt;}
.y13e{bottom:720.882533pt;}
.y1c{bottom:721.178400pt;}
.y3e{bottom:721.999467pt;}
.y316{bottom:722.818667pt;}
.ya0{bottom:728.607600pt;}
.y1f9{bottom:728.810933pt;}
.yff{bottom:728.967067pt;}
.y1d9{bottom:728.967867pt;}
.y62{bottom:729.141067pt;}
.y6{bottom:730.010400pt;}
.y15a{bottom:732.826400pt;}
.y294{bottom:736.370267pt;}
.y1b{bottom:736.511733pt;}
.y9f{bottom:746.874400pt;}
.y1f8{bottom:746.976000pt;}
.yfe{bottom:747.054000pt;}
.y1d8{bottom:747.054400pt;}
.y61{bottom:747.141067pt;}
.y159{bottom:749.493067pt;}
.y1a{bottom:751.845067pt;}
.y5{bottom:758.010400pt;}
.y3d{bottom:763.613067pt;}
.y60{bottom:765.141067pt;}
.y158{bottom:766.159733pt;}
.y19{bottom:767.178400pt;}
.y18{bottom:804.656000pt;}
.y16{bottom:827.322533pt;}
.y17{bottom:832.656000pt;}
.ha{height:23.584000pt;}
.h10{height:27.789333pt;}
.h11{height:27.789867pt;}
.h4{height:33.948000pt;}
.hc{height:40.234667pt;}
.h8{height:42.749333pt;}
.h2{height:45.264000pt;}
.hd{height:45.312000pt;}
.h9{height:47.778667pt;}
.h13{height:50.186667pt;}
.h12{height:50.293333pt;}
.h7{height:52.808000pt;}
.h14{height:55.205333pt;}
.hf{height:55.322667pt;}
.he{height:62.933333pt;}
.h6{height:70.485333pt;}
.hb{height:90.528000pt;}
.h5{height:90.624000pt;}
.h3{height:891.968000pt;}
.h0{height:947.968000pt;}
.h1{height:948.000000pt;}
.w2{width:627.401333pt;}
.w1{width:683.333333pt;}
.w0{width:683.401333pt;}
.x0{left:0.000000pt;}
.x2{left:28.000000pt;}
.x9{left:52.671867pt;}
.x6{left:105.826667pt;}
.xc{left:114.929200pt;}
.x12{left:130.047200pt;}
.x5{left:133.826667pt;}
.xd{left:147.004533pt;}
.x17{left:148.944800pt;}
.x19{left:150.763600pt;}
.x18{left:152.724400pt;}
.xe{left:167.742267pt;}
.x1a{left:171.622000pt;}
.x1b{left:186.740133pt;}
.x1f{left:189.077600pt;}
.x8{left:235.542133pt;}
.x14{left:244.296933pt;}
.x7{left:250.752800pt;}
.x13{left:258.161200pt;}
.xa{left:267.794933pt;}
.x1{left:269.248933pt;}
.x3{left:286.693467pt;}
.x10{left:306.212533pt;}
.xb{left:314.091333pt;}
.xf{left:320.076800pt;}
.x1e{left:329.142933pt;}
.x4{left:332.990000pt;}
.x1c{left:348.814667pt;}
.x1d{left:357.382667pt;}
.x15{left:367.560933pt;}
.x11{left:429.476533pt;}
.x16{left:536.396933pt;}
}




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