
    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_68e14b6571cd25056a9f6446.woff')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_55208d81053971812356ca73.woff')format("woff");}.ff2{font-family:ff2;line-height:1.219000;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_aa300a535ebf54da06b35dc4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.880000;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_e5efe694ff8f534413356000.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_f779c801da4f9b720d131757.woff')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_455add2a1b2712be7dbb655e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.590000;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_16d166f8bb14b01001e9a1c7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.889000;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_4267f6251737204c6ee829c2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_8b26dbc18628fcb098eaee95.woff')format("woff");}.ff9{font-family:ff9;line-height:0.667000;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_f21f7a8ed42d73fb2b52b2b4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.154000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4b7db09845f05cd6140e07b1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.701000;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.247031,0.000000,-0.038413,0.247031,0,0);-ms-transform:matrix(0.247031,0.000000,-0.038413,0.247031,0,0);-webkit-transform:matrix(0.247031,0.000000,-0.038413,0.247031,0,0);}
.m2{transform:matrix(0.247037,0.000000,-0.038373,0.247037,0,0);-ms-transform:matrix(0.247037,0.000000,-0.038373,0.247037,0,0);-webkit-transform:matrix(0.247037,0.000000,-0.038373,0.247037,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(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.ls13{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.165000px;}
.ls3a{letter-spacing:0.171600px;}
.ls39{letter-spacing:0.174900px;}
.ls15{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.186000px;}
.lsa{letter-spacing:0.192000px;}
.ls8{letter-spacing:0.210000px;}
.lse{letter-spacing:0.225000px;}
.ls34{letter-spacing:0.234000px;}
.ls0{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.242884px;}
.ls35{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.273238px;}
.ls6{letter-spacing:0.276000px;}
.ls1a{letter-spacing:0.294000px;}
.ls3{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.306000px;}
.ls2{letter-spacing:0.315000px;}
.lsf{letter-spacing:0.384000px;}
.ls10{letter-spacing:0.393600px;}
.lsc{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.702000px;}
.ls1f{letter-spacing:0.734400px;}
.ls1e{letter-spacing:0.756000px;}
.lsb{letter-spacing:0.810000px;}
.lsd{letter-spacing:0.900000px;}
.ls23{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.134000px;}
.ls2d{letter-spacing:1.890000px;}
.ls4{letter-spacing:2.094000px;}
.ls26{letter-spacing:2.214000px;}
.ls11{letter-spacing:2.628000px;}
.ls12{letter-spacing:2.640000px;}
.ls3e{letter-spacing:9.542400px;}
.ls3f{letter-spacing:10.075200px;}
.ls36{letter-spacing:10.176000px;}
.ls3c{letter-spacing:10.416000px;}
.ls2c{letter-spacing:11.556000px;}
.ls38{letter-spacing:11.880000px;}
.ls3b{letter-spacing:12.720000px;}
.ls43{letter-spacing:12.888000px;}
.ls21{letter-spacing:13.581000px;}
.ls2a{letter-spacing:13.608000px;}
.ls31{letter-spacing:13.753800px;}
.ls20{letter-spacing:13.986000px;}
.ls25{letter-spacing:14.725800px;}
.ls3d{letter-spacing:14.736000px;}
.ls2f{letter-spacing:15.184800px;}
.ls37{letter-spacing:15.408000px;}
.ls27{letter-spacing:15.849000px;}
.ls41{letter-spacing:16.368000px;}
.ls29{letter-spacing:18.414000px;}
.ls22{letter-spacing:19.618200px;}
.ls14{letter-spacing:20.580000px;}
.ls7{letter-spacing:20.586000px;}
.ls33{letter-spacing:21.016800px;}
.ls42{letter-spacing:21.427200px;}
.ls30{letter-spacing:21.783600px;}
.ls32{letter-spacing:23.997600px;}
.ls40{letter-spacing:25.872000px;}
.ls2e{letter-spacing:29.106000px;}
.ls2b{letter-spacing:29.970000px;}
.ls1d{letter-spacing:31.860000px;}
.ls1b{letter-spacing:33.593400px;}
.ls28{letter-spacing:1006.311600px;}
.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;}
}
.ws89{word-spacing:-45.360000px;}
.ws93{word-spacing:-43.470000px;}
.wsa7{word-spacing:-42.606000px;}
.ws9{word-spacing:-35.580000px;}
.ws7f{word-spacing:-31.914000px;}
.ws161{word-spacing:-28.368000px;}
.ws8f{word-spacing:-27.486000px;}
.ws13e{word-spacing:-27.408000px;}
.ws91{word-spacing:-27.108000px;}
.ws13c{word-spacing:-26.736000px;}
.ws3{word-spacing:-26.691000px;}
.ws9c{word-spacing:-25.056000px;}
.ws134{word-spacing:-24.720000px;}
.ws4{word-spacing:-23.250000px;}
.ws138{word-spacing:-22.416000px;}
.ws9e{word-spacing:-15.390000px;}
.ws8b{word-spacing:-14.256000px;}
.ws1d{word-spacing:-13.770000px;}
.ws1{word-spacing:-12.240000px;}
.ws6{word-spacing:-11.565000px;}
.ws5f{word-spacing:-11.475000px;}
.ws7a{word-spacing:-10.794000px;}
.ws104{word-spacing:-9.252000px;}
.wsbd{word-spacing:-3.726000px;}
.ws12{word-spacing:-3.672000px;}
.ws92{word-spacing:-3.618000px;}
.ws146{word-spacing:-3.564000px;}
.ws42{word-spacing:-3.510000px;}
.wsad{word-spacing:-3.456000px;}
.ws144{word-spacing:-3.408000px;}
.ws15{word-spacing:-3.402000px;}
.ws17{word-spacing:-3.348000px;}
.ws2c{word-spacing:-3.294000px;}
.ws11b{word-spacing:-3.264000px;}
.ws73{word-spacing:-3.240000px;}
.ws17e{word-spacing:-3.216000px;}
.ws131{word-spacing:-3.186000px;}
.ws36{word-spacing:-3.132000px;}
.ws40{word-spacing:-3.078000px;}
.wsd0{word-spacing:-2.970000px;}
.ws153{word-spacing:-2.928000px;}
.ws180{word-spacing:-2.880000px;}
.ws1c{word-spacing:-2.862000px;}
.wsfe{word-spacing:-2.754000px;}
.wsac{word-spacing:-2.700000px;}
.wsbc{word-spacing:-2.646000px;}
.ws9b{word-spacing:-2.484000px;}
.wsbf{word-spacing:-2.430000px;}
.ws15b{word-spacing:-2.409600px;}
.ws15c{word-spacing:-2.400000px;}
.ws56{word-spacing:-2.343600px;}
.ws1a{word-spacing:-2.322000px;}
.ws139{word-spacing:-2.304000px;}
.ws41{word-spacing:-2.268000px;}
.ws122{word-spacing:-2.214000px;}
.wse4{word-spacing:-2.160000px;}
.wseb{word-spacing:-2.106000px;}
.ws137{word-spacing:-2.068800px;}
.ws136{word-spacing:-2.064000px;}
.ws152{word-spacing:-2.016000px;}
.ws120{word-spacing:-1.998000px;}
.wsa3{word-spacing:-1.944000px;}
.ws19b{word-spacing:-1.872000px;}
.wsa0{word-spacing:-1.782000px;}
.ws59{word-spacing:-1.728000px;}
.wscf{word-spacing:-1.620000px;}
.ws2d{word-spacing:-1.566000px;}
.ws14b{word-spacing:-1.536000px;}
.wsb5{word-spacing:-1.512000px;}
.ws199{word-spacing:-1.392000px;}
.ws86{word-spacing:-1.350000px;}
.wsb3{word-spacing:-1.296000px;}
.ws48{word-spacing:-1.242000px;}
.wsc2{word-spacing:-1.188000px;}
.ws15e{word-spacing:-1.152000px;}
.ws147{word-spacing:-1.134000px;}
.wsed{word-spacing:-1.080000px;}
.wscd{word-spacing:-1.026000px;}
.ws10c{word-spacing:-1.008000px;}
.ws51{word-spacing:-0.972000px;}
.ws101{word-spacing:-0.864000px;}
.ws11f{word-spacing:-0.756000px;}
.wsd8{word-spacing:-0.702000px;}
.ws185{word-spacing:-0.672000px;}
.ws127{word-spacing:-0.648000px;}
.ws142{word-spacing:-0.628800px;}
.ws141{word-spacing:-0.604800px;}
.wsf7{word-spacing:-0.594000px;}
.ws143{word-spacing:-0.576000px;}
.ws20{word-spacing:-0.486000px;}
.ws4e{word-spacing:-0.432000px;}
.ws6c{word-spacing:-0.378000px;}
.ws17f{word-spacing:-0.336000px;}
.wsf2{word-spacing:-0.324000px;}
.ws140{word-spacing:-0.288000px;}
.ws27{word-spacing:-0.270000px;}
.wsaa{word-spacing:-0.216000px;}
.wse5{word-spacing:-0.162000px;}
.ws68{word-spacing:-0.144000px;}
.ws99{word-spacing:-0.108000px;}
.ws62{word-spacing:-0.081600px;}
.ws54{word-spacing:-0.054000px;}
.ws61{word-spacing:-0.048000px;}
.ws55{word-spacing:-0.027000px;}
.wse{word-spacing:0.000000px;}
.ws18c{word-spacing:0.043200px;}
.ws10a{word-spacing:0.048000px;}
.ws52{word-spacing:0.048600px;}
.ws53{word-spacing:0.054000px;}
.ws69{word-spacing:0.096000px;}
.ws168{word-spacing:0.108000px;}
.ws1a0{word-spacing:0.144000px;}
.ws133{word-spacing:0.187200px;}
.ws8d{word-spacing:0.216000px;}
.ws132{word-spacing:0.240000px;}
.ws6e{word-spacing:0.324000px;}
.ws14{word-spacing:0.378000px;}
.ws164{word-spacing:0.384000px;}
.ws154{word-spacing:0.480000px;}
.ws121{word-spacing:0.486000px;}
.ws35{word-spacing:0.540000px;}
.ws105{word-spacing:0.624000px;}
.wsa4{word-spacing:0.648000px;}
.ws1a5{word-spacing:0.657600px;}
.ws108{word-spacing:0.672000px;}
.wsa5{word-spacing:0.696600px;}
.ws81{word-spacing:0.702000px;}
.ws114{word-spacing:0.720000px;}
.ws175{word-spacing:0.756000px;}
.ws5e{word-spacing:0.765000px;}
.ws10f{word-spacing:0.768000px;}
.wsf8{word-spacing:0.810000px;}
.ws148{word-spacing:0.864000px;}
.ws187{word-spacing:0.912000px;}
.wsa8{word-spacing:0.918000px;}
.wsdb{word-spacing:0.972000px;}
.ws98{word-spacing:1.026000px;}
.ws117{word-spacing:1.056000px;}
.ws174{word-spacing:1.080000px;}
.ws135{word-spacing:1.104000px;}
.ws49{word-spacing:1.134000px;}
.ws28{word-spacing:1.188000px;}
.ws196{word-spacing:1.200000px;}
.ws95{word-spacing:1.296000px;}
.ws159{word-spacing:1.392000px;}
.wsc7{word-spacing:1.404000px;}
.ws100{word-spacing:1.458000px;}
.ws15d{word-spacing:1.488000px;}
.ws97{word-spacing:1.512000px;}
.ws6f{word-spacing:1.566000px;}
.ws76{word-spacing:1.620000px;}
.wsb4{word-spacing:1.674000px;}
.ws82{word-spacing:1.728000px;}
.ws72{word-spacing:1.782000px;}
.wsc9{word-spacing:1.792800px;}
.wsc8{word-spacing:1.814400px;}
.ws188{word-spacing:1.824000px;}
.ws96{word-spacing:1.836000px;}
.ws14e{word-spacing:1.872000px;}
.wsfa{word-spacing:1.890000px;}
.ws155{word-spacing:1.968000px;}
.ws1b{word-spacing:2.052000px;}
.ws10d{word-spacing:2.064000px;}
.wse6{word-spacing:2.106000px;}
.ws33{word-spacing:2.160000px;}
.ws126{word-spacing:2.214000px;}
.ws13b{word-spacing:2.256000px;}
.ws110{word-spacing:2.304000px;}
.ws193{word-spacing:2.352000px;}
.ws7d{word-spacing:2.376000px;}
.ws13a{word-spacing:2.400000px;}
.ws16{word-spacing:2.484000px;}
.ws16f{word-spacing:2.592000px;}
.wscc{word-spacing:2.754000px;}
.ws5d{word-spacing:2.790000px;}
.ws3f{word-spacing:2.808000px;}
.ws3e{word-spacing:2.824200px;}
.ws6d{word-spacing:2.862000px;}
.ws15f{word-spacing:2.880000px;}
.wsf0{word-spacing:2.916000px;}
.ws13d{word-spacing:2.928000px;}
.ws23{word-spacing:2.970000px;}
.ws179{word-spacing:3.078000px;}
.ws25{word-spacing:3.132000px;}
.wsc3{word-spacing:3.186000px;}
.ws1a1{word-spacing:3.216000px;}
.ws39{word-spacing:3.294000px;}
.ws57{word-spacing:3.348000px;}
.ws1a3{word-spacing:3.379200px;}
.ws1a4{word-spacing:3.403200px;}
.ws13f{word-spacing:3.408000px;}
.ws106{word-spacing:3.456000px;}
.ws11{word-spacing:3.486000px;}
.ws21{word-spacing:3.510000px;}
.ws162{word-spacing:3.552000px;}
.wse0{word-spacing:3.618000px;}
.ws5{word-spacing:3.666000px;}
.ws43{word-spacing:3.672000px;}
.ws10{word-spacing:3.675000px;}
.ws8{word-spacing:3.690000px;}
.wsa{word-spacing:3.699000px;}
.wsb{word-spacing:3.702000px;}
.wsd{word-spacing:3.705000px;}
.wsc{word-spacing:3.711000px;}
.wsf{word-spacing:3.717000px;}
.ws60{word-spacing:3.735000px;}
.ws7c{word-spacing:3.780000px;}
.ws12e{word-spacing:3.834000px;}
.ws160{word-spacing:3.888000px;}
.ws197{word-spacing:3.921600px;}
.ws182{word-spacing:3.931200px;}
.ws181{word-spacing:3.936000px;}
.ws186{word-spacing:3.940800px;}
.ws130{word-spacing:3.942000px;}
.ws194{word-spacing:3.945600px;}
.ws19e{word-spacing:3.950400px;}
.ws19a{word-spacing:3.955200px;}
.ws19c{word-spacing:3.960000px;}
.ws183{word-spacing:3.964800px;}
.ws0{word-spacing:3.984000px;}
.ws19{word-spacing:4.104000px;}
.wsbb{word-spacing:4.158000px;}
.ws10e{word-spacing:4.176000px;}
.wsb0{word-spacing:4.212000px;}
.ws113{word-spacing:4.224000px;}
.ws16d{word-spacing:4.266000px;}
.ws2{word-spacing:4.278000px;}
.ws190{word-spacing:4.320000px;}
.ws7e{word-spacing:4.374000px;}
.wscb{word-spacing:4.476600px;}
.ws26{word-spacing:4.482000px;}
.ws17b{word-spacing:4.536000px;}
.wsea{word-spacing:4.698000px;}
.ws18d{word-spacing:4.752000px;}
.wsab{word-spacing:4.806000px;}
.wsfd{word-spacing:4.860000px;}
.wsd9{word-spacing:4.914000px;}
.ws8a{word-spacing:4.968000px;}
.ws7{word-spacing:4.980000px;}
.ws157{word-spacing:4.992000px;}
.ws22{word-spacing:5.076000px;}
.ws14d{word-spacing:5.088000px;}
.ws12f{word-spacing:5.184000px;}
.wsfb{word-spacing:5.238000px;}
.wse2{word-spacing:5.346000px;}
.ws192{word-spacing:5.424000px;}
.ws38{word-spacing:5.454000px;}
.wsdf{word-spacing:5.508000px;}
.ws3d{word-spacing:5.562000px;}
.wsc6{word-spacing:5.616000px;}
.ws4a{word-spacing:5.670000px;}
.ws191{word-spacing:5.712000px;}
.ws45{word-spacing:5.724000px;}
.ws3b{word-spacing:5.778000px;}
.ws107{word-spacing:5.808000px;}
.wsd6{word-spacing:5.832000px;}
.ws173{word-spacing:5.886000px;}
.wsa2{word-spacing:5.994000px;}
.ws102{word-spacing:6.048000px;}
.wsb1{word-spacing:6.156000px;}
.ws30{word-spacing:6.264000px;}
.ws4b{word-spacing:6.318000px;}
.ws115{word-spacing:6.528000px;}
.ws145{word-spacing:6.534000px;}
.wse1{word-spacing:6.588000px;}
.wsc4{word-spacing:6.642000px;}
.ws19d{word-spacing:6.720000px;}
.ws2b{word-spacing:6.750000px;}
.wsef{word-spacing:6.858000px;}
.ws18{word-spacing:6.912000px;}
.wsf9{word-spacing:6.966000px;}
.ws24{word-spacing:7.020000px;}
.wsf3{word-spacing:7.182000px;}
.wsc0{word-spacing:7.290000px;}
.ws165{word-spacing:7.296000px;}
.ws151{word-spacing:7.536000px;}
.wse7{word-spacing:7.560000px;}
.ws1a2{word-spacing:7.584000px;}
.ws4d{word-spacing:7.614000px;}
.ws64{word-spacing:7.632000px;}
.wsba{word-spacing:7.668000px;}
.wsd5{word-spacing:7.722000px;}
.ws195{word-spacing:7.728000px;}
.wsd4{word-spacing:7.749000px;}
.ws4c{word-spacing:7.776000px;}
.ws32{word-spacing:7.884000px;}
.wsd2{word-spacing:7.938000px;}
.ws2e{word-spacing:7.992000px;}
.ws1e{word-spacing:8.154000px;}
.ws19f{word-spacing:8.160000px;}
.ws47{word-spacing:8.262000px;}
.wsc1{word-spacing:8.316000px;}
.wse9{word-spacing:8.370000px;}
.ws15a{word-spacing:8.400000px;}
.ws129{word-spacing:8.478000px;}
.ws58{word-spacing:8.586000px;}
.ws156{word-spacing:8.592000px;}
.ws12c{word-spacing:8.694000px;}
.ws37{word-spacing:8.748000px;}
.ws118{word-spacing:8.928000px;}
.ws44{word-spacing:9.018000px;}
.ws14f{word-spacing:9.024000px;}
.ws167{word-spacing:9.072000px;}
.ws9f{word-spacing:9.126000px;}
.ws80{word-spacing:9.180000px;}
.ws67{word-spacing:9.216000px;}
.ws8c{word-spacing:9.450000px;}
.ws18a{word-spacing:9.499200px;}
.ws189{word-spacing:9.504000px;}
.ws111{word-spacing:9.648000px;}
.wsd3{word-spacing:9.666000px;}
.ws149{word-spacing:9.720000px;}
.ws5c{word-spacing:9.774000px;}
.ws125{word-spacing:9.828000px;}
.wsce{word-spacing:9.882000px;}
.ws184{word-spacing:9.888000px;}
.wsdc{word-spacing:9.936000px;}
.wsee{word-spacing:9.990000px;}
.wsae{word-spacing:10.044000px;}
.ws3a{word-spacing:10.152000px;}
.ws8e{word-spacing:10.206000px;}
.ws116{word-spacing:10.320000px;}
.wsb6{word-spacing:10.368000px;}
.ws11a{word-spacing:10.416000px;}
.ws65{word-spacing:10.656000px;}
.ws9d{word-spacing:10.746000px;}
.ws11c{word-spacing:10.800000px;}
.wsec{word-spacing:10.854000px;}
.ws79{word-spacing:10.908000px;}
.ws17d{word-spacing:10.992000px;}
.ws87{word-spacing:11.016000px;}
.ws34{word-spacing:11.070000px;}
.ws85{word-spacing:11.124000px;}
.ws18b{word-spacing:11.232000px;}
.ws12b{word-spacing:11.340000px;}
.ws158{word-spacing:11.424000px;}
.ws84{word-spacing:11.502000px;}
.ws17a{word-spacing:11.556000px;}
.ws112{word-spacing:11.760000px;}
.ws9a{word-spacing:11.772000px;}
.wse8{word-spacing:11.826000px;}
.ws198{word-spacing:11.856000px;}
.ws6b{word-spacing:11.934000px;}
.wsf1{word-spacing:12.150000px;}
.ws14c{word-spacing:12.288000px;}
.ws3c{word-spacing:12.312000px;}
.ws14a{word-spacing:12.420000px;}
.ws66{word-spacing:12.624000px;}
.wsb8{word-spacing:12.744000px;}
.wsbe{word-spacing:12.798000px;}
.ws16e{word-spacing:12.852000px;}
.ws12d{word-spacing:12.906000px;}
.ws90{word-spacing:13.068000px;}
.wsc5{word-spacing:13.122000px;}
.ws74{word-spacing:13.176000px;}
.wsde{word-spacing:13.338000px;}
.ws75{word-spacing:13.392000px;}
.ws70{word-spacing:13.500000px;}
.ws11d{word-spacing:13.716000px;}
.ws163{word-spacing:13.728000px;}
.wsb9{word-spacing:13.770000px;}
.ws123{word-spacing:13.824000px;}
.ws78{word-spacing:13.932000px;}
.ws4f{word-spacing:13.986000px;}
.ws119{word-spacing:14.208000px;}
.wsb2{word-spacing:14.310000px;}
.ws13{word-spacing:14.364000px;}
.ws1f{word-spacing:14.688000px;}
.wsdd{word-spacing:14.904000px;}
.ws128{word-spacing:14.958000px;}
.wsa6{word-spacing:15.066000px;}
.ws176{word-spacing:15.174000px;}
.wsda{word-spacing:15.228000px;}
.ws109{word-spacing:15.504000px;}
.ws10b{word-spacing:15.648000px;}
.ws71{word-spacing:15.660000px;}
.ws172{word-spacing:15.714000px;}
.wsaf{word-spacing:15.768000px;}
.ws11e{word-spacing:15.822000px;}
.ws94{word-spacing:15.930000px;}
.ws124{word-spacing:15.984000px;}
.ws83{word-spacing:16.092000px;}
.ws5b{word-spacing:16.254000px;}
.ws169{word-spacing:16.362000px;}
.ws170{word-spacing:16.632000px;}
.ws12a{word-spacing:16.794000px;}
.wse3{word-spacing:16.902000px;}
.ws18f{word-spacing:16.982400px;}
.ws18e{word-spacing:16.992000px;}
.wsfc{word-spacing:17.064000px;}
.wsd7{word-spacing:17.118000px;}
.ws29{word-spacing:17.226000px;}
.ws150{word-spacing:17.424000px;}
.wsff{word-spacing:17.604000px;}
.ws17c{word-spacing:17.712000px;}
.ws88{word-spacing:17.820000px;}
.ws16b{word-spacing:17.874000px;}
.ws63{word-spacing:17.904000px;}
.ws2a{word-spacing:17.928000px;}
.wsf5{word-spacing:18.014400px;}
.wsf6{word-spacing:18.036000px;}
.wsf4{word-spacing:18.041400px;}
.ws5a{word-spacing:18.306000px;}
.wsa1{word-spacing:18.468000px;}
.wsd1{word-spacing:18.576000px;}
.ws77{word-spacing:18.684000px;}
.ws31{word-spacing:18.738000px;}
.wsa9{word-spacing:18.792000px;}
.ws178{word-spacing:18.937800px;}
.ws177{word-spacing:18.954000px;}
.ws46{word-spacing:19.008000px;}
.wsca{word-spacing:19.062000px;}
.ws103{word-spacing:19.332000px;}
.ws166{word-spacing:19.386000px;}
.ws7b{word-spacing:19.548000px;}
.ws171{word-spacing:19.710000px;}
.ws16c{word-spacing:19.818000px;}
.ws16a{word-spacing:19.926000px;}
.ws50{word-spacing:20.088000px;}
.wsb7{word-spacing:20.142000px;}
.ws2f{word-spacing:20.196000px;}
.ws6a{word-spacing:22.464000px;}
._8{margin-left:-31.485600px;}
._b{margin-left:-29.700000px;}
._a{margin-left:-28.080000px;}
._3{margin-left:-20.718000px;}
._7{margin-left:-18.198000px;}
._15{margin-left:-15.724800px;}
._14{margin-left:-14.491200px;}
._9{margin-left:-12.866400px;}
._c{margin-left:-10.888200px;}
._13{margin-left:-9.463800px;}
._12{margin-left:-7.611000px;}
._4{margin-left:-1.630800px;}
._0{width:1.440000px;}
._2{width:2.880000px;}
._1{width:4.320000px;}
._6{width:5.410800px;}
._e{width:9.828000px;}
._10{width:19.488000px;}
._11{width:28.170000px;}
._f{width:48.216000px;}
._d{width:107.029800px;}
._5{width:109.260000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:33.000000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:48.576860px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:54.647585px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:93.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:26.250000px;}
.y1f9{bottom:54.622500px;}
.y67{bottom:54.750000px;}
.yd7{bottom:54.750300px;}
.y114{bottom:54.751950px;}
.y1ad{bottom:54.756300px;}
.y1c6{bottom:54.762750px;}
.y12d{bottom:54.763500px;}
.y174{bottom:54.767550px;}
.y12c{bottom:67.921500px;}
.y1f8{bottom:68.122500px;}
.yd6{bottom:69.750150px;}
.y113{bottom:69.751800px;}
.y1ac{bottom:69.773700px;}
.y12b{bottom:69.804150px;}
.y173{bottom:69.972600px;}
.y1e5{bottom:70.131450px;}
.y1c5{bottom:70.461900px;}
.y71{bottom:70.500000px;}
.y66{bottom:73.500000px;}
.y73{bottom:75.000000px;}
.y70{bottom:80.250000px;}
.y1f7{bottom:81.622500px;}
.yd4{bottom:84.750000px;}
.yd3{bottom:84.750150px;}
.y112{bottom:84.751650px;}
.y1ab{bottom:84.791100px;}
.y12a{bottom:84.837750px;}
.y172{bottom:85.177650px;}
.y1e4{bottom:85.506600px;}
.y1c4{bottom:86.161050px;}
.y65{bottom:87.000000px;}
.yd5{bottom:89.250000px;}
.y6f{bottom:93.000000px;}
.y1f6{bottom:95.122500px;}
.yd1{bottom:97.875000px;}
.yd2{bottom:99.750000px;}
.yd0{bottom:99.750750px;}
.y111{bottom:99.751500px;}
.y1aa{bottom:99.808500px;}
.y129{bottom:99.871350px;}
.y171{bottom:100.382700px;}
.y64{bottom:100.500000px;}
.y1e3{bottom:100.881750px;}
.y1c3{bottom:101.860200px;}
.y6e{bottom:105.750000px;}
.y1f5{bottom:108.622500px;}
.ycf{bottom:114.750600px;}
.y110{bottom:114.751350px;}
.y1a9{bottom:114.825900px;}
.y128{bottom:114.904950px;}
.y170{bottom:115.587750px;}
.y1e2{bottom:116.256900px;}
.y1c2{bottom:117.559350px;}
.y6c{bottom:118.500000px;}
.y1f4{bottom:122.122500px;}
.y6d{bottom:122.250000px;}
.yce{bottom:129.750450px;}
.y10f{bottom:129.751200px;}
.y1a8{bottom:129.843300px;}
.y127{bottom:129.938550px;}
.y16f{bottom:130.809000px;}
.y6b{bottom:131.250000px;}
.y1e1{bottom:131.632050px;}
.y1c1{bottom:133.258500px;}
.y3b{bottom:135.000000px;}
.y1f3{bottom:135.622500px;}
.y6a{bottom:144.000000px;}
.ycd{bottom:144.750300px;}
.y10e{bottom:144.751050px;}
.y1a7{bottom:144.860700px;}
.y126{bottom:144.972150px;}
.y16e{bottom:146.030250px;}
.y1e0{bottom:147.007200px;}
.y1f2{bottom:147.622500px;}
.y1c0{bottom:148.957650px;}
.y1f1{bottom:149.122500px;}
.y3a{bottom:150.187500px;}
.y69{bottom:156.750000px;}
.ycc{bottom:159.750150px;}
.y10d{bottom:159.750900px;}
.y1a6{bottom:159.878100px;}
.y125{bottom:160.005750px;}
.y16d{bottom:161.251500px;}
.y1df{bottom:162.382350px;}
.y1f0{bottom:162.622500px;}
.y1bf{bottom:164.656800px;}
.y39{bottom:165.375000px;}
.y68{bottom:169.500000px;}
.ycb{bottom:174.750000px;}
.y10c{bottom:174.750750px;}
.yca{bottom:174.751050px;}
.y1a4{bottom:174.894900px;}
.y1a5{bottom:174.895500px;}
.y124{bottom:175.039350px;}
.y1ef{bottom:176.122500px;}
.y16c{bottom:176.472750px;}
.y1de{bottom:177.757500px;}
.y1be{bottom:180.372150px;}
.y38{bottom:180.562500px;}
.y1ee{bottom:189.622500px;}
.y10b{bottom:189.750600px;}
.yc9{bottom:189.750900px;}
.y1a3{bottom:189.912300px;}
.y123{bottom:190.072950px;}
.y16b{bottom:191.694000px;}
.y1dd{bottom:193.132650px;}
.y37{bottom:195.750000px;}
.y1bd{bottom:196.087500px;}
.y1ed{bottom:203.122500px;}
.y63{bottom:203.251650px;}
.y10a{bottom:204.750450px;}
.yc8{bottom:204.750750px;}
.y1a2{bottom:204.945900px;}
.y122{bottom:205.106550px;}
.y16a{bottom:206.915250px;}
.y1dc{bottom:208.507800px;}
.y36{bottom:210.937500px;}
.y1bc{bottom:211.802850px;}
.y1ec{bottom:216.622500px;}
.y62{bottom:218.745600px;}
.y109{bottom:219.750300px;}
.yc7{bottom:219.750600px;}
.y1a1{bottom:219.979500px;}
.y121{bottom:220.140150px;}
.y169{bottom:222.136500px;}
.y1db{bottom:223.882950px;}
.y35{bottom:226.125000px;}
.y1bb{bottom:227.518200px;}
.y1eb{bottom:230.122500px;}
.y61{bottom:234.239550px;}
.y108{bottom:234.750150px;}
.yc6{bottom:234.750450px;}
.y1a0{bottom:235.014000px;}
.y19f{bottom:235.015800px;}
.y120{bottom:235.173750px;}
.y168{bottom:237.357750px;}
.y1da{bottom:239.274300px;}
.y34{bottom:241.312500px;}
.y1ba{bottom:243.233550px;}
.y1ea{bottom:243.622500px;}
.y60{bottom:249.733500px;}
.y5f{bottom:249.735900px;}
.y107{bottom:249.750000px;}
.yc5{bottom:249.750300px;}
.y19e{bottom:250.049400px;}
.y11f{bottom:250.207350px;}
.y167{bottom:252.579000px;}
.y1d9{bottom:254.667000px;}
.y33{bottom:256.500000px;}
.y1e9{bottom:257.122500px;}
.y1b9{bottom:258.948900px;}
.yc4{bottom:264.750150px;}
.y19d{bottom:265.083000px;}
.y19b{bottom:265.084200px;}
.y5e{bottom:265.229850px;}
.y11e{bottom:265.240950px;}
.y282{bottom:265.480800px;}
.y243{bottom:265.500000px;}
.y166{bottom:267.800250px;}
.y19c{bottom:269.583000px;}
.y1e8{bottom:270.622500px;}
.y32{bottom:271.687500px;}
.y1b8{bottom:274.664250px;}
.y281{bottom:278.793600px;}
.y242{bottom:279.000000px;}
.yc3{bottom:279.750000px;}
.yc2{bottom:279.750450px;}
.y106{bottom:279.750750px;}
.y19a{bottom:280.117800px;}
.y11d{bottom:280.274550px;}
.y5d{bottom:280.723800px;}
.y20f{bottom:282.417000px;}
.y165{bottom:283.021500px;}
.y1e7{bottom:284.122500px;}
.y31{bottom:286.875000px;}
.y1b7{bottom:290.379600px;}
.y280{bottom:292.106400px;}
.y241{bottom:292.500000px;}
.yc1{bottom:294.750300px;}
.y105{bottom:294.750600px;}
.y199{bottom:295.151400px;}
.y11c{bottom:295.308150px;}
.y20d{bottom:295.917000px;}
.y5c{bottom:296.217750px;}
.y1e6{bottom:297.622500px;}
.y164{bottom:298.242750px;}
.y20e{bottom:299.667000px;}
.y30{bottom:302.062500px;}
.y27f{bottom:305.419200px;}
.y240{bottom:306.000000px;}
.y1b6{bottom:306.094950px;}
.y20c{bottom:309.417000px;}
.yc0{bottom:309.750150px;}
.y104{bottom:309.750450px;}
.y198{bottom:310.185000px;}
.y197{bottom:310.187400px;}
.y11b{bottom:310.341750px;}
.y5b{bottom:311.711700px;}
.y163{bottom:313.464000px;}
.y2f{bottom:317.250000px;}
.y27e{bottom:318.732000px;}
.y1b5{bottom:321.810300px;}
.y20b{bottom:322.917000px;}
.ybf{bottom:324.750000px;}
.ybe{bottom:324.750300px;}
.y196{bottom:325.221000px;}
.y11a{bottom:325.392900px;}
.y5a{bottom:327.205650px;}
.y162{bottom:328.685250px;}
.y27d{bottom:332.044800px;}
.y2e{bottom:332.437500px;}
.y23f{bottom:334.500000px;}
.y20a{bottom:336.417000px;}
.y1b4{bottom:337.525650px;}
.ybd{bottom:339.750150px;}
.y195{bottom:340.254600px;}
.y119{bottom:340.444050px;}
.y59{bottom:342.699600px;}
.y161{bottom:343.906500px;}
.y27c{bottom:345.357600px;}
.y2d{bottom:347.625000px;}
.y23e{bottom:348.000000px;}
.y209{bottom:349.917000px;}
.y1b2{bottom:351.366000px;}
.y1b3{bottom:353.241000px;}
.y1b1{bottom:353.241300px;}
.ybc{bottom:354.750000px;}
.ybb{bottom:354.750150px;}
.y103{bottom:354.751050px;}
.y194{bottom:355.288200px;}
.y118{bottom:355.495200px;}
.y58{bottom:358.193550px;}
.y27b{bottom:358.670400px;}
.y160{bottom:359.127750px;}
.y23d{bottom:361.500000px;}
.y2c{bottom:362.812500px;}
.y208{bottom:363.417000px;}
.y1b0{bottom:368.956650px;}
.yba{bottom:369.750000px;}
.yb9{bottom:369.750150px;}
.y102{bottom:369.750900px;}
.y193{bottom:370.321800px;}
.y117{bottom:370.546350px;}
.y27a{bottom:371.983200px;}
.y57{bottom:373.687500px;}
.y15f{bottom:374.349000px;}
.y23c{bottom:375.000000px;}
.y207{bottom:376.917000px;}
.y2b{bottom:378.000000px;}
.yb7{bottom:382.875000px;}
.y1af{bottom:384.672000px;}
.yb8{bottom:384.750000px;}
.y101{bottom:384.750750px;}
.yb6{bottom:384.751050px;}
.y279{bottom:385.296000px;}
.y192{bottom:385.355400px;}
.y116{bottom:385.597500px;}
.y23b{bottom:388.500000px;}
.y15e{bottom:389.570250px;}
.y206{bottom:390.417000px;}
.y2a{bottom:393.187500px;}
.y56{bottom:396.682500px;}
.y278{bottom:398.608800px;}
.y100{bottom:399.750600px;}
.yb5{bottom:399.750900px;}
.y1ae{bottom:400.387350px;}
.y191{bottom:400.389000px;}
.y23a{bottom:402.000000px;}
.y205{bottom:403.917000px;}
.y15d{bottom:404.791500px;}
.y29{bottom:408.375000px;}
.y277{bottom:411.921600px;}
.y18f{bottom:413.347500px;}
.yff{bottom:414.750450px;}
.yb4{bottom:414.750750px;}
.y239{bottom:415.500000px;}
.y204{bottom:417.417000px;}
.y15c{bottom:420.012750px;}
.y28{bottom:423.562500px;}
.y276{bottom:425.234400px;}
.y18e{bottom:426.847500px;}
.y1d8{bottom:428.139000px;}
.yfe{bottom:429.750300px;}
.yb3{bottom:429.750600px;}
.y203{bottom:430.917000px;}
.y55{bottom:434.680050px;}
.y15b{bottom:435.234000px;}
.y275{bottom:438.547200px;}
.y27{bottom:438.750000px;}
.y18d{bottom:440.347500px;}
.y1d7{bottom:441.639000px;}
.y202{bottom:444.417000px;}
.yfd{bottom:444.750150px;}
.yb2{bottom:444.750450px;}
.y238{bottom:444.751200px;}
.y54{bottom:450.174000px;}
.y15a{bottom:450.455250px;}
.y274{bottom:451.860000px;}
.y18c{bottom:453.847500px;}
.y26{bottom:453.937500px;}
.y1d5{bottom:455.139000px;}
.y201{bottom:456.417000px;}
.y200{bottom:457.917000px;}
.y1d6{bottom:458.889000px;}
.yfc{bottom:459.750000px;}
.yb1{bottom:459.750300px;}
.yfb{bottom:459.750750px;}
.y237{bottom:459.751050px;}
.y273{bottom:465.172800px;}
.y53{bottom:465.667950px;}
.y159{bottom:465.676500px;}
.y18b{bottom:467.347500px;}
.y1d4{bottom:468.639000px;}
.y24{bottom:469.125000px;}
.y1ff{bottom:471.417000px;}
.y25{bottom:473.625000px;}
.yb0{bottom:474.750150px;}
.yfa{bottom:474.750600px;}
.y236{bottom:474.750900px;}
.y272{bottom:478.485600px;}
.y189{bottom:480.847500px;}
.y158{bottom:480.897750px;}
.y52{bottom:481.161900px;}
.y1d3{bottom:482.139000px;}
.y1fe{bottom:483.417000px;}
.y18a{bottom:484.597500px;}
.y1fd{bottom:484.917000px;}
.yae{bottom:487.875000px;}
.yaf{bottom:489.750000px;}
.yf9{bottom:489.750450px;}
.yad{bottom:489.750600px;}
.y235{bottom:489.750750px;}
.y271{bottom:491.798400px;}
.y188{bottom:494.347500px;}
.y1d1{bottom:495.639000px;}
.y157{bottom:496.119000px;}
.y51{bottom:496.655850px;}
.y1fc{bottom:498.417000px;}
.y1d2{bottom:499.389000px;}
.y23{bottom:502.494450px;}
.yf8{bottom:504.750300px;}
.yac{bottom:504.750450px;}
.y234{bottom:504.750600px;}
.y270{bottom:505.111200px;}
.y187{bottom:507.847500px;}
.y1d0{bottom:509.139000px;}
.y156{bottom:511.340250px;}
.y1fb{bottom:511.917000px;}
.y50{bottom:512.149800px;}
.y22{bottom:517.681950px;}
.y26f{bottom:518.424000px;}
.yf7{bottom:519.750150px;}
.yab{bottom:519.750300px;}
.y233{bottom:519.750450px;}
.y186{bottom:521.347500px;}
.y1cf{bottom:522.639000px;}
.y1fa{bottom:525.417000px;}
.y155{bottom:526.561500px;}
.y4f{bottom:527.643750px;}
.y26e{bottom:531.736800px;}
.y21{bottom:532.869450px;}
.yf6{bottom:534.750000px;}
.yaa{bottom:534.750150px;}
.y232{bottom:534.750300px;}
.y184{bottom:534.847500px;}
.y1ce{bottom:536.139000px;}
.y185{bottom:538.597500px;}
.y154{bottom:541.782750px;}
.y4e{bottom:543.137700px;}
.y26d{bottom:545.049600px;}
.y20{bottom:548.056950px;}
.y1cd{bottom:548.139000px;}
.y183{bottom:548.347500px;}
.y1cc{bottom:549.639000px;}
.ya9{bottom:549.750000px;}
.yf5{bottom:549.750150px;}
.ya8{bottom:549.750300px;}
.y153{bottom:557.004000px;}
.y26c{bottom:558.362400px;}
.y4d{bottom:558.631650px;}
.y182{bottom:561.847500px;}
.y1cb{bottom:563.139000px;}
.y1f{bottom:563.244450px;}
.yf4{bottom:564.750000px;}
.ya7{bottom:564.750150px;}
.y231{bottom:564.755250px;}
.y26b{bottom:571.675200px;}
.y152{bottom:572.225250px;}
.y4c{bottom:574.125600px;}
.y181{bottom:575.347500px;}
.y1ca{bottom:576.639000px;}
.ya5{bottom:577.875000px;}
.y1e{bottom:578.431950px;}
.ya6{bottom:579.750000px;}
.ya4{bottom:579.750600px;}
.yf2{bottom:579.751500px;}
.y230{bottom:579.755100px;}
.yf3{bottom:584.250000px;}
.y26a{bottom:584.988000px;}
.y151{bottom:587.446500px;}
.y180{bottom:588.847500px;}
.y4b{bottom:589.619550px;}
.y1c8{bottom:590.139000px;}
.y1d{bottom:593.619450px;}
.y1c9{bottom:593.889000px;}
.ya3{bottom:594.750450px;}
.yf1{bottom:594.751350px;}
.y22f{bottom:594.754950px;}
.y269{bottom:598.300800px;}
.y17f{bottom:602.347500px;}
.y150{bottom:602.667750px;}
.y1c7{bottom:603.639000px;}
.y4a{bottom:605.113500px;}
.y1c{bottom:608.806950px;}
.ya2{bottom:609.750300px;}
.yf0{bottom:609.751200px;}
.y22e{bottom:609.754800px;}
.y268{bottom:611.613600px;}
.y17e{bottom:615.847500px;}
.y14f{bottom:617.889000px;}
.y49{bottom:620.625000px;}
.y1b{bottom:623.994450px;}
.ya1{bottom:624.750150px;}
.yef{bottom:624.751050px;}
.y22d{bottom:624.754650px;}
.y267{bottom:624.926400px;}
.y17d{bottom:629.347500px;}
.y14e{bottom:633.110250px;}
.y48{bottom:636.136500px;}
.y266{bottom:638.239200px;}
.y1a{bottom:639.199500px;}
.ya0{bottom:639.750000px;}
.y9f{bottom:639.750150px;}
.yee{bottom:639.750900px;}
.y22c{bottom:639.754500px;}
.y17c{bottom:642.847500px;}
.y14d{bottom:648.331500px;}
.y265{bottom:651.552000px;}
.y45{bottom:651.646350px;}
.y47{bottom:651.648000px;}
.y19{bottom:654.404550px;}
.y9e{bottom:654.750000px;}
.y9d{bottom:654.750300px;}
.yed{bottom:654.750750px;}
.y22b{bottom:654.754350px;}
.y46{bottom:656.148000px;}
.y17b{bottom:656.347500px;}
.y14c{bottom:663.552750px;}
.y264{bottom:664.864800px;}
.y44{bottom:667.157850px;}
.y18{bottom:669.609600px;}
.y9c{bottom:669.750150px;}
.yec{bottom:669.750600px;}
.y22a{bottom:669.754200px;}
.y17a{bottom:669.847500px;}
.y263{bottom:678.177600px;}
.y14b{bottom:678.774000px;}
.y43{bottom:682.669350px;}
.y179{bottom:683.347500px;}
.y9b{bottom:684.750000px;}
.y9a{bottom:684.750150px;}
.yeb{bottom:684.750450px;}
.y229{bottom:684.754050px;}
.y17{bottom:684.814650px;}
.y262{bottom:691.490400px;}
.y14a{bottom:693.995250px;}
.y178{bottom:696.847500px;}
.y42{bottom:698.180850px;}
.y99{bottom:699.750000px;}
.y98{bottom:699.750300px;}
.y228{bottom:699.753900px;}
.y16{bottom:700.019700px;}
.y261{bottom:704.803200px;}
.y149{bottom:709.216500px;}
.y177{bottom:710.347500px;}
.y41{bottom:713.692350px;}
.y97{bottom:714.750150px;}
.y227{bottom:714.753750px;}
.y15{bottom:715.224750px;}
.y260{bottom:718.116000px;}
.y176{bottom:723.847500px;}
.y148{bottom:724.437750px;}
.y40{bottom:729.203850px;}
.y96{bottom:729.750000px;}
.y226{bottom:729.753600px;}
.y14{bottom:730.429800px;}
.y25f{bottom:731.428800px;}
.y175{bottom:737.347500px;}
.y147{bottom:739.659000px;}
.y3f{bottom:744.715350px;}
.y25e{bottom:744.741600px;}
.y95{bottom:744.750600px;}
.y225{bottom:744.753450px;}
.y13{bottom:745.634850px;}
.yea{bottom:752.250000px;}
.y146{bottom:754.880250px;}
.y25d{bottom:758.054400px;}
.y94{bottom:759.750450px;}
.y224{bottom:759.753300px;}
.y3e{bottom:760.226850px;}
.y12{bottom:760.839900px;}
.y145{bottom:770.101500px;}
.y25c{bottom:771.367200px;}
.y93{bottom:774.750300px;}
.y223{bottom:774.753150px;}
.y3d{bottom:775.738350px;}
.y11{bottom:776.044950px;}
.y25b{bottom:784.680000px;}
.y144{bottom:785.322750px;}
.y92{bottom:789.750150px;}
.ye9{bottom:789.750450px;}
.y222{bottom:789.753000px;}
.y3c{bottom:791.249850px;}
.y10{bottom:791.250000px;}
.y25a{bottom:797.992800px;}
.y143{bottom:800.544000px;}
.y91{bottom:804.750000px;}
.y90{bottom:804.750300px;}
.y221{bottom:804.752850px;}
.y259{bottom:811.288800px;}
.y142{bottom:815.765250px;}
.y8f{bottom:819.750150px;}
.y220{bottom:819.752700px;}
.y258{bottom:824.584800px;}
.yf{bottom:828.000000px;}
.y141{bottom:830.986500px;}
.y8e{bottom:834.750000px;}
.y8d{bottom:834.750900px;}
.y21f{bottom:834.752550px;}
.y257{bottom:837.880800px;}
.ye{bottom:841.500000px;}
.y140{bottom:846.207750px;}
.y8c{bottom:849.750750px;}
.y21e{bottom:849.752400px;}
.y256{bottom:851.176800px;}
.y13f{bottom:861.429000px;}
.y255{bottom:864.472800px;}
.y8b{bottom:864.750600px;}
.y21d{bottom:864.752250px;}
.yd{bottom:867.750600px;}
.y13e{bottom:876.650250px;}
.y254{bottom:877.768800px;}
.yc{bottom:879.749550px;}
.y8a{bottom:879.750450px;}
.y21c{bottom:879.752100px;}
.y253{bottom:891.063600px;}
.yb{bottom:891.749550px;}
.y13d{bottom:891.871500px;}
.y89{bottom:894.750300px;}
.y21b{bottom:894.751950px;}
.ya{bottom:903.750000px;}
.y252{bottom:904.359600px;}
.y13c{bottom:907.092750px;}
.y88{bottom:909.750150px;}
.y21a{bottom:909.751800px;}
.y251{bottom:917.655600px;}
.y13b{bottom:922.314000px;}
.ye8{bottom:922.875000px;}
.y86{bottom:924.750000px;}
.ye7{bottom:924.750450px;}
.y219{bottom:924.751650px;}
.y9{bottom:926.250000px;}
.y87{bottom:929.250000px;}
.y250{bottom:930.951600px;}
.y13a{bottom:937.535250px;}
.y85{bottom:939.750000px;}
.ye6{bottom:939.750300px;}
.y83{bottom:939.751050px;}
.y218{bottom:939.751500px;}
.y8{bottom:942.750000px;}
.y24f{bottom:944.247600px;}
.y84{bottom:944.250000px;}
.y139{bottom:952.756500px;}
.ye5{bottom:954.750150px;}
.y82{bottom:954.750900px;}
.y217{bottom:954.751350px;}
.y24e{bottom:957.542400px;}
.y138{bottom:967.977750px;}
.ye4{bottom:969.750000px;}
.y81{bottom:969.750750px;}
.y216{bottom:969.751200px;}
.y24d{bottom:970.838400px;}
.y7{bottom:974.247075px;}
.y136{bottom:981.324000px;}
.y137{bottom:983.199000px;}
.y135{bottom:983.201700px;}
.y24c{bottom:984.134400px;}
.ye3{bottom:984.750150px;}
.y80{bottom:984.750600px;}
.y215{bottom:984.751050px;}
.y24b{bottom:997.430400px;}
.y6{bottom:998.248050px;}
.y134{bottom:998.422950px;}
.ye2{bottom:999.750000px;}
.ye1{bottom:999.750150px;}
.y7f{bottom:999.750450px;}
.y214{bottom:999.750900px;}
.y24a{bottom:1010.726400px;}
.y133{bottom:1013.644200px;}
.ye0{bottom:1014.750000px;}
.yde{bottom:1014.750150px;}
.y7e{bottom:1014.750300px;}
.y213{bottom:1014.750750px;}
.ydf{bottom:1019.250000px;}
.y5{bottom:1022.249025px;}
.y249{bottom:1024.022400px;}
.y132{bottom:1028.865450px;}
.ydd{bottom:1029.750000px;}
.y7d{bottom:1029.750150px;}
.y212{bottom:1029.750600px;}
.ydc{bottom:1029.751350px;}
.y248{bottom:1037.318400px;}
.y131{bottom:1044.086700px;}
.y7c{bottom:1044.750000px;}
.y7a{bottom:1044.750300px;}
.y211{bottom:1044.750450px;}
.ydb{bottom:1044.751200px;}
.y4{bottom:1046.250000px;}
.y7b{bottom:1049.250000px;}
.y247{bottom:1050.613200px;}
.y130{bottom:1059.307950px;}
.y79{bottom:1059.750150px;}
.y210{bottom:1059.750300px;}
.yda{bottom:1059.751050px;}
.y246{bottom:1063.909200px;}
.y12f{bottom:1074.529200px;}
.y78{bottom:1074.750000px;}
.y76{bottom:1074.750150px;}
.yd9{bottom:1074.750900px;}
.y245{bottom:1077.205200px;}
.y77{bottom:1079.250000px;}
.y74{bottom:1089.750000px;}
.y12e{bottom:1089.750450px;}
.yd8{bottom:1089.750750px;}
.y244{bottom:1090.500000px;}
.y75{bottom:1094.250000px;}
.y3{bottom:1101.000000px;}
.y2{bottom:1113.000000px;}
.y190{bottom:1122.750000px;}
.y115{bottom:1122.751800px;}
.y1{bottom:1125.000000px;}
.h16{height:20.394000px;}
.hc{height:22.248000px;}
.h12{height:24.024000px;}
.h18{height:25.047000px;}
.h15{height:25.247184px;}
.he{height:26.208000px;}
.h17{height:31.779000px;}
.h11{height:32.983688px;}
.h14{height:34.668000px;}
.h1{height:34.944000px;}
.hd{height:37.105710px;}
.h9{height:37.584000px;}
.h8{height:40.446000px;}
.ha{height:40.986000px;}
.hf{height:41.760000px;}
.h10{height:43.335000px;}
.h2{height:46.224000px;}
.h6{height:46.668000px;}
.h7{height:46.669800px;}
.h13{height:47.109375px;}
.hb{height:52.002000px;}
.h5{height:64.002000px;}
.h3{height:65.100000px;}
.h4{height:70.587000px;}
.h0{height:1188.000000px;}
.w0{width:864.000000px;}
.x0{left:0.000000px;}
.x15{left:19.500000px;}
.x1{left:60.000000px;}
.x8a{left:66.060000px;}
.x7e{left:68.064000px;}
.x29{left:71.676000px;}
.x7{left:73.498800px;}
.x30{left:77.172000px;}
.x2a{left:80.748000px;}
.x31{left:82.095000px;}
.x2{left:87.406500px;}
.x1d{left:94.224000px;}
.x6c{left:95.736000px;}
.x3{left:98.953500px;}
.x1f{left:100.134000px;}
.x32{left:103.506000px;}
.x4{left:106.672500px;}
.x33{left:108.429000px;}
.x3f{left:112.221000px;}
.x18{left:114.160500px;}
.x22{left:122.685000px;}
.x2b{left:126.943500px;}
.x66{left:128.482500px;}
.x2c{left:131.866500px;}
.x36{left:133.618500px;}
.x23{left:135.186000px;}
.x40{left:138.555000px;}
.x86{left:139.834500px;}
.x37{left:142.692000px;}
.x87{left:144.381000px;}
.x2d{left:152.584500px;}
.x84{left:158.770500px;}
.x2e{left:169.081500px;}
.x85{left:170.620500px;}
.x27{left:174.790500px;}
.x28{left:183.864000px;}
.x78{left:188.145000px;}
.x79{left:196.209000px;}
.x20{left:199.896000px;}
.x21{left:208.968000px;}
.x25{left:211.377000px;}
.x26{left:223.341000px;}
.x16{left:227.461500px;}
.x3a{left:231.778500px;}
.x77{left:238.654500px;}
.x3b{left:240.850500px;}
.x17{left:242.052000px;}
.x88{left:243.316500px;}
.x38{left:248.523000px;}
.x6e{left:249.853500px;}
.x7a{left:250.959000px;}
.x89{left:255.808500px;}
.x39{left:257.595000px;}
.x6f{left:260.185500px;}
.x7b{left:261.414000px;}
.x3c{left:270.517500px;}
.x3d{left:279.589500px;}
.x19{left:284.923500px;}
.x3e{left:287.178000px;}
.x5{left:288.597000px;}
.x64{left:291.265500px;}
.x6{left:296.913000px;}
.x1a{left:299.620500px;}
.x65{left:302.778000px;}
.x2f{left:304.708500px;}
.x24{left:327.577500px;}
.x67{left:335.344500px;}
.x1b{left:336.420000px;}
.x41{left:340.015500px;}
.x42{left:342.556500px;}
.x1c{left:348.744000px;}
.x43{left:352.315500px;}
.x68{left:354.219000px;}
.x72{left:356.614500px;}
.x69{left:357.858000px;}
.x6a{left:362.571000px;}
.x73{left:364.678500px;}
.x34{left:385.171500px;}
.x35{left:394.359000px;}
.x1e{left:405.468000px;}
.x6b{left:411.822000px;}
.x5f{left:415.185000px;}
.x14{left:424.398000px;}
.x8{left:455.998350px;}
.x13{left:461.302200px;}
.x4a{left:464.316000px;}
.x7f{left:468.060000px;}
.xb{left:469.499100px;}
.x4b{left:475.671000px;}
.x48{left:482.923500px;}
.x4c{left:487.807500px;}
.x49{left:492.196500px;}
.x5c{left:505.320000px;}
.x11{left:514.203000px;}
.x6d{left:521.059500px;}
.x50{left:522.574500px;}
.xc{left:529.354500px;}
.x12{left:532.750500px;}
.xd{left:536.475000px;}
.x56{left:541.377000px;}
.x7c{left:544.188000px;}
.x61{left:550.407000px;}
.x76{left:551.533500px;}
.x5d{left:556.398000px;}
.x57{left:558.010500px;}
.x62{left:559.479000px;}
.xe{left:561.123000px;}
.x9{left:563.542500px;}
.x74{left:564.871500px;}
.x7d{left:566.734500px;}
.x5e{left:569.725500px;}
.x75{left:571.902000px;}
.xa{left:588.493500px;}
.x44{left:604.881000px;}
.x5a{left:607.077000px;}
.x45{left:613.953000px;}
.x5b{left:617.164500px;}
.xf{left:621.318000px;}
.x60{left:624.516000px;}
.x63{left:627.934500px;}
.x10{left:636.100500px;}
.x82{left:642.982500px;}
.x83{left:649.855500px;}
.x54{left:684.148500px;}
.x55{left:695.533500px;}
.x70{left:726.820500px;}
.x4d{left:732.030000px;}
.x71{left:734.883000px;}
.x46{left:736.825500px;}
.x58{left:739.020000px;}
.x47{left:741.747000px;}
.x59{left:749.565000px;}
.x51{left:756.783000px;}
.x52{left:771.481500px;}
.x80{left:774.150000px;}
.x81{left:781.542000px;}
.x4e{left:801.730500px;}
.x53{left:807.982500px;}
.x4f{left:811.575000px;}
@media print{
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.146667pt;}
.ls3a{letter-spacing:0.152533pt;}
.ls39{letter-spacing:0.155467pt;}
.ls15{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.165333pt;}
.lsa{letter-spacing:0.170667pt;}
.ls8{letter-spacing:0.186667pt;}
.lse{letter-spacing:0.200000pt;}
.ls34{letter-spacing:0.208000pt;}
.ls0{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.215897pt;}
.ls35{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.242878pt;}
.ls6{letter-spacing:0.245333pt;}
.ls1a{letter-spacing:0.261333pt;}
.ls3{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.272000pt;}
.ls2{letter-spacing:0.280000pt;}
.lsf{letter-spacing:0.341333pt;}
.ls10{letter-spacing:0.349867pt;}
.lsc{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.624000pt;}
.ls1f{letter-spacing:0.652800pt;}
.ls1e{letter-spacing:0.672000pt;}
.lsb{letter-spacing:0.720000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.008000pt;}
.ls2d{letter-spacing:1.680000pt;}
.ls4{letter-spacing:1.861333pt;}
.ls26{letter-spacing:1.968000pt;}
.ls11{letter-spacing:2.336000pt;}
.ls12{letter-spacing:2.346667pt;}
.ls3e{letter-spacing:8.482133pt;}
.ls3f{letter-spacing:8.955733pt;}
.ls36{letter-spacing:9.045333pt;}
.ls3c{letter-spacing:9.258667pt;}
.ls2c{letter-spacing:10.272000pt;}
.ls38{letter-spacing:10.560000pt;}
.ls3b{letter-spacing:11.306667pt;}
.ls43{letter-spacing:11.456000pt;}
.ls21{letter-spacing:12.072000pt;}
.ls2a{letter-spacing:12.096000pt;}
.ls31{letter-spacing:12.225600pt;}
.ls20{letter-spacing:12.432000pt;}
.ls25{letter-spacing:13.089600pt;}
.ls3d{letter-spacing:13.098667pt;}
.ls2f{letter-spacing:13.497600pt;}
.ls37{letter-spacing:13.696000pt;}
.ls27{letter-spacing:14.088000pt;}
.ls41{letter-spacing:14.549333pt;}
.ls29{letter-spacing:16.368000pt;}
.ls22{letter-spacing:17.438400pt;}
.ls14{letter-spacing:18.293333pt;}
.ls7{letter-spacing:18.298667pt;}
.ls33{letter-spacing:18.681600pt;}
.ls42{letter-spacing:19.046400pt;}
.ls30{letter-spacing:19.363200pt;}
.ls32{letter-spacing:21.331200pt;}
.ls40{letter-spacing:22.997333pt;}
.ls2e{letter-spacing:25.872000pt;}
.ls2b{letter-spacing:26.640000pt;}
.ls1d{letter-spacing:28.320000pt;}
.ls1b{letter-spacing:29.860800pt;}
.ls28{letter-spacing:894.499200pt;}
.ws89{word-spacing:-40.320000pt;}
.ws93{word-spacing:-38.640000pt;}
.wsa7{word-spacing:-37.872000pt;}
.ws9{word-spacing:-31.626667pt;}
.ws7f{word-spacing:-28.368000pt;}
.ws161{word-spacing:-25.216000pt;}
.ws8f{word-spacing:-24.432000pt;}
.ws13e{word-spacing:-24.362667pt;}
.ws91{word-spacing:-24.096000pt;}
.ws13c{word-spacing:-23.765333pt;}
.ws3{word-spacing:-23.725333pt;}
.ws9c{word-spacing:-22.272000pt;}
.ws134{word-spacing:-21.973333pt;}
.ws4{word-spacing:-20.666667pt;}
.ws138{word-spacing:-19.925333pt;}
.ws9e{word-spacing:-13.680000pt;}
.ws8b{word-spacing:-12.672000pt;}
.ws1d{word-spacing:-12.240000pt;}
.ws1{word-spacing:-10.880000pt;}
.ws6{word-spacing:-10.280000pt;}
.ws5f{word-spacing:-10.200000pt;}
.ws7a{word-spacing:-9.594667pt;}
.ws104{word-spacing:-8.224000pt;}
.wsbd{word-spacing:-3.312000pt;}
.ws12{word-spacing:-3.264000pt;}
.ws92{word-spacing:-3.216000pt;}
.ws146{word-spacing:-3.168000pt;}
.ws42{word-spacing:-3.120000pt;}
.wsad{word-spacing:-3.072000pt;}
.ws144{word-spacing:-3.029333pt;}
.ws15{word-spacing:-3.024000pt;}
.ws17{word-spacing:-2.976000pt;}
.ws2c{word-spacing:-2.928000pt;}
.ws11b{word-spacing:-2.901333pt;}
.ws73{word-spacing:-2.880000pt;}
.ws17e{word-spacing:-2.858667pt;}
.ws131{word-spacing:-2.832000pt;}
.ws36{word-spacing:-2.784000pt;}
.ws40{word-spacing:-2.736000pt;}
.wsd0{word-spacing:-2.640000pt;}
.ws153{word-spacing:-2.602667pt;}
.ws180{word-spacing:-2.560000pt;}
.ws1c{word-spacing:-2.544000pt;}
.wsfe{word-spacing:-2.448000pt;}
.wsac{word-spacing:-2.400000pt;}
.wsbc{word-spacing:-2.352000pt;}
.ws9b{word-spacing:-2.208000pt;}
.wsbf{word-spacing:-2.160000pt;}
.ws15b{word-spacing:-2.141867pt;}
.ws15c{word-spacing:-2.133333pt;}
.ws56{word-spacing:-2.083200pt;}
.ws1a{word-spacing:-2.064000pt;}
.ws139{word-spacing:-2.048000pt;}
.ws41{word-spacing:-2.016000pt;}
.ws122{word-spacing:-1.968000pt;}
.wse4{word-spacing:-1.920000pt;}
.wseb{word-spacing:-1.872000pt;}
.ws137{word-spacing:-1.838933pt;}
.ws136{word-spacing:-1.834667pt;}
.ws152{word-spacing:-1.792000pt;}
.ws120{word-spacing:-1.776000pt;}
.wsa3{word-spacing:-1.728000pt;}
.ws19b{word-spacing:-1.664000pt;}
.wsa0{word-spacing:-1.584000pt;}
.ws59{word-spacing:-1.536000pt;}
.wscf{word-spacing:-1.440000pt;}
.ws2d{word-spacing:-1.392000pt;}
.ws14b{word-spacing:-1.365333pt;}
.wsb5{word-spacing:-1.344000pt;}
.ws199{word-spacing:-1.237333pt;}
.ws86{word-spacing:-1.200000pt;}
.wsb3{word-spacing:-1.152000pt;}
.ws48{word-spacing:-1.104000pt;}
.wsc2{word-spacing:-1.056000pt;}
.ws15e{word-spacing:-1.024000pt;}
.ws147{word-spacing:-1.008000pt;}
.wsed{word-spacing:-0.960000pt;}
.wscd{word-spacing:-0.912000pt;}
.ws10c{word-spacing:-0.896000pt;}
.ws51{word-spacing:-0.864000pt;}
.ws101{word-spacing:-0.768000pt;}
.ws11f{word-spacing:-0.672000pt;}
.wsd8{word-spacing:-0.624000pt;}
.ws185{word-spacing:-0.597333pt;}
.ws127{word-spacing:-0.576000pt;}
.ws142{word-spacing:-0.558933pt;}
.ws141{word-spacing:-0.537600pt;}
.wsf7{word-spacing:-0.528000pt;}
.ws143{word-spacing:-0.512000pt;}
.ws20{word-spacing:-0.432000pt;}
.ws4e{word-spacing:-0.384000pt;}
.ws6c{word-spacing:-0.336000pt;}
.ws17f{word-spacing:-0.298667pt;}
.wsf2{word-spacing:-0.288000pt;}
.ws140{word-spacing:-0.256000pt;}
.ws27{word-spacing:-0.240000pt;}
.wsaa{word-spacing:-0.192000pt;}
.wse5{word-spacing:-0.144000pt;}
.ws68{word-spacing:-0.128000pt;}
.ws99{word-spacing:-0.096000pt;}
.ws62{word-spacing:-0.072533pt;}
.ws54{word-spacing:-0.048000pt;}
.ws61{word-spacing:-0.042667pt;}
.ws55{word-spacing:-0.024000pt;}
.wse{word-spacing:0.000000pt;}
.ws18c{word-spacing:0.038400pt;}
.ws10a{word-spacing:0.042667pt;}
.ws52{word-spacing:0.043200pt;}
.ws53{word-spacing:0.048000pt;}
.ws69{word-spacing:0.085333pt;}
.ws168{word-spacing:0.096000pt;}
.ws1a0{word-spacing:0.128000pt;}
.ws133{word-spacing:0.166400pt;}
.ws8d{word-spacing:0.192000pt;}
.ws132{word-spacing:0.213333pt;}
.ws6e{word-spacing:0.288000pt;}
.ws14{word-spacing:0.336000pt;}
.ws164{word-spacing:0.341333pt;}
.ws154{word-spacing:0.426667pt;}
.ws121{word-spacing:0.432000pt;}
.ws35{word-spacing:0.480000pt;}
.ws105{word-spacing:0.554667pt;}
.wsa4{word-spacing:0.576000pt;}
.ws1a5{word-spacing:0.584533pt;}
.ws108{word-spacing:0.597333pt;}
.wsa5{word-spacing:0.619200pt;}
.ws81{word-spacing:0.624000pt;}
.ws114{word-spacing:0.640000pt;}
.ws175{word-spacing:0.672000pt;}
.ws5e{word-spacing:0.680000pt;}
.ws10f{word-spacing:0.682667pt;}
.wsf8{word-spacing:0.720000pt;}
.ws148{word-spacing:0.768000pt;}
.ws187{word-spacing:0.810667pt;}
.wsa8{word-spacing:0.816000pt;}
.wsdb{word-spacing:0.864000pt;}
.ws98{word-spacing:0.912000pt;}
.ws117{word-spacing:0.938667pt;}
.ws174{word-spacing:0.960000pt;}
.ws135{word-spacing:0.981333pt;}
.ws49{word-spacing:1.008000pt;}
.ws28{word-spacing:1.056000pt;}
.ws196{word-spacing:1.066667pt;}
.ws95{word-spacing:1.152000pt;}
.ws159{word-spacing:1.237333pt;}
.wsc7{word-spacing:1.248000pt;}
.ws100{word-spacing:1.296000pt;}
.ws15d{word-spacing:1.322667pt;}
.ws97{word-spacing:1.344000pt;}
.ws6f{word-spacing:1.392000pt;}
.ws76{word-spacing:1.440000pt;}
.wsb4{word-spacing:1.488000pt;}
.ws82{word-spacing:1.536000pt;}
.ws72{word-spacing:1.584000pt;}
.wsc9{word-spacing:1.593600pt;}
.wsc8{word-spacing:1.612800pt;}
.ws188{word-spacing:1.621333pt;}
.ws96{word-spacing:1.632000pt;}
.ws14e{word-spacing:1.664000pt;}
.wsfa{word-spacing:1.680000pt;}
.ws155{word-spacing:1.749333pt;}
.ws1b{word-spacing:1.824000pt;}
.ws10d{word-spacing:1.834667pt;}
.wse6{word-spacing:1.872000pt;}
.ws33{word-spacing:1.920000pt;}
.ws126{word-spacing:1.968000pt;}
.ws13b{word-spacing:2.005333pt;}
.ws110{word-spacing:2.048000pt;}
.ws193{word-spacing:2.090667pt;}
.ws7d{word-spacing:2.112000pt;}
.ws13a{word-spacing:2.133333pt;}
.ws16{word-spacing:2.208000pt;}
.ws16f{word-spacing:2.304000pt;}
.wscc{word-spacing:2.448000pt;}
.ws5d{word-spacing:2.480000pt;}
.ws3f{word-spacing:2.496000pt;}
.ws3e{word-spacing:2.510400pt;}
.ws6d{word-spacing:2.544000pt;}
.ws15f{word-spacing:2.560000pt;}
.wsf0{word-spacing:2.592000pt;}
.ws13d{word-spacing:2.602667pt;}
.ws23{word-spacing:2.640000pt;}
.ws179{word-spacing:2.736000pt;}
.ws25{word-spacing:2.784000pt;}
.wsc3{word-spacing:2.832000pt;}
.ws1a1{word-spacing:2.858667pt;}
.ws39{word-spacing:2.928000pt;}
.ws57{word-spacing:2.976000pt;}
.ws1a3{word-spacing:3.003733pt;}
.ws1a4{word-spacing:3.025067pt;}
.ws13f{word-spacing:3.029333pt;}
.ws106{word-spacing:3.072000pt;}
.ws11{word-spacing:3.098667pt;}
.ws21{word-spacing:3.120000pt;}
.ws162{word-spacing:3.157333pt;}
.wse0{word-spacing:3.216000pt;}
.ws5{word-spacing:3.258667pt;}
.ws43{word-spacing:3.264000pt;}
.ws10{word-spacing:3.266667pt;}
.ws8{word-spacing:3.280000pt;}
.wsa{word-spacing:3.288000pt;}
.wsb{word-spacing:3.290667pt;}
.wsd{word-spacing:3.293333pt;}
.wsc{word-spacing:3.298667pt;}
.wsf{word-spacing:3.304000pt;}
.ws60{word-spacing:3.320000pt;}
.ws7c{word-spacing:3.360000pt;}
.ws12e{word-spacing:3.408000pt;}
.ws160{word-spacing:3.456000pt;}
.ws197{word-spacing:3.485867pt;}
.ws182{word-spacing:3.494400pt;}
.ws181{word-spacing:3.498667pt;}
.ws186{word-spacing:3.502933pt;}
.ws130{word-spacing:3.504000pt;}
.ws194{word-spacing:3.507200pt;}
.ws19e{word-spacing:3.511467pt;}
.ws19a{word-spacing:3.515733pt;}
.ws19c{word-spacing:3.520000pt;}
.ws183{word-spacing:3.524267pt;}
.ws0{word-spacing:3.541333pt;}
.ws19{word-spacing:3.648000pt;}
.wsbb{word-spacing:3.696000pt;}
.ws10e{word-spacing:3.712000pt;}
.wsb0{word-spacing:3.744000pt;}
.ws113{word-spacing:3.754667pt;}
.ws16d{word-spacing:3.792000pt;}
.ws2{word-spacing:3.802667pt;}
.ws190{word-spacing:3.840000pt;}
.ws7e{word-spacing:3.888000pt;}
.wscb{word-spacing:3.979200pt;}
.ws26{word-spacing:3.984000pt;}
.ws17b{word-spacing:4.032000pt;}
.wsea{word-spacing:4.176000pt;}
.ws18d{word-spacing:4.224000pt;}
.wsab{word-spacing:4.272000pt;}
.wsfd{word-spacing:4.320000pt;}
.wsd9{word-spacing:4.368000pt;}
.ws8a{word-spacing:4.416000pt;}
.ws7{word-spacing:4.426667pt;}
.ws157{word-spacing:4.437333pt;}
.ws22{word-spacing:4.512000pt;}
.ws14d{word-spacing:4.522667pt;}
.ws12f{word-spacing:4.608000pt;}
.wsfb{word-spacing:4.656000pt;}
.wse2{word-spacing:4.752000pt;}
.ws192{word-spacing:4.821333pt;}
.ws38{word-spacing:4.848000pt;}
.wsdf{word-spacing:4.896000pt;}
.ws3d{word-spacing:4.944000pt;}
.wsc6{word-spacing:4.992000pt;}
.ws4a{word-spacing:5.040000pt;}
.ws191{word-spacing:5.077333pt;}
.ws45{word-spacing:5.088000pt;}
.ws3b{word-spacing:5.136000pt;}
.ws107{word-spacing:5.162667pt;}
.wsd6{word-spacing:5.184000pt;}
.ws173{word-spacing:5.232000pt;}
.wsa2{word-spacing:5.328000pt;}
.ws102{word-spacing:5.376000pt;}
.wsb1{word-spacing:5.472000pt;}
.ws30{word-spacing:5.568000pt;}
.ws4b{word-spacing:5.616000pt;}
.ws115{word-spacing:5.802667pt;}
.ws145{word-spacing:5.808000pt;}
.wse1{word-spacing:5.856000pt;}
.wsc4{word-spacing:5.904000pt;}
.ws19d{word-spacing:5.973333pt;}
.ws2b{word-spacing:6.000000pt;}
.wsef{word-spacing:6.096000pt;}
.ws18{word-spacing:6.144000pt;}
.wsf9{word-spacing:6.192000pt;}
.ws24{word-spacing:6.240000pt;}
.wsf3{word-spacing:6.384000pt;}
.wsc0{word-spacing:6.480000pt;}
.ws165{word-spacing:6.485333pt;}
.ws151{word-spacing:6.698667pt;}
.wse7{word-spacing:6.720000pt;}
.ws1a2{word-spacing:6.741333pt;}
.ws4d{word-spacing:6.768000pt;}
.ws64{word-spacing:6.784000pt;}
.wsba{word-spacing:6.816000pt;}
.wsd5{word-spacing:6.864000pt;}
.ws195{word-spacing:6.869333pt;}
.wsd4{word-spacing:6.888000pt;}
.ws4c{word-spacing:6.912000pt;}
.ws32{word-spacing:7.008000pt;}
.wsd2{word-spacing:7.056000pt;}
.ws2e{word-spacing:7.104000pt;}
.ws1e{word-spacing:7.248000pt;}
.ws19f{word-spacing:7.253333pt;}
.ws47{word-spacing:7.344000pt;}
.wsc1{word-spacing:7.392000pt;}
.wse9{word-spacing:7.440000pt;}
.ws15a{word-spacing:7.466667pt;}
.ws129{word-spacing:7.536000pt;}
.ws58{word-spacing:7.632000pt;}
.ws156{word-spacing:7.637333pt;}
.ws12c{word-spacing:7.728000pt;}
.ws37{word-spacing:7.776000pt;}
.ws118{word-spacing:7.936000pt;}
.ws44{word-spacing:8.016000pt;}
.ws14f{word-spacing:8.021333pt;}
.ws167{word-spacing:8.064000pt;}
.ws9f{word-spacing:8.112000pt;}
.ws80{word-spacing:8.160000pt;}
.ws67{word-spacing:8.192000pt;}
.ws8c{word-spacing:8.400000pt;}
.ws18a{word-spacing:8.443733pt;}
.ws189{word-spacing:8.448000pt;}
.ws111{word-spacing:8.576000pt;}
.wsd3{word-spacing:8.592000pt;}
.ws149{word-spacing:8.640000pt;}
.ws5c{word-spacing:8.688000pt;}
.ws125{word-spacing:8.736000pt;}
.wsce{word-spacing:8.784000pt;}
.ws184{word-spacing:8.789333pt;}
.wsdc{word-spacing:8.832000pt;}
.wsee{word-spacing:8.880000pt;}
.wsae{word-spacing:8.928000pt;}
.ws3a{word-spacing:9.024000pt;}
.ws8e{word-spacing:9.072000pt;}
.ws116{word-spacing:9.173333pt;}
.wsb6{word-spacing:9.216000pt;}
.ws11a{word-spacing:9.258667pt;}
.ws65{word-spacing:9.472000pt;}
.ws9d{word-spacing:9.552000pt;}
.ws11c{word-spacing:9.600000pt;}
.wsec{word-spacing:9.648000pt;}
.ws79{word-spacing:9.696000pt;}
.ws17d{word-spacing:9.770667pt;}
.ws87{word-spacing:9.792000pt;}
.ws34{word-spacing:9.840000pt;}
.ws85{word-spacing:9.888000pt;}
.ws18b{word-spacing:9.984000pt;}
.ws12b{word-spacing:10.080000pt;}
.ws158{word-spacing:10.154667pt;}
.ws84{word-spacing:10.224000pt;}
.ws17a{word-spacing:10.272000pt;}
.ws112{word-spacing:10.453333pt;}
.ws9a{word-spacing:10.464000pt;}
.wse8{word-spacing:10.512000pt;}
.ws198{word-spacing:10.538667pt;}
.ws6b{word-spacing:10.608000pt;}
.wsf1{word-spacing:10.800000pt;}
.ws14c{word-spacing:10.922667pt;}
.ws3c{word-spacing:10.944000pt;}
.ws14a{word-spacing:11.040000pt;}
.ws66{word-spacing:11.221333pt;}
.wsb8{word-spacing:11.328000pt;}
.wsbe{word-spacing:11.376000pt;}
.ws16e{word-spacing:11.424000pt;}
.ws12d{word-spacing:11.472000pt;}
.ws90{word-spacing:11.616000pt;}
.wsc5{word-spacing:11.664000pt;}
.ws74{word-spacing:11.712000pt;}
.wsde{word-spacing:11.856000pt;}
.ws75{word-spacing:11.904000pt;}
.ws70{word-spacing:12.000000pt;}
.ws11d{word-spacing:12.192000pt;}
.ws163{word-spacing:12.202667pt;}
.wsb9{word-spacing:12.240000pt;}
.ws123{word-spacing:12.288000pt;}
.ws78{word-spacing:12.384000pt;}
.ws4f{word-spacing:12.432000pt;}
.ws119{word-spacing:12.629333pt;}
.wsb2{word-spacing:12.720000pt;}
.ws13{word-spacing:12.768000pt;}
.ws1f{word-spacing:13.056000pt;}
.wsdd{word-spacing:13.248000pt;}
.ws128{word-spacing:13.296000pt;}
.wsa6{word-spacing:13.392000pt;}
.ws176{word-spacing:13.488000pt;}
.wsda{word-spacing:13.536000pt;}
.ws109{word-spacing:13.781333pt;}
.ws10b{word-spacing:13.909333pt;}
.ws71{word-spacing:13.920000pt;}
.ws172{word-spacing:13.968000pt;}
.wsaf{word-spacing:14.016000pt;}
.ws11e{word-spacing:14.064000pt;}
.ws94{word-spacing:14.160000pt;}
.ws124{word-spacing:14.208000pt;}
.ws83{word-spacing:14.304000pt;}
.ws5b{word-spacing:14.448000pt;}
.ws169{word-spacing:14.544000pt;}
.ws170{word-spacing:14.784000pt;}
.ws12a{word-spacing:14.928000pt;}
.wse3{word-spacing:15.024000pt;}
.ws18f{word-spacing:15.095467pt;}
.ws18e{word-spacing:15.104000pt;}
.wsfc{word-spacing:15.168000pt;}
.wsd7{word-spacing:15.216000pt;}
.ws29{word-spacing:15.312000pt;}
.ws150{word-spacing:15.488000pt;}
.wsff{word-spacing:15.648000pt;}
.ws17c{word-spacing:15.744000pt;}
.ws88{word-spacing:15.840000pt;}
.ws16b{word-spacing:15.888000pt;}
.ws63{word-spacing:15.914667pt;}
.ws2a{word-spacing:15.936000pt;}
.wsf5{word-spacing:16.012800pt;}
.wsf6{word-spacing:16.032000pt;}
.wsf4{word-spacing:16.036800pt;}
.ws5a{word-spacing:16.272000pt;}
.wsa1{word-spacing:16.416000pt;}
.wsd1{word-spacing:16.512000pt;}
.ws77{word-spacing:16.608000pt;}
.ws31{word-spacing:16.656000pt;}
.wsa9{word-spacing:16.704000pt;}
.ws178{word-spacing:16.833600pt;}
.ws177{word-spacing:16.848000pt;}
.ws46{word-spacing:16.896000pt;}
.wsca{word-spacing:16.944000pt;}
.ws103{word-spacing:17.184000pt;}
.ws166{word-spacing:17.232000pt;}
.ws7b{word-spacing:17.376000pt;}
.ws171{word-spacing:17.520000pt;}
.ws16c{word-spacing:17.616000pt;}
.ws16a{word-spacing:17.712000pt;}
.ws50{word-spacing:17.856000pt;}
.wsb7{word-spacing:17.904000pt;}
.ws2f{word-spacing:17.952000pt;}
.ws6a{word-spacing:19.968000pt;}
._8{margin-left:-27.987200pt;}
._b{margin-left:-26.400000pt;}
._a{margin-left:-24.960000pt;}
._3{margin-left:-18.416000pt;}
._7{margin-left:-16.176000pt;}
._15{margin-left:-13.977600pt;}
._14{margin-left:-12.881067pt;}
._9{margin-left:-11.436800pt;}
._c{margin-left:-9.678400pt;}
._13{margin-left:-8.412267pt;}
._12{margin-left:-6.765333pt;}
._4{margin-left:-1.449600pt;}
._0{width:1.280000pt;}
._2{width:2.560000pt;}
._1{width:3.840000pt;}
._6{width:4.809600pt;}
._e{width:8.736000pt;}
._10{width:17.322667pt;}
._11{width:25.040000pt;}
._f{width:42.858667pt;}
._d{width:95.137600pt;}
._5{width:97.120000pt;}
.fs9{font-size:29.333333pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:43.179431pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:48.575631pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:82.666667pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:23.333333pt;}
.y1f9{bottom:48.553333pt;}
.y67{bottom:48.666667pt;}
.yd7{bottom:48.666933pt;}
.y114{bottom:48.668400pt;}
.y1ad{bottom:48.672267pt;}
.y1c6{bottom:48.678000pt;}
.y12d{bottom:48.678667pt;}
.y174{bottom:48.682267pt;}
.y12c{bottom:60.374667pt;}
.y1f8{bottom:60.553333pt;}
.yd6{bottom:62.000133pt;}
.y113{bottom:62.001600pt;}
.y1ac{bottom:62.021067pt;}
.y12b{bottom:62.048133pt;}
.y173{bottom:62.197867pt;}
.y1e5{bottom:62.339067pt;}
.y1c5{bottom:62.632800pt;}
.y71{bottom:62.666667pt;}
.y66{bottom:65.333333pt;}
.y73{bottom:66.666667pt;}
.y70{bottom:71.333333pt;}
.y1f7{bottom:72.553333pt;}
.yd4{bottom:75.333333pt;}
.yd3{bottom:75.333467pt;}
.y112{bottom:75.334800pt;}
.y1ab{bottom:75.369867pt;}
.y12a{bottom:75.411333pt;}
.y172{bottom:75.713467pt;}
.y1e4{bottom:76.005867pt;}
.y1c4{bottom:76.587600pt;}
.y65{bottom:77.333333pt;}
.yd5{bottom:79.333333pt;}
.y6f{bottom:82.666667pt;}
.y1f6{bottom:84.553333pt;}
.yd1{bottom:87.000000pt;}
.yd2{bottom:88.666667pt;}
.yd0{bottom:88.667333pt;}
.y111{bottom:88.668000pt;}
.y1aa{bottom:88.718667pt;}
.y129{bottom:88.774533pt;}
.y171{bottom:89.229067pt;}
.y64{bottom:89.333333pt;}
.y1e3{bottom:89.672667pt;}
.y1c3{bottom:90.542400pt;}
.y6e{bottom:94.000000pt;}
.y1f5{bottom:96.553333pt;}
.ycf{bottom:102.000533pt;}
.y110{bottom:102.001200pt;}
.y1a9{bottom:102.067467pt;}
.y128{bottom:102.137733pt;}
.y170{bottom:102.744667pt;}
.y1e2{bottom:103.339467pt;}
.y1c2{bottom:104.497200pt;}
.y6c{bottom:105.333333pt;}
.y1f4{bottom:108.553333pt;}
.y6d{bottom:108.666667pt;}
.yce{bottom:115.333733pt;}
.y10f{bottom:115.334400pt;}
.y1a8{bottom:115.416267pt;}
.y127{bottom:115.500933pt;}
.y16f{bottom:116.274667pt;}
.y6b{bottom:116.666667pt;}
.y1e1{bottom:117.006267pt;}
.y1c1{bottom:118.452000pt;}
.y3b{bottom:120.000000pt;}
.y1f3{bottom:120.553333pt;}
.y6a{bottom:128.000000pt;}
.ycd{bottom:128.666933pt;}
.y10e{bottom:128.667600pt;}
.y1a7{bottom:128.765067pt;}
.y126{bottom:128.864133pt;}
.y16e{bottom:129.804667pt;}
.y1e0{bottom:130.673067pt;}
.y1f2{bottom:131.220000pt;}
.y1c0{bottom:132.406800pt;}
.y1f1{bottom:132.553333pt;}
.y3a{bottom:133.500000pt;}
.y69{bottom:139.333333pt;}
.ycc{bottom:142.000133pt;}
.y10d{bottom:142.000800pt;}
.y1a6{bottom:142.113867pt;}
.y125{bottom:142.227333pt;}
.y16d{bottom:143.334667pt;}
.y1df{bottom:144.339867pt;}
.y1f0{bottom:144.553333pt;}
.y1bf{bottom:146.361600pt;}
.y39{bottom:147.000000pt;}
.y68{bottom:150.666667pt;}
.ycb{bottom:155.333333pt;}
.y10c{bottom:155.334000pt;}
.yca{bottom:155.334267pt;}
.y1a4{bottom:155.462133pt;}
.y1a5{bottom:155.462667pt;}
.y124{bottom:155.590533pt;}
.y1ef{bottom:156.553333pt;}
.y16c{bottom:156.864667pt;}
.y1de{bottom:158.006667pt;}
.y1be{bottom:160.330800pt;}
.y38{bottom:160.500000pt;}
.y1ee{bottom:168.553333pt;}
.y10b{bottom:168.667200pt;}
.yc9{bottom:168.667467pt;}
.y1a3{bottom:168.810933pt;}
.y123{bottom:168.953733pt;}
.y16b{bottom:170.394667pt;}
.y1dd{bottom:171.673467pt;}
.y37{bottom:174.000000pt;}
.y1bd{bottom:174.300000pt;}
.y1ed{bottom:180.553333pt;}
.y63{bottom:180.668133pt;}
.y10a{bottom:182.000400pt;}
.yc8{bottom:182.000667pt;}
.y1a2{bottom:182.174133pt;}
.y122{bottom:182.316933pt;}
.y16a{bottom:183.924667pt;}
.y1dc{bottom:185.340267pt;}
.y36{bottom:187.500000pt;}
.y1bc{bottom:188.269200pt;}
.y1ec{bottom:192.553333pt;}
.y62{bottom:194.440533pt;}
.y109{bottom:195.333600pt;}
.yc7{bottom:195.333867pt;}
.y1a1{bottom:195.537333pt;}
.y121{bottom:195.680133pt;}
.y169{bottom:197.454667pt;}
.y1db{bottom:199.007067pt;}
.y35{bottom:201.000000pt;}
.y1bb{bottom:202.238400pt;}
.y1eb{bottom:204.553333pt;}
.y61{bottom:208.212933pt;}
.y108{bottom:208.666800pt;}
.yc6{bottom:208.667067pt;}
.y1a0{bottom:208.901333pt;}
.y19f{bottom:208.902933pt;}
.y120{bottom:209.043333pt;}
.y168{bottom:210.984667pt;}
.y1da{bottom:212.688267pt;}
.y34{bottom:214.500000pt;}
.y1ba{bottom:216.207600pt;}
.y1ea{bottom:216.553333pt;}
.y60{bottom:221.985333pt;}
.y5f{bottom:221.987467pt;}
.y107{bottom:222.000000pt;}
.yc5{bottom:222.000267pt;}
.y19e{bottom:222.266133pt;}
.y11f{bottom:222.406533pt;}
.y167{bottom:224.514667pt;}
.y1d9{bottom:226.370667pt;}
.y33{bottom:228.000000pt;}
.y1e9{bottom:228.553333pt;}
.y1b9{bottom:230.176800pt;}
.yc4{bottom:235.333467pt;}
.y19d{bottom:235.629333pt;}
.y19b{bottom:235.630400pt;}
.y5e{bottom:235.759867pt;}
.y11e{bottom:235.769733pt;}
.y282{bottom:235.982933pt;}
.y243{bottom:236.000000pt;}
.y166{bottom:238.044667pt;}
.y19c{bottom:239.629333pt;}
.y1e8{bottom:240.553333pt;}
.y32{bottom:241.500000pt;}
.y1b8{bottom:244.146000pt;}
.y281{bottom:247.816533pt;}
.y242{bottom:248.000000pt;}
.yc3{bottom:248.666667pt;}
.yc2{bottom:248.667067pt;}
.y106{bottom:248.667333pt;}
.y19a{bottom:248.993600pt;}
.y11d{bottom:249.132933pt;}
.y5d{bottom:249.532267pt;}
.y20f{bottom:251.037333pt;}
.y165{bottom:251.574667pt;}
.y1e7{bottom:252.553333pt;}
.y31{bottom:255.000000pt;}
.y1b7{bottom:258.115200pt;}
.y280{bottom:259.650133pt;}
.y241{bottom:260.000000pt;}
.yc1{bottom:262.000267pt;}
.y105{bottom:262.000533pt;}
.y199{bottom:262.356800pt;}
.y11c{bottom:262.496133pt;}
.y20d{bottom:263.037333pt;}
.y5c{bottom:263.304667pt;}
.y1e6{bottom:264.553333pt;}
.y164{bottom:265.104667pt;}
.y20e{bottom:266.370667pt;}
.y30{bottom:268.500000pt;}
.y27f{bottom:271.483733pt;}
.y240{bottom:272.000000pt;}
.y1b6{bottom:272.084400pt;}
.y20c{bottom:275.037333pt;}
.yc0{bottom:275.333467pt;}
.y104{bottom:275.333733pt;}
.y198{bottom:275.720000pt;}
.y197{bottom:275.722133pt;}
.y11b{bottom:275.859333pt;}
.y5b{bottom:277.077067pt;}
.y163{bottom:278.634667pt;}
.y2f{bottom:282.000000pt;}
.y27e{bottom:283.317333pt;}
.y1b5{bottom:286.053600pt;}
.y20b{bottom:287.037333pt;}
.ybf{bottom:288.666667pt;}
.ybe{bottom:288.666933pt;}
.y196{bottom:289.085333pt;}
.y11a{bottom:289.238133pt;}
.y5a{bottom:290.849467pt;}
.y162{bottom:292.164667pt;}
.y27d{bottom:295.150933pt;}
.y2e{bottom:295.500000pt;}
.y23f{bottom:297.333333pt;}
.y20a{bottom:299.037333pt;}
.y1b4{bottom:300.022800pt;}
.ybd{bottom:302.000133pt;}
.y195{bottom:302.448533pt;}
.y119{bottom:302.616933pt;}
.y59{bottom:304.621867pt;}
.y161{bottom:305.694667pt;}
.y27c{bottom:306.984533pt;}
.y2d{bottom:309.000000pt;}
.y23e{bottom:309.333333pt;}
.y209{bottom:311.037333pt;}
.y1b2{bottom:312.325333pt;}
.y1b3{bottom:313.992000pt;}
.y1b1{bottom:313.992267pt;}
.ybc{bottom:315.333333pt;}
.ybb{bottom:315.333467pt;}
.y103{bottom:315.334267pt;}
.y194{bottom:315.811733pt;}
.y118{bottom:315.995733pt;}
.y58{bottom:318.394267pt;}
.y27b{bottom:318.818133pt;}
.y160{bottom:319.224667pt;}
.y23d{bottom:321.333333pt;}
.y2c{bottom:322.500000pt;}
.y208{bottom:323.037333pt;}
.y1b0{bottom:327.961467pt;}
.yba{bottom:328.666667pt;}
.yb9{bottom:328.666800pt;}
.y102{bottom:328.667467pt;}
.y193{bottom:329.174933pt;}
.y117{bottom:329.374533pt;}
.y27a{bottom:330.651733pt;}
.y57{bottom:332.166667pt;}
.y15f{bottom:332.754667pt;}
.y23c{bottom:333.333333pt;}
.y207{bottom:335.037333pt;}
.y2b{bottom:336.000000pt;}
.yb7{bottom:340.333333pt;}
.y1af{bottom:341.930667pt;}
.yb8{bottom:342.000000pt;}
.y101{bottom:342.000667pt;}
.yb6{bottom:342.000933pt;}
.y279{bottom:342.485333pt;}
.y192{bottom:342.538133pt;}
.y116{bottom:342.753333pt;}
.y23b{bottom:345.333333pt;}
.y15e{bottom:346.284667pt;}
.y206{bottom:347.037333pt;}
.y2a{bottom:349.500000pt;}
.y56{bottom:352.606667pt;}
.y278{bottom:354.318933pt;}
.y100{bottom:355.333867pt;}
.yb5{bottom:355.334133pt;}
.y1ae{bottom:355.899867pt;}
.y191{bottom:355.901333pt;}
.y23a{bottom:357.333333pt;}
.y205{bottom:359.037333pt;}
.y15d{bottom:359.814667pt;}
.y29{bottom:363.000000pt;}
.y277{bottom:366.152533pt;}
.y18f{bottom:367.420000pt;}
.yff{bottom:368.667067pt;}
.yb4{bottom:368.667333pt;}
.y239{bottom:369.333333pt;}
.y204{bottom:371.037333pt;}
.y15c{bottom:373.344667pt;}
.y28{bottom:376.500000pt;}
.y276{bottom:377.986133pt;}
.y18e{bottom:379.420000pt;}
.y1d8{bottom:380.568000pt;}
.yfe{bottom:382.000267pt;}
.yb3{bottom:382.000533pt;}
.y203{bottom:383.037333pt;}
.y55{bottom:386.382267pt;}
.y15b{bottom:386.874667pt;}
.y275{bottom:389.819733pt;}
.y27{bottom:390.000000pt;}
.y18d{bottom:391.420000pt;}
.y1d7{bottom:392.568000pt;}
.y202{bottom:395.037333pt;}
.yfd{bottom:395.333467pt;}
.yb2{bottom:395.333733pt;}
.y238{bottom:395.334400pt;}
.y54{bottom:400.154667pt;}
.y15a{bottom:400.404667pt;}
.y274{bottom:401.653333pt;}
.y18c{bottom:403.420000pt;}
.y26{bottom:403.500000pt;}
.y1d5{bottom:404.568000pt;}
.y201{bottom:405.704000pt;}
.y200{bottom:407.037333pt;}
.y1d6{bottom:407.901333pt;}
.yfc{bottom:408.666667pt;}
.yb1{bottom:408.666933pt;}
.yfb{bottom:408.667333pt;}
.y237{bottom:408.667600pt;}
.y273{bottom:413.486933pt;}
.y53{bottom:413.927067pt;}
.y159{bottom:413.934667pt;}
.y18b{bottom:415.420000pt;}
.y1d4{bottom:416.568000pt;}
.y24{bottom:417.000000pt;}
.y1ff{bottom:419.037333pt;}
.y25{bottom:421.000000pt;}
.yb0{bottom:422.000133pt;}
.yfa{bottom:422.000533pt;}
.y236{bottom:422.000800pt;}
.y272{bottom:425.320533pt;}
.y189{bottom:427.420000pt;}
.y158{bottom:427.464667pt;}
.y52{bottom:427.699467pt;}
.y1d3{bottom:428.568000pt;}
.y1fe{bottom:429.704000pt;}
.y18a{bottom:430.753333pt;}
.y1fd{bottom:431.037333pt;}
.yae{bottom:433.666667pt;}
.yaf{bottom:435.333333pt;}
.yf9{bottom:435.333733pt;}
.yad{bottom:435.333867pt;}
.y235{bottom:435.334000pt;}
.y271{bottom:437.154133pt;}
.y188{bottom:439.420000pt;}
.y1d1{bottom:440.568000pt;}
.y157{bottom:440.994667pt;}
.y51{bottom:441.471867pt;}
.y1fc{bottom:443.037333pt;}
.y1d2{bottom:443.901333pt;}
.y23{bottom:446.661733pt;}
.yf8{bottom:448.666933pt;}
.yac{bottom:448.667067pt;}
.y234{bottom:448.667200pt;}
.y270{bottom:448.987733pt;}
.y187{bottom:451.420000pt;}
.y1d0{bottom:452.568000pt;}
.y156{bottom:454.524667pt;}
.y1fb{bottom:455.037333pt;}
.y50{bottom:455.244267pt;}
.y22{bottom:460.161733pt;}
.y26f{bottom:460.821333pt;}
.yf7{bottom:462.000133pt;}
.yab{bottom:462.000267pt;}
.y233{bottom:462.000400pt;}
.y186{bottom:463.420000pt;}
.y1cf{bottom:464.568000pt;}
.y1fa{bottom:467.037333pt;}
.y155{bottom:468.054667pt;}
.y4f{bottom:469.016667pt;}
.y26e{bottom:472.654933pt;}
.y21{bottom:473.661733pt;}
.yf6{bottom:475.333333pt;}
.yaa{bottom:475.333467pt;}
.y232{bottom:475.333600pt;}
.y184{bottom:475.420000pt;}
.y1ce{bottom:476.568000pt;}
.y185{bottom:478.753333pt;}
.y154{bottom:481.584667pt;}
.y4e{bottom:482.789067pt;}
.y26d{bottom:484.488533pt;}
.y20{bottom:487.161733pt;}
.y1cd{bottom:487.234667pt;}
.y183{bottom:487.420000pt;}
.y1cc{bottom:488.568000pt;}
.ya9{bottom:488.666667pt;}
.yf5{bottom:488.666800pt;}
.ya8{bottom:488.666933pt;}
.y153{bottom:495.114667pt;}
.y26c{bottom:496.322133pt;}
.y4d{bottom:496.561467pt;}
.y182{bottom:499.420000pt;}
.y1cb{bottom:500.568000pt;}
.y1f{bottom:500.661733pt;}
.yf4{bottom:502.000000pt;}
.ya7{bottom:502.000133pt;}
.y231{bottom:502.004667pt;}
.y26b{bottom:508.155733pt;}
.y152{bottom:508.644667pt;}
.y4c{bottom:510.333867pt;}
.y181{bottom:511.420000pt;}
.y1ca{bottom:512.568000pt;}
.ya5{bottom:513.666667pt;}
.y1e{bottom:514.161733pt;}
.ya6{bottom:515.333333pt;}
.ya4{bottom:515.333867pt;}
.yf2{bottom:515.334667pt;}
.y230{bottom:515.337867pt;}
.yf3{bottom:519.333333pt;}
.y26a{bottom:519.989333pt;}
.y151{bottom:522.174667pt;}
.y180{bottom:523.420000pt;}
.y4b{bottom:524.106267pt;}
.y1c8{bottom:524.568000pt;}
.y1d{bottom:527.661733pt;}
.y1c9{bottom:527.901333pt;}
.ya3{bottom:528.667067pt;}
.yf1{bottom:528.667867pt;}
.y22f{bottom:528.671067pt;}
.y269{bottom:531.822933pt;}
.y17f{bottom:535.420000pt;}
.y150{bottom:535.704667pt;}
.y1c7{bottom:536.568000pt;}
.y4a{bottom:537.878667pt;}
.y1c{bottom:541.161733pt;}
.ya2{bottom:542.000267pt;}
.yf0{bottom:542.001067pt;}
.y22e{bottom:542.004267pt;}
.y268{bottom:543.656533pt;}
.y17e{bottom:547.420000pt;}
.y14f{bottom:549.234667pt;}
.y49{bottom:551.666667pt;}
.y1b{bottom:554.661733pt;}
.ya1{bottom:555.333467pt;}
.yef{bottom:555.334267pt;}
.y22d{bottom:555.337467pt;}
.y267{bottom:555.490133pt;}
.y17d{bottom:559.420000pt;}
.y14e{bottom:562.764667pt;}
.y48{bottom:565.454667pt;}
.y266{bottom:567.323733pt;}
.y1a{bottom:568.177333pt;}
.ya0{bottom:568.666667pt;}
.y9f{bottom:568.666800pt;}
.yee{bottom:568.667467pt;}
.y22c{bottom:568.670667pt;}
.y17c{bottom:571.420000pt;}
.y14d{bottom:576.294667pt;}
.y265{bottom:579.157333pt;}
.y45{bottom:579.241200pt;}
.y47{bottom:579.242667pt;}
.y19{bottom:581.692933pt;}
.y9e{bottom:582.000000pt;}
.y9d{bottom:582.000267pt;}
.yed{bottom:582.000667pt;}
.y22b{bottom:582.003867pt;}
.y46{bottom:583.242667pt;}
.y17b{bottom:583.420000pt;}
.y14c{bottom:589.824667pt;}
.y264{bottom:590.990933pt;}
.y44{bottom:593.029200pt;}
.y18{bottom:595.208533pt;}
.y9c{bottom:595.333467pt;}
.yec{bottom:595.333867pt;}
.y22a{bottom:595.337067pt;}
.y17a{bottom:595.420000pt;}
.y263{bottom:602.824533pt;}
.y14b{bottom:603.354667pt;}
.y43{bottom:606.817200pt;}
.y179{bottom:607.420000pt;}
.y9b{bottom:608.666667pt;}
.y9a{bottom:608.666800pt;}
.yeb{bottom:608.667067pt;}
.y229{bottom:608.670267pt;}
.y17{bottom:608.724133pt;}
.y262{bottom:614.658133pt;}
.y14a{bottom:616.884667pt;}
.y178{bottom:619.420000pt;}
.y42{bottom:620.605200pt;}
.y99{bottom:622.000000pt;}
.y98{bottom:622.000267pt;}
.y228{bottom:622.003467pt;}
.y16{bottom:622.239733pt;}
.y261{bottom:626.491733pt;}
.y149{bottom:630.414667pt;}
.y177{bottom:631.420000pt;}
.y41{bottom:634.393200pt;}
.y97{bottom:635.333467pt;}
.y227{bottom:635.336667pt;}
.y15{bottom:635.755333pt;}
.y260{bottom:638.325333pt;}
.y176{bottom:643.420000pt;}
.y148{bottom:643.944667pt;}
.y40{bottom:648.181200pt;}
.y96{bottom:648.666667pt;}
.y226{bottom:648.669867pt;}
.y14{bottom:649.270933pt;}
.y25f{bottom:650.158933pt;}
.y175{bottom:655.420000pt;}
.y147{bottom:657.474667pt;}
.y3f{bottom:661.969200pt;}
.y25e{bottom:661.992533pt;}
.y95{bottom:662.000533pt;}
.y225{bottom:662.003067pt;}
.y13{bottom:662.786533pt;}
.yea{bottom:668.666667pt;}
.y146{bottom:671.004667pt;}
.y25d{bottom:673.826133pt;}
.y94{bottom:675.333733pt;}
.y224{bottom:675.336267pt;}
.y3e{bottom:675.757200pt;}
.y12{bottom:676.302133pt;}
.y145{bottom:684.534667pt;}
.y25c{bottom:685.659733pt;}
.y93{bottom:688.666933pt;}
.y223{bottom:688.669467pt;}
.y3d{bottom:689.545200pt;}
.y11{bottom:689.817733pt;}
.y25b{bottom:697.493333pt;}
.y144{bottom:698.064667pt;}
.y92{bottom:702.000133pt;}
.ye9{bottom:702.000400pt;}
.y222{bottom:702.002667pt;}
.y3c{bottom:703.333200pt;}
.y10{bottom:703.333333pt;}
.y25a{bottom:709.326933pt;}
.y143{bottom:711.594667pt;}
.y91{bottom:715.333333pt;}
.y90{bottom:715.333600pt;}
.y221{bottom:715.335867pt;}
.y259{bottom:721.145600pt;}
.y142{bottom:725.124667pt;}
.y8f{bottom:728.666800pt;}
.y220{bottom:728.669067pt;}
.y258{bottom:732.964267pt;}
.yf{bottom:736.000000pt;}
.y141{bottom:738.654667pt;}
.y8e{bottom:742.000000pt;}
.y8d{bottom:742.000800pt;}
.y21f{bottom:742.002267pt;}
.y257{bottom:744.782933pt;}
.ye{bottom:748.000000pt;}
.y140{bottom:752.184667pt;}
.y8c{bottom:755.334000pt;}
.y21e{bottom:755.335467pt;}
.y256{bottom:756.601600pt;}
.y13f{bottom:765.714667pt;}
.y255{bottom:768.420267pt;}
.y8b{bottom:768.667200pt;}
.y21d{bottom:768.668667pt;}
.yd{bottom:771.333867pt;}
.y13e{bottom:779.244667pt;}
.y254{bottom:780.238933pt;}
.yc{bottom:781.999600pt;}
.y8a{bottom:782.000400pt;}
.y21c{bottom:782.001867pt;}
.y253{bottom:792.056533pt;}
.yb{bottom:792.666267pt;}
.y13d{bottom:792.774667pt;}
.y89{bottom:795.333600pt;}
.y21b{bottom:795.335067pt;}
.ya{bottom:803.333333pt;}
.y252{bottom:803.875200pt;}
.y13c{bottom:806.304667pt;}
.y88{bottom:808.666800pt;}
.y21a{bottom:808.668267pt;}
.y251{bottom:815.693867pt;}
.y13b{bottom:819.834667pt;}
.ye8{bottom:820.333333pt;}
.y86{bottom:822.000000pt;}
.ye7{bottom:822.000400pt;}
.y219{bottom:822.001467pt;}
.y9{bottom:823.333333pt;}
.y87{bottom:826.000000pt;}
.y250{bottom:827.512533pt;}
.y13a{bottom:833.364667pt;}
.y85{bottom:835.333333pt;}
.ye6{bottom:835.333600pt;}
.y83{bottom:835.334267pt;}
.y218{bottom:835.334667pt;}
.y8{bottom:838.000000pt;}
.y24f{bottom:839.331200pt;}
.y84{bottom:839.333333pt;}
.y139{bottom:846.894667pt;}
.ye5{bottom:848.666800pt;}
.y82{bottom:848.667467pt;}
.y217{bottom:848.667867pt;}
.y24e{bottom:851.148800pt;}
.y138{bottom:860.424667pt;}
.ye4{bottom:862.000000pt;}
.y81{bottom:862.000667pt;}
.y216{bottom:862.001067pt;}
.y24d{bottom:862.967467pt;}
.y7{bottom:865.997400pt;}
.y136{bottom:872.288000pt;}
.y137{bottom:873.954667pt;}
.y135{bottom:873.957067pt;}
.y24c{bottom:874.786133pt;}
.ye3{bottom:875.333467pt;}
.y80{bottom:875.333867pt;}
.y215{bottom:875.334267pt;}
.y24b{bottom:886.604800pt;}
.y6{bottom:887.331600pt;}
.y134{bottom:887.487067pt;}
.ye2{bottom:888.666667pt;}
.ye1{bottom:888.666800pt;}
.y7f{bottom:888.667067pt;}
.y214{bottom:888.667467pt;}
.y24a{bottom:898.423467pt;}
.y133{bottom:901.017067pt;}
.ye0{bottom:902.000000pt;}
.yde{bottom:902.000133pt;}
.y7e{bottom:902.000267pt;}
.y213{bottom:902.000667pt;}
.ydf{bottom:906.000000pt;}
.y5{bottom:908.665800pt;}
.y249{bottom:910.242133pt;}
.y132{bottom:914.547067pt;}
.ydd{bottom:915.333333pt;}
.y7d{bottom:915.333467pt;}
.y212{bottom:915.333867pt;}
.ydc{bottom:915.334533pt;}
.y248{bottom:922.060800pt;}
.y131{bottom:928.077067pt;}
.y7c{bottom:928.666667pt;}
.y7a{bottom:928.666933pt;}
.y211{bottom:928.667067pt;}
.ydb{bottom:928.667733pt;}
.y4{bottom:930.000000pt;}
.y7b{bottom:932.666667pt;}
.y247{bottom:933.878400pt;}
.y130{bottom:941.607067pt;}
.y79{bottom:942.000133pt;}
.y210{bottom:942.000267pt;}
.yda{bottom:942.000933pt;}
.y246{bottom:945.697067pt;}
.y12f{bottom:955.137067pt;}
.y78{bottom:955.333333pt;}
.y76{bottom:955.333467pt;}
.yd9{bottom:955.334133pt;}
.y245{bottom:957.515733pt;}
.y77{bottom:959.333333pt;}
.y74{bottom:968.666667pt;}
.y12e{bottom:968.667067pt;}
.yd8{bottom:968.667333pt;}
.y244{bottom:969.333333pt;}
.y75{bottom:972.666667pt;}
.y3{bottom:978.666667pt;}
.y2{bottom:989.333333pt;}
.y190{bottom:998.000000pt;}
.y115{bottom:998.001600pt;}
.y1{bottom:1000.000000pt;}
.h16{height:18.128000pt;}
.hc{height:19.776000pt;}
.h12{height:21.354667pt;}
.h18{height:22.264000pt;}
.h15{height:22.441942pt;}
.he{height:23.296000pt;}
.h17{height:28.248000pt;}
.h11{height:29.318834pt;}
.h14{height:30.816000pt;}
.h1{height:31.061333pt;}
.hd{height:32.982854pt;}
.h9{height:33.408000pt;}
.h8{height:35.952000pt;}
.ha{height:36.432000pt;}
.hf{height:37.120000pt;}
.h10{height:38.520000pt;}
.h2{height:41.088000pt;}
.h6{height:41.482667pt;}
.h7{height:41.484267pt;}
.h13{height:41.875000pt;}
.hb{height:46.224000pt;}
.h5{height:56.890667pt;}
.h3{height:57.866667pt;}
.h4{height:62.744000pt;}
.h0{height:1056.000000pt;}
.w0{width:768.000000pt;}
.x0{left:0.000000pt;}
.x15{left:17.333333pt;}
.x1{left:53.333333pt;}
.x8a{left:58.720000pt;}
.x7e{left:60.501333pt;}
.x29{left:63.712000pt;}
.x7{left:65.332267pt;}
.x30{left:68.597333pt;}
.x2a{left:71.776000pt;}
.x31{left:72.973333pt;}
.x2{left:77.694667pt;}
.x1d{left:83.754667pt;}
.x6c{left:85.098667pt;}
.x3{left:87.958667pt;}
.x1f{left:89.008000pt;}
.x32{left:92.005333pt;}
.x4{left:94.820000pt;}
.x33{left:96.381333pt;}
.x3f{left:99.752000pt;}
.x18{left:101.476000pt;}
.x22{left:109.053333pt;}
.x2b{left:112.838667pt;}
.x66{left:114.206667pt;}
.x2c{left:117.214667pt;}
.x36{left:118.772000pt;}
.x23{left:120.165333pt;}
.x40{left:123.160000pt;}
.x86{left:124.297333pt;}
.x37{left:126.837333pt;}
.x87{left:128.338667pt;}
.x2d{left:135.630667pt;}
.x84{left:141.129333pt;}
.x2e{left:150.294667pt;}
.x85{left:151.662667pt;}
.x27{left:155.369333pt;}
.x28{left:163.434667pt;}
.x78{left:167.240000pt;}
.x79{left:174.408000pt;}
.x20{left:177.685333pt;}
.x21{left:185.749333pt;}
.x25{left:187.890667pt;}
.x26{left:198.525333pt;}
.x16{left:202.188000pt;}
.x3a{left:206.025333pt;}
.x77{left:212.137333pt;}
.x3b{left:214.089333pt;}
.x17{left:215.157333pt;}
.x88{left:216.281333pt;}
.x38{left:220.909333pt;}
.x6e{left:222.092000pt;}
.x7a{left:223.074667pt;}
.x89{left:227.385333pt;}
.x39{left:228.973333pt;}
.x6f{left:231.276000pt;}
.x7b{left:232.368000pt;}
.x3c{left:240.460000pt;}
.x3d{left:248.524000pt;}
.x19{left:253.265333pt;}
.x3e{left:255.269333pt;}
.x5{left:256.530667pt;}
.x64{left:258.902667pt;}
.x6{left:263.922667pt;}
.x1a{left:266.329333pt;}
.x65{left:269.136000pt;}
.x2f{left:270.852000pt;}
.x24{left:291.180000pt;}
.x67{left:298.084000pt;}
.x1b{left:299.040000pt;}
.x41{left:302.236000pt;}
.x42{left:304.494667pt;}
.x1c{left:309.994667pt;}
.x43{left:313.169333pt;}
.x68{left:314.861333pt;}
.x72{left:316.990667pt;}
.x69{left:318.096000pt;}
.x6a{left:322.285333pt;}
.x73{left:324.158667pt;}
.x34{left:342.374667pt;}
.x35{left:350.541333pt;}
.x1e{left:360.416000pt;}
.x6b{left:366.064000pt;}
.x5f{left:369.053333pt;}
.x14{left:377.242667pt;}
.x8{left:405.331867pt;}
.x13{left:410.046400pt;}
.x4a{left:412.725333pt;}
.x7f{left:416.053333pt;}
.xb{left:417.332533pt;}
.x4b{left:422.818667pt;}
.x48{left:429.265333pt;}
.x4c{left:433.606667pt;}
.x49{left:437.508000pt;}
.x5c{left:449.173333pt;}
.x11{left:457.069333pt;}
.x6d{left:463.164000pt;}
.x50{left:464.510667pt;}
.xc{left:470.537333pt;}
.x12{left:473.556000pt;}
.xd{left:476.866667pt;}
.x56{left:481.224000pt;}
.x7c{left:483.722667pt;}
.x61{left:489.250667pt;}
.x76{left:490.252000pt;}
.x5d{left:494.576000pt;}
.x57{left:496.009333pt;}
.x62{left:497.314667pt;}
.xe{left:498.776000pt;}
.x9{left:500.926667pt;}
.x74{left:502.108000pt;}
.x7d{left:503.764000pt;}
.x5e{left:506.422667pt;}
.x75{left:508.357333pt;}
.xa{left:523.105333pt;}
.x44{left:537.672000pt;}
.x5a{left:539.624000pt;}
.x45{left:545.736000pt;}
.x5b{left:548.590667pt;}
.xf{left:552.282667pt;}
.x60{left:555.125333pt;}
.x63{left:558.164000pt;}
.x10{left:565.422667pt;}
.x82{left:571.540000pt;}
.x83{left:577.649333pt;}
.x54{left:608.132000pt;}
.x55{left:618.252000pt;}
.x70{left:646.062667pt;}
.x4d{left:650.693333pt;}
.x71{left:653.229333pt;}
.x46{left:654.956000pt;}
.x58{left:656.906667pt;}
.x47{left:659.330667pt;}
.x59{left:666.280000pt;}
.x51{left:672.696000pt;}
.x52{left:685.761333pt;}
.x80{left:688.133333pt;}
.x81{left:694.704000pt;}
.x4e{left:712.649333pt;}
.x53{left:718.206667pt;}
.x4f{left:721.400000pt;}
}




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