
    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_796a5f49aa02339b58bdd3e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.970000;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_3d2e84a4af009e479451f7e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903320;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_8d3cbb27bb05deb927a57ca3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_780d72ff63e0542652516ccf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916504;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_34326f85cc51e811ed3699f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_0b37ee406a8c975a45345531.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e0999d9ac96e85ee3608945d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_99ac7bb8471b151364b6c709.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_796a5f49aa02339b58bdd3e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_368e3e169d4a28c87b5cdf44.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903320;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_796a5f49aa02339b58bdd3e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_92f8f70dfb71a4c5bd6cc998.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_666785c1f87a7993439adb82.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5cc6c9d7a8a5f19982b672fa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.999000px;}
.v1{vertical-align:28.800000px;}
.ls6{letter-spacing:-3.552000px;}
.ls2{letter-spacing:-1.620000px;}
.ls5{letter-spacing:-1.140000px;}
.ls7{letter-spacing:-0.816000px;}
.ls4{letter-spacing:-0.570000px;}
.ls3{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.004764px;}
.ls1{letter-spacing:2.400000px;}
.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;}
}
.wse5{word-spacing:-15.846000px;}
.ws1{word-spacing:-15.012000px;}
.ws99{word-spacing:-13.344000px;}
.ws0{word-spacing:-11.988000px;}
.wse2{word-spacing:-9.792000px;}
.ws128{word-spacing:-8.910000px;}
.ws9f{word-spacing:-8.037000px;}
.ws8c{word-spacing:-7.410000px;}
.ws8b{word-spacing:-7.296000px;}
.ws6a{word-spacing:-5.871000px;}
.wsc7{word-spacing:-5.814000px;}
.wsb9{word-spacing:-4.902000px;}
.wsb2{word-spacing:-4.788000px;}
.ws5d{word-spacing:-4.731000px;}
.ws86{word-spacing:-4.503000px;}
.ws83{word-spacing:-4.389000px;}
.ws11e{word-spacing:-4.050000px;}
.wsb1{word-spacing:-3.990000px;}
.ws1a{word-spacing:-3.834000px;}
.ws68{word-spacing:-3.762000px;}
.ws14b{word-spacing:-3.564000px;}
.ws33{word-spacing:-3.534000px;}
.wsc4{word-spacing:-3.363000px;}
.ws123{word-spacing:-3.294000px;}
.ws94{word-spacing:-3.192000px;}
.wsdd{word-spacing:-3.078000px;}
.ws52{word-spacing:-2.907000px;}
.ws146{word-spacing:-2.862000px;}
.wsa6{word-spacing:-2.850000px;}
.wsc3{word-spacing:-2.736000px;}
.ws12a{word-spacing:-2.700000px;}
.ws26{word-spacing:-2.646000px;}
.wsf7{word-spacing:-2.622000px;}
.wsde{word-spacing:-2.565000px;}
.ws11a{word-spacing:-2.430000px;}
.ws81{word-spacing:-2.394000px;}
.wsf6{word-spacing:-2.337000px;}
.wsbc{word-spacing:-2.280000px;}
.wsd6{word-spacing:-2.223000px;}
.ws65{word-spacing:-2.166000px;}
.ws84{word-spacing:-2.109000px;}
.ws14c{word-spacing:-2.106000px;}
.ws1e{word-spacing:-2.052000px;}
.ws11c{word-spacing:-1.998000px;}
.ws12c{word-spacing:-1.944000px;}
.ws100{word-spacing:-1.938000px;}
.ws88{word-spacing:-1.881000px;}
.ws75{word-spacing:-1.824000px;}
.ws142{word-spacing:-1.782000px;}
.ws104{word-spacing:-1.710000px;}
.ws70{word-spacing:-1.653000px;}
.ws2c{word-spacing:-1.620000px;}
.wsf2{word-spacing:-1.596000px;}
.wsc1{word-spacing:-1.539000px;}
.ws126{word-spacing:-1.458000px;}
.wsbd{word-spacing:-1.425000px;}
.ws13f{word-spacing:-1.404000px;}
.ws44{word-spacing:-1.368000px;}
.ws162{word-spacing:-1.350000px;}
.ws78{word-spacing:-1.311000px;}
.ws49{word-spacing:-1.197000px;}
.ws156{word-spacing:-1.188000px;}
.ws3f{word-spacing:-1.140000px;}
.ws7c{word-spacing:-1.134000px;}
.wsef{word-spacing:-1.083000px;}
.ws11f{word-spacing:-1.080000px;}
.ws79{word-spacing:-1.026000px;}
.wsd3{word-spacing:-0.864000px;}
.wsc0{word-spacing:-0.855000px;}
.ws25{word-spacing:-0.810000px;}
.wsd7{word-spacing:-0.798000px;}
.wsdb{word-spacing:-0.741000px;}
.ws127{word-spacing:-0.702000px;}
.wscb{word-spacing:-0.684000px;}
.ws117{word-spacing:-0.648000px;}
.ws4e{word-spacing:-0.627000px;}
.ws51{word-spacing:-0.570000px;}
.ws6c{word-spacing:-0.513000px;}
.ws15c{word-spacing:-0.486000px;}
.wsb6{word-spacing:-0.456000px;}
.ws5c{word-spacing:-0.342000px;}
.ws3c{word-spacing:-0.285000px;}
.ws12e{word-spacing:-0.270000px;}
.ws61{word-spacing:-0.228000px;}
.ws2d{word-spacing:-0.162000px;}
.wsbe{word-spacing:-0.114000px;}
.ws14f{word-spacing:-0.108000px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:0.054000px;}
.ws5b{word-spacing:0.114000px;}
.ws3d{word-spacing:0.228000px;}
.ws4f{word-spacing:0.285000px;}
.ws140{word-spacing:0.324000px;}
.wsff{word-spacing:0.342000px;}
.ws12f{word-spacing:0.378000px;}
.wsdc{word-spacing:0.399000px;}
.ws20{word-spacing:0.432000px;}
.ws6b{word-spacing:0.456000px;}
.wsb0{word-spacing:0.513000px;}
.ws1f{word-spacing:0.540000px;}
.wsb5{word-spacing:0.570000px;}
.ws8{word-spacing:0.594000px;}
.ws6d{word-spacing:0.627000px;}
.ws82{word-spacing:0.684000px;}
.ws105{word-spacing:0.741000px;}
.ws134{word-spacing:0.756000px;}
.ws7a{word-spacing:0.798000px;}
.ws47{word-spacing:0.855000px;}
.ws30{word-spacing:0.864000px;}
.wsb7{word-spacing:0.912000px;}
.ws87{word-spacing:0.969000px;}
.ws110{word-spacing:1.026000px;}
.ws14{word-spacing:1.080000px;}
.ws40{word-spacing:1.083000px;}
.ws31{word-spacing:1.134000px;}
.ws9b{word-spacing:1.140000px;}
.ws19{word-spacing:1.188000px;}
.wsa5{word-spacing:1.197000px;}
.ws6e{word-spacing:1.254000px;}
.ws74{word-spacing:1.368000px;}
.ws119{word-spacing:1.404000px;}
.ws3a{word-spacing:1.425000px;}
.ws145{word-spacing:1.458000px;}
.ws135{word-spacing:1.512000px;}
.ws36{word-spacing:1.539000px;}
.ws124{word-spacing:1.566000px;}
.ws5e{word-spacing:1.596000px;}
.ws9{word-spacing:1.620000px;}
.ws7b{word-spacing:1.674000px;}
.ws85{word-spacing:1.710000px;}
.ws14d{word-spacing:1.728000px;}
.ws6f{word-spacing:1.767000px;}
.ws139{word-spacing:1.782000px;}
.wsbb{word-spacing:1.938000px;}
.ws2b{word-spacing:1.944000px;}
.ws122{word-spacing:1.998000px;}
.wsa2{word-spacing:2.109000px;}
.ws2e{word-spacing:2.160000px;}
.ws8d{word-spacing:2.166000px;}
.wsc9{word-spacing:2.223000px;}
.ws76{word-spacing:2.280000px;}
.wsb4{word-spacing:2.337000px;}
.ws14e{word-spacing:2.376000px;}
.ws89{word-spacing:2.394000px;}
.ws15f{word-spacing:2.430000px;}
.ws11{word-spacing:2.484000px;}
.ws103{word-spacing:2.508000px;}
.ws7e{word-spacing:2.538000px;}
.ws114{word-spacing:2.592000px;}
.ws35{word-spacing:2.622000px;}
.wsfe{word-spacing:2.679000px;}
.ws132{word-spacing:2.700000px;}
.ws37{word-spacing:2.736000px;}
.ws121{word-spacing:2.754000px;}
.ws3b{word-spacing:2.793000px;}
.ws160{word-spacing:2.808000px;}
.ws63{word-spacing:2.850000px;}
.ws1c{word-spacing:2.862000px;}
.ws8e{word-spacing:2.907000px;}
.ws138{word-spacing:2.916000px;}
.wsf1{word-spacing:3.021000px;}
.ws22{word-spacing:3.078000px;}
.ws12b{word-spacing:3.132000px;}
.ws13d{word-spacing:3.186000px;}
.ws42{word-spacing:3.192000px;}
.ws130{word-spacing:3.348000px;}
.ws9a{word-spacing:3.363000px;}
.ws8f{word-spacing:3.420000px;}
.ws149{word-spacing:3.456000px;}
.ws38{word-spacing:3.477000px;}
.ws158{word-spacing:3.510000px;}
.wsd9{word-spacing:3.534000px;}
.ws15b{word-spacing:3.564000px;}
.ws43{word-spacing:3.591000px;}
.ws80{word-spacing:3.672000px;}
.ws64{word-spacing:3.705000px;}
.ws13c{word-spacing:3.780000px;}
.ws148{word-spacing:3.834000px;}
.ws72{word-spacing:3.876000px;}
.ws11b{word-spacing:3.888000px;}
.wsc5{word-spacing:3.933000px;}
.ws54{word-spacing:3.990000px;}
.ws11d{word-spacing:3.996000px;}
.ws7{word-spacing:4.050000px;}
.wsca{word-spacing:4.104000px;}
.ws2f{word-spacing:4.158000px;}
.ws147{word-spacing:4.212000px;}
.ws57{word-spacing:4.218000px;}
.ws62{word-spacing:4.332000px;}
.ws7f{word-spacing:4.374000px;}
.ws21{word-spacing:4.428000px;}
.ws34{word-spacing:4.446000px;}
.ws10{word-spacing:4.482000px;}
.wsa8{word-spacing:4.503000px;}
.ws144{word-spacing:4.590000px;}
.wsba{word-spacing:4.617000px;}
.ws67{word-spacing:4.674000px;}
.ws46{word-spacing:4.731000px;}
.ws23{word-spacing:4.752000px;}
.wse7{word-spacing:4.788000px;}
.ws8a{word-spacing:4.845000px;}
.ws13b{word-spacing:4.968000px;}
.ws120{word-spacing:5.022000px;}
.ws102{word-spacing:5.130000px;}
.wsc2{word-spacing:5.187000px;}
.ws111{word-spacing:5.238000px;}
.ws109{word-spacing:5.244000px;}
.wsc8{word-spacing:5.358000px;}
.ws118{word-spacing:5.508000px;}
.wsfb{word-spacing:5.529000px;}
.wsb{word-spacing:5.562000px;}
.ws4d{word-spacing:5.586000px;}
.ws1b{word-spacing:5.616000px;}
.ws92{word-spacing:5.643000px;}
.wsa9{word-spacing:5.700000px;}
.ws163{word-spacing:5.724000px;}
.ws136{word-spacing:5.778000px;}
.ws113{word-spacing:5.832000px;}
.wsab{word-spacing:5.871000px;}
.ws10a{word-spacing:5.994000px;}
.ws5f{word-spacing:6.042000px;}
.wsb3{word-spacing:6.099000px;}
.ws15{word-spacing:6.102000px;}
.ws5a{word-spacing:6.156000px;}
.ws24{word-spacing:6.318000px;}
.ws159{word-spacing:6.426000px;}
.ws133{word-spacing:6.480000px;}
.wsa0{word-spacing:6.555000px;}
.ws48{word-spacing:6.612000px;}
.ws1d{word-spacing:6.642000px;}
.ws39{word-spacing:6.669000px;}
.ws53{word-spacing:6.726000px;}
.wsda{word-spacing:6.897000px;}
.ws108{word-spacing:6.954000px;}
.ws4a{word-spacing:7.125000px;}
.ws15a{word-spacing:7.236000px;}
.ws154{word-spacing:7.290000px;}
.wse6{word-spacing:7.296000px;}
.ws7d{word-spacing:7.398000px;}
.wsa1{word-spacing:7.410000px;}
.ws153{word-spacing:7.452000px;}
.wsaf{word-spacing:7.467000px;}
.ws13{word-spacing:7.560000px;}
.wse{word-spacing:7.614000px;}
.wsd{word-spacing:7.668000px;}
.ws56{word-spacing:7.695000px;}
.ws143{word-spacing:7.830000px;}
.ws15d{word-spacing:7.938000px;}
.ws14a{word-spacing:7.992000px;}
.wsae{word-spacing:8.037000px;}
.ws96{word-spacing:8.094000px;}
.ws16{word-spacing:8.100000px;}
.ws55{word-spacing:8.208000px;}
.ws59{word-spacing:8.265000px;}
.ws129{word-spacing:8.316000px;}
.ws150{word-spacing:8.478000px;}
.ws50{word-spacing:8.550000px;}
.wsc{word-spacing:8.586000px;}
.wsf0{word-spacing:8.607000px;}
.wsa3{word-spacing:8.664000px;}
.ws164{word-spacing:8.694000px;}
.ws45{word-spacing:8.721000px;}
.ws95{word-spacing:8.778000px;}
.ws13a{word-spacing:8.802000px;}
.ws73{word-spacing:8.835000px;}
.ws10e{word-spacing:8.856000px;}
.ws60{word-spacing:9.006000px;}
.ws71{word-spacing:9.177000px;}
.wsa4{word-spacing:9.234000px;}
.ws101{word-spacing:9.348000px;}
.ws152{word-spacing:9.504000px;}
.wsa7{word-spacing:9.519000px;}
.ws17{word-spacing:9.720000px;}
.ws10f{word-spacing:9.774000px;}
.ws4b{word-spacing:10.032000px;}
.ws66{word-spacing:10.089000px;}
.ws116{word-spacing:10.098000px;}
.wsfc{word-spacing:10.146000px;}
.wsad{word-spacing:10.260000px;}
.ws157{word-spacing:10.314000px;}
.ws125{word-spacing:10.368000px;}
.ws115{word-spacing:10.422000px;}
.wsc6{word-spacing:10.431000px;}
.wsfa{word-spacing:10.488000px;}
.ws9c{word-spacing:10.773000px;}
.ws69{word-spacing:11.115000px;}
.ws5{word-spacing:11.232000px;}
.ws137{word-spacing:11.286000px;}
.ws4c{word-spacing:11.343000px;}
.ws18{word-spacing:11.448000px;}
.ws77{word-spacing:11.457000px;}
.ws155{word-spacing:11.610000px;}
.ws93{word-spacing:11.628000px;}
.wsac{word-spacing:11.742000px;}
.ws6{word-spacing:11.772000px;}
.ws131{word-spacing:11.826000px;}
.ws12d{word-spacing:12.096000px;}
.ws9d{word-spacing:12.312000px;}
.ws151{word-spacing:12.636000px;}
.ws2a{word-spacing:12.690000px;}
.ws98{word-spacing:12.711000px;}
.ws112{word-spacing:12.798000px;}
.wsfd{word-spacing:13.053000px;}
.ws107{word-spacing:13.110000px;}
.ws3e{word-spacing:13.224000px;}
.ws165{word-spacing:13.230000px;}
.wsa{word-spacing:13.284000px;}
.ws91{word-spacing:13.623000px;}
.wsbf{word-spacing:13.737000px;}
.wsf3{word-spacing:13.794000px;}
.ws97{word-spacing:14.022000px;}
.ws161{word-spacing:14.472000px;}
.wsd8{word-spacing:14.934000px;}
.ws15e{word-spacing:15.012000px;}
.ws29{word-spacing:15.120000px;}
.ws58{word-spacing:15.162000px;}
.wsd5{word-spacing:15.219000px;}
.ws10c{word-spacing:15.768000px;}
.wsf4{word-spacing:15.960000px;}
.ws141{word-spacing:16.038000px;}
.ws27{word-spacing:16.254000px;}
.ws9e{word-spacing:17.271000px;}
.ws106{word-spacing:17.328000px;}
.wsd4{word-spacing:17.442000px;}
.wsf5{word-spacing:17.727000px;}
.ws10d{word-spacing:18.630000px;}
.wsf9{word-spacing:19.665000px;}
.wsf8{word-spacing:20.178000px;}
.ws41{word-spacing:20.292000px;}
.ws28{word-spacing:20.358000px;}
.ws90{word-spacing:21.546000px;}
.ws32{word-spacing:21.945000px;}
.ws12{word-spacing:23.382000px;}
.ws13e{word-spacing:23.976000px;}
.ws4{word-spacing:24.138000px;}
.ws10b{word-spacing:29.376000px;}
.ws166{word-spacing:30.837000px;}
.ws3{word-spacing:45.252000px;}
.wsee{word-spacing:63.888000px;}
.wsed{word-spacing:64.176000px;}
.wseb{word-spacing:97.230000px;}
.wse4{word-spacing:104.208000px;}
.wsdf{word-spacing:131.328000px;}
.wse3{word-spacing:150.672000px;}
.wsec{word-spacing:154.608000px;}
.wse1{word-spacing:185.856000px;}
.wse0{word-spacing:188.352000px;}
.wsd1{word-spacing:198.096000px;}
.wscc{word-spacing:247.200000px;}
.wse9{word-spacing:294.960000px;}
.wscd{word-spacing:299.424000px;}
.wsce{word-spacing:350.112000px;}
.wsd0{word-spacing:350.592000px;}
.wse8{word-spacing:352.896000px;}
.wsea{word-spacing:372.960000px;}
.wsd2{word-spacing:374.160000px;}
.wscf{word-spacing:375.168000px;}
.wsb8{word-spacing:556.848000px;}
.wsaa{word-spacing:790.560000px;}
._63{margin-left:-7.943400px;}
._a{margin-left:-6.912000px;}
._2{margin-left:-5.787600px;}
._3{margin-left:-3.942000px;}
._1{margin-left:-2.917200px;}
._0{margin-left:-1.512000px;}
._8{width:1.317600px;}
._7{width:3.142800px;}
._e{width:4.451700px;}
._f{width:5.614500px;}
._d{width:6.982500px;}
._c{width:8.059800px;}
._10{width:9.638700px;}
._11{width:11.223000px;}
._5{width:12.306600px;}
._6{width:13.408200px;}
._37{width:14.640000px;}
._4{width:16.945200px;}
._9{width:18.257400px;}
._65{width:19.716300px;}
._36{width:20.736000px;}
._64{width:23.997600px;}
._5e{width:75.360000px;}
._46{width:77.376000px;}
._62{width:79.152000px;}
._61{width:80.832000px;}
._60{width:92.496000px;}
._5f{width:93.936000px;}
._45{width:129.360000px;}
._5c{width:131.640000px;}
._5d{width:135.792000px;}
._22{width:139.776000px;}
._3a{width:142.992000px;}
._2b{width:149.328000px;}
._4e{width:155.280000px;}
._3b{width:158.064000px;}
._24{width:161.088000px;}
._4c{width:164.016000px;}
._4f{width:172.944000px;}
._4b{width:181.632000px;}
._52{width:195.504000px;}
._3f{width:206.064000px;}
._48{width:210.720000px;}
._23{width:215.760000px;}
._19{width:223.776000px;}
._2f{width:230.208000px;}
._47{width:231.216000px;}
._4a{width:232.944000px;}
._41{width:235.899600px;}
._21{width:255.744000px;}
._31{width:256.848000px;}
._49{width:262.032000px;}
._51{width:267.840000px;}
._3c{width:278.256000px;}
._44{width:291.264000px;}
._56{width:295.008000px;}
._34{width:299.184000px;}
._40{width:303.120000px;}
._1c{width:304.272000px;}
._42{width:305.712000px;}
._5a{width:307.062000px;}
._12{width:311.088000px;}
._50{width:314.256000px;}
._16{width:316.272000px;}
._27{width:319.776000px;}
._26{width:324.240000px;}
._5b{width:331.357200px;}
._38{width:356.389200px;}
._58{width:382.272000px;}
._3e{width:388.512000px;}
._3d{width:390.678000px;}
._1d{width:395.856000px;}
._39{width:402.421200px;}
._1f{width:409.152000px;}
._2a{width:422.304000px;}
._1e{width:430.512000px;}
._53{width:443.808000px;}
._4d{width:447.840000px;}
._54{width:467.664000px;}
._57{width:484.992000px;}
._28{width:486.384000px;}
._43{width:490.320000px;}
._59{width:510.528000px;}
._55{width:517.248000px;}
._2e{width:522.336000px;}
._32{width:523.680000px;}
._13{width:535.152000px;}
._17{width:579.936000px;}
._1b{width:585.312000px;}
._29{width:591.840000px;}
._15{width:612.000000px;}
._35{width:643.350000px;}
._33{width:650.016000px;}
._18{width:651.984000px;}
._1a{width:663.984000px;}
._2d{width:674.496000px;}
._2c{width:685.152000px;}
._14{width:704.064000px;}
._20{width:706.656000px;}
._30{width:718.944000px;}
._25{width:733.344000px;}
._b{width:1002.984000px;}
.fc3{color:rgb(4,6,6);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(33,154,58);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:33.231000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:276.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:21.255750px;}
.y1{bottom:44.880750px;}
.y53{bottom:69.221250px;}
.y52{bottom:83.625750px;}
.y85{bottom:88.491150px;}
.yf4{bottom:89.937450px;}
.ydd{bottom:90.028200px;}
.y13c{bottom:92.234250px;}
.y262{bottom:93.460200px;}
.y117{bottom:93.999900px;}
.y21c{bottom:94.808850px;}
.y2aa{bottom:97.163700px;}
.y167{bottom:97.217250px;}
.y51{bottom:98.030250px;}
.y23a{bottom:98.040150px;}
.y27e{bottom:100.578150px;}
.yb2{bottom:100.939950px;}
.y19e{bottom:104.471700px;}
.y84{bottom:104.992650px;}
.y2ca{bottom:105.668700px;}
.yf3{bottom:106.438950px;}
.ydc{bottom:106.529700px;}
.y1b6{bottom:106.724100px;}
.y261{bottom:109.961700px;}
.y116{bottom:110.501400px;}
.y21b{bottom:111.310350px;}
.y2a9{bottom:113.660700px;}
.y166{bottom:113.718750px;}
.y13b{bottom:113.726250px;}
.y1b5{bottom:113.924100px;}
.y27d{bottom:117.075150px;}
.yb1{bottom:117.441450px;}
.y83{bottom:121.494150px;}
.y2c4{bottom:122.165700px;}
.yf2{bottom:122.940450px;}
.ydb{bottom:123.031200px;}
.y260{bottom:126.463200px;}
.y115{bottom:127.002900px;}
.y21a{bottom:127.811850px;}
.y239{bottom:129.420150px;}
.y2a8{bottom:130.157700px;}
.y50{bottom:133.009650px;}
.y27c{bottom:133.572150px;}
.y13a{bottom:135.218250px;}
.y19d{bottom:135.851700px;}
.y238{bottom:136.620150px;}
.y82{bottom:137.995650px;}
.y2c3{bottom:138.662700px;}
.y165{bottom:138.727500px;}
.y30{bottom:140.332650px;}
.yb0{bottom:142.450200px;}
.y25f{bottom:142.964700px;}
.y114{bottom:143.504400px;}
.y219{bottom:144.308850px;}
.y1b4{bottom:146.864100px;}
.yf1{bottom:147.949200px;}
.y4f{bottom:148.008150px;}
.yda{bottom:148.053150px;}
.y20b{bottom:149.510850px;}
.y27b{bottom:150.069150px;}
.y19c{bottom:150.251700px;}
.y1e3{bottom:154.004700px;}
.y2a7{bottom:155.159700px;}
.y164{bottom:155.229000px;}
.y2f{bottom:156.087150px;}
.y139{bottom:156.710250px;}
.y193{bottom:157.451700px;}
.yaf{bottom:158.951700px;}
.y218{bottom:160.810350px;}
.y1b2{bottom:161.264100px;}
.y81{bottom:163.004400px;}
.y4e{bottom:163.006650px;}
.y2c9{bottom:163.664700px;}
.yd9{bottom:164.550150px;}
.y19b{bottom:164.651700px;}
.y20a{bottom:166.012350px;}
.y25e{bottom:167.973450px;}
.y113{bottom:168.515700px;}
.y237{bottom:169.560150px;}
.y1e2{bottom:170.506200px;}
.y138{bottom:171.110250px;}
.y2a6{bottom:171.656700px;}
.y163{bottom:171.730500px;}
.y191{bottom:171.851700px;}
.yf0{bottom:172.957950px;}
.y27a{bottom:175.071150px;}
.yae{bottom:175.453200px;}
.y1b3{bottom:175.664100px;}
.y217{bottom:177.311850px;}
.y19a{bottom:179.051700px;}
.y80{bottom:179.505900px;}
.y2c2{bottom:180.161700px;}
.y2e{bottom:180.346650px;}
.yd8{bottom:181.047150px;}
.y209{bottom:182.513850px;}
.y25d{bottom:184.474950px;}
.y190{bottom:186.251700px;}
.y4d{bottom:186.510150px;}
.y1e1{bottom:187.007700px;}
.y2a5{bottom:188.153700px;}
.y162{bottom:188.232000px;}
.yef{bottom:189.459450px;}
.y279{bottom:191.568150px;}
.yad{bottom:191.954700px;}
.y199{bottom:193.451700px;}
.y216{bottom:193.813350px;}
.y236{bottom:195.304350px;}
.y7f{bottom:196.007400px;}
.y2d{bottom:196.101150px;}
.y112{bottom:196.403700px;}
.y2c1{bottom:196.658700px;}
.yd7{bottom:197.544150px;}
.y208{bottom:199.015350px;}
.y18f{bottom:200.651700px;}
.y25c{bottom:200.976450px;}
.y137{bottom:201.181500px;}
.y1b1{bottom:201.404100px;}
.y4c{bottom:201.508650px;}
.y1e0{bottom:203.509200px;}
.y161{bottom:204.733500px;}
.y2d9{bottom:205.055400px;}
.yee{bottom:205.960950px;}
.y198{bottom:207.851700px;}
.y278{bottom:208.065150px;}
.yac{bottom:208.456200px;}
.y111{bottom:210.803700px;}
.y2c{bottom:211.855650px;}
.y7e{bottom:212.508900px;}
.y2a4{bottom:213.155700px;}
.yd6{bottom:214.041150px;}
.y18e{bottom:215.051700px;}
.y207{bottom:215.516850px;}
.y4b{bottom:216.507150px;}
.y25b{bottom:217.477950px;}
.y136{bottom:217.681500px;}
.y1df{bottom:220.010700px;}
.y160{bottom:221.235000px;}
.y2d8{bottom:221.556900px;}
.y2c8{bottom:221.660700px;}
.y197{bottom:222.251700px;}
.yed{bottom:222.462450px;}
.yab{bottom:224.957700px;}
.y110{bottom:225.203700px;}
.y235{bottom:226.331550px;}
.y2b{bottom:227.610150px;}
.y7d{bottom:229.010400px;}
.y18d{bottom:229.451700px;}
.y2a3{bottom:229.652700px;}
.yd5{bottom:230.538150px;}
.y4a{bottom:231.505650px;}
.y206{bottom:232.018350px;}
.y277{bottom:233.067150px;}
.y1b0{bottom:233.523300px;}
.y25a{bottom:233.979450px;}
.y1de{bottom:236.512200px;}
.y196{bottom:236.651700px;}
.y15f{bottom:237.736500px;}
.y2d7{bottom:238.058400px;}
.y2c0{bottom:238.157700px;}
.yec{bottom:238.963950px;}
.y10f{bottom:239.603700px;}
.yaa{bottom:241.459200px;}
.y135{bottom:242.689500px;}
.y2a{bottom:243.364650px;}
.y192{bottom:243.851700px;}
.y7c{bottom:245.511900px;}
.y49{bottom:246.504150px;}
.yd4{bottom:247.035150px;}
.y205{bottom:248.519850px;}
.y276{bottom:249.564150px;}
.y259{bottom:250.480950px;}
.y195{bottom:251.051700px;}
.y234{bottom:251.327850px;}
.y10e{bottom:254.003700px;}
.y2d6{bottom:254.559900px;}
.y2a2{bottom:254.654700px;}
.yeb{bottom:255.465450px;}
.ya9{bottom:257.960700px;}
.y1af{bottom:258.501450px;}
.y29{bottom:259.119150px;}
.y48{bottom:261.502650px;}
.y1dd{bottom:261.520950px;}
.y7b{bottom:262.013400px;}
.y15e{bottom:262.745250px;}
.y204{bottom:265.021350px;}
.y194{bottom:265.451700px;}
.y275{bottom:266.061150px;}
.y258{bottom:266.982450px;}
.y233{bottom:267.829350px;}
.y10d{bottom:268.403700px;}
.y2d5{bottom:271.061400px;}
.y2a1{bottom:271.151700px;}
.yd3{bottom:271.966950px;}
.y134{bottom:274.069500px;}
.ya8{bottom:274.462200px;}
.y28{bottom:274.873650px;}
.y1ae{bottom:275.002950px;}
.y47{bottom:276.501150px;}
.y1dc{bottom:278.022450px;}
.y7a{bottom:278.514900px;}
.y15d{bottom:279.246750px;}
.y2bf{bottom:279.656700px;}
.yea{bottom:280.474200px;}
.y203{bottom:281.522850px;}
.y10c{bottom:282.803700px;}
.y257{bottom:283.483950px;}
.y232{bottom:284.330850px;}
.y2a0{bottom:287.648700px;}
.yd2{bottom:288.468450px;}
.y27{bottom:290.628150px;}
.ya7{bottom:290.963700px;}
.y274{bottom:291.063150px;}
.y18c{bottom:291.191700px;}
.y46{bottom:291.499650px;}
.y1ad{bottom:291.504450px;}
.y1db{bottom:294.523950px;}
.y79{bottom:295.016400px;}
.y15c{bottom:295.748250px;}
.y2be{bottom:296.153700px;}
.ye9{bottom:296.975700px;}
.y202{bottom:298.024350px;}
.y133{bottom:299.809500px;}
.y256{bottom:299.985450px;}
.y231{bottom:300.832350px;}
.y2d3{bottom:304.145700px;}
.yd1{bottom:304.969950px;}
.y18b{bottom:305.591700px;}
.y26{bottom:306.382650px;}
.y45{bottom:306.498150px;}
.ya6{bottom:307.465200px;}
.y273{bottom:307.560150px;}
.y1ac{bottom:308.005950px;}
.y10b{bottom:308.543700px;}
.y1da{bottom:311.025450px;}
.y78{bottom:311.517900px;}
.y15b{bottom:312.249750px;}
.y29f{bottom:312.650700px;}
.ye8{bottom:313.477200px;}
.y255{bottom:316.486950px;}
.y230{bottom:317.333850px;}
.y188{bottom:319.991700px;}
.yd0{bottom:321.471450px;}
.y44{bottom:321.496650px;}
.y25{bottom:322.137150px;}
.y201{bottom:323.033100px;}
.ya5{bottom:323.966700px;}
.y272{bottom:324.057150px;}
.y1ab{bottom:324.507450px;}
.y132{bottom:325.549500px;}
.y1d9{bottom:327.526950px;}
.y77{bottom:328.019400px;}
.y15a{bottom:328.751250px;}
.y29e{bottom:329.147700px;}
.ye7{bottom:329.978700px;}
.y254{bottom:332.988450px;}
.y22f{bottom:333.835350px;}
.y10a{bottom:334.283700px;}
.y187{bottom:334.391700px;}
.y43{bottom:336.495150px;}
.y2bd{bottom:337.652700px;}
.y24{bottom:337.891650px;}
.ycf{bottom:337.972950px;}
.y200{bottom:339.534600px;}
.y271{bottom:340.554150px;}
.y1aa{bottom:341.008950px;}
.y1d8{bottom:344.028450px;}
.y76{bottom:344.520900px;}
.y159{bottom:345.252750px;}
.y29d{bottom:345.644700px;}
.ye6{bottom:346.480200px;}
.y109{bottom:348.683700px;}
.y186{bottom:348.791700px;}
.ya4{bottom:348.975450px;}
.y253{bottom:349.489950px;}
.y22e{bottom:350.363850px;}
.y131{bottom:351.289500px;}
.y42{bottom:351.493650px;}
.y23{bottom:353.646150px;}
.y2bc{bottom:354.149700px;}
.yce{bottom:354.474450px;}
.y1ff{bottom:356.036100px;}
.y1a9{bottom:357.510450px;}
.y130{bottom:358.489500px;}
.y1d7{bottom:360.529950px;}
.y29c{bottom:362.141700px;}
.y108{bottom:363.083700px;}
.y185{bottom:363.191700px;}
.ya3{bottom:365.476950px;}
.y270{bottom:365.556150px;}
.y252{bottom:365.991450px;}
.y41{bottom:366.492150px;}
.y22d{bottom:366.863850px;}
.y22{bottom:369.400650px;}
.y75{bottom:369.529650px;}
.y2bb{bottom:370.646700px;}
.ycd{bottom:370.975950px;}
.ye5{bottom:371.488950px;}
.y1fe{bottom:372.537600px;}
.y1a8{bottom:374.011950px;}
.y158{bottom:374.508600px;}
.y1d6{bottom:377.031450px;}
.y107{bottom:377.483700px;}
.y184{bottom:377.591700px;}
.y2d2{bottom:378.638700px;}
.y2c7{bottom:379.151700px;}
.y40{bottom:381.490650px;}
.ya2{bottom:381.978450px;}
.y26f{bottom:382.053150px;}
.y21{bottom:385.155150px;}
.y74{bottom:386.031150px;}
.y29b{bottom:387.143700px;}
.ycc{bottom:387.477450px;}
.ye4{bottom:387.990450px;}
.y1fd{bottom:389.039100px;}
.y1a7{bottom:390.513450px;}
.y251{bottom:391.000200px;}
.y12f{bottom:391.429500px;}
.y106{bottom:391.883700px;}
.y183{bottom:391.991700px;}
.y1d5{bottom:393.532950px;}
.y2ba{bottom:395.648700px;}
.y3f{bottom:396.489150px;}
.y22c{bottom:398.243850px;}
.ya1{bottom:398.479950px;}
.y26e{bottom:398.550150px;}
.y12e{bottom:398.629500px;}
.y20{bottom:400.909650px;}
.y73{bottom:402.532650px;}
.y29a{bottom:403.640700px;}
.ye3{bottom:404.491950px;}
.y1fc{bottom:405.540600px;}
.y105{bottom:406.283700px;}
.y18a{bottom:406.391700px;}
.y250{bottom:407.501700px;}
.y1d4{bottom:410.034450px;}
.y3e{bottom:411.487650px;}
.y2b9{bottom:412.145700px;}
.ycb{bottom:412.486200px;}
.ya0{bottom:414.981450px;}
.y1a6{bottom:415.522200px;}
.y1f{bottom:416.664150px;}
.y72{bottom:419.034150px;}
.y299{bottom:420.137700px;}
.y2c6{bottom:420.650700px;}
.y104{bottom:420.683700px;}
.y189{bottom:420.791700px;}
.ye2{bottom:420.993450px;}
.y1fb{bottom:422.042100px;}
.y26d{bottom:423.552150px;}
.y22b{bottom:423.983850px;}
.y24f{bottom:424.003200px;}
.y157{bottom:425.260350px;}
.y3d{bottom:426.486150px;}
.y2b8{bottom:428.642700px;}
.y9f{bottom:431.482950px;}
.y12d{bottom:431.569500px;}
.y1a5{bottom:432.023700px;}
.y1e{bottom:432.418650px;}
.y1d3{bottom:435.043200px;}
.y71{bottom:435.535650px;}
.y2c5{bottom:437.147700px;}
.yca{bottom:437.494950px;}
.y1fa{bottom:438.543600px;}
.y12c{bottom:438.769500px;}
.y26c{bottom:440.049150px;}
.y24e{bottom:440.504700px;}
.y3c{bottom:441.484650px;}
.y156{bottom:441.761850px;}
.y298{bottom:445.139700px;}
.y103{bottom:446.423700px;}
.y182{bottom:446.531700px;}
.y9e{bottom:447.984450px;}
.y1d{bottom:448.173150px;}
.y1a4{bottom:448.525200px;}
.y22a{bottom:449.723850px;}
.y1d2{bottom:451.544700px;}
.y70{bottom:452.037150px;}
.y2b7{bottom:453.644700px;}
.yc9{bottom:453.996450px;}
.y1f9{bottom:455.045100px;}
.y3b{bottom:456.483150px;}
.y26b{bottom:456.546150px;}
.y24d{bottom:457.006200px;}
.y155{bottom:458.263350px;}
.y181{bottom:460.931700px;}
.y297{bottom:461.636700px;}
.y1c{bottom:463.927650px;}
.y9d{bottom:464.485950px;}
.y1a3{bottom:465.026700px;}
.y1d1{bottom:468.046200px;}
.y6f{bottom:468.538650px;}
.y2b6{bottom:470.141700px;}
.yc8{bottom:470.497950px;}
.y3a{bottom:471.481650px;}
.y1f8{bottom:471.546600px;}
.y12b{bottom:471.709500px;}
.y26a{bottom:473.043150px;}
.y24c{bottom:473.507700px;}
.y154{bottom:474.764850px;}
.y180{bottom:475.331700px;}
.y229{bottom:475.463850px;}
.y296{bottom:478.133700px;}
.y102{bottom:478.543050px;}
.y12a{bottom:478.909500px;}
.y1b{bottom:479.682150px;}
.y9c{bottom:480.987450px;}
.y1a2{bottom:481.528200px;}
.y1d0{bottom:484.547700px;}
.y6e{bottom:485.040150px;}
.y39{bottom:486.480150px;}
.y2d4{bottom:486.638700px;}
.yc7{bottom:486.999450px;}
.y1f7{bottom:488.048100px;}
.y17f{bottom:489.731700px;}
.y24b{bottom:490.009200px;}
.y153{bottom:491.266350px;}
.y2b5{bottom:495.143700px;}
.y1a{bottom:495.436650px;}
.y1a1{bottom:498.029700px;}
.y269{bottom:498.045150px;}
.y1cf{bottom:501.049200px;}
.y228{bottom:501.203850px;}
.y38{bottom:501.478650px;}
.y6d{bottom:501.541650px;}
.y295{bottom:503.135700px;}
.yc6{bottom:503.500950px;}
.y17e{bottom:504.131700px;}
.y1f6{bottom:504.549600px;}
.y9b{bottom:505.996200px;}
.y24a{bottom:506.510700px;}
.y152{bottom:507.767850px;}
.y19{bottom:511.191150px;}
.y2b4{bottom:511.640700px;}
.y129{bottom:511.849500px;}
.ye1{bottom:512.008200px;}
.y1a0{bottom:514.531200px;}
.y268{bottom:514.542150px;}
.y37{bottom:516.477150px;}
.y1ce{bottom:517.550700px;}
.y6c{bottom:518.043150px;}
.y17d{bottom:518.531700px;}
.y294{bottom:519.632700px;}
.y101{bottom:520.002450px;}
.y1f5{bottom:521.051100px;}
.y9a{bottom:522.497700px;}
.y249{bottom:523.012200px;}
.y151{bottom:524.269350px;}
.y227{bottom:526.943850px;}
.y18{bottom:526.945650px;}
.y2b3{bottom:528.137700px;}
.yc5{bottom:528.509700px;}
.y267{bottom:531.039150px;}
.y36{bottom:531.475650px;}
.y17c{bottom:532.931700px;}
.y172{bottom:533.063700px;}
.y1cd{bottom:534.052200px;}
.y2d1{bottom:536.129700px;}
.y100{bottom:536.503950px;}
.y1f4{bottom:537.552600px;}
.y128{bottom:537.589500px;}
.y99{bottom:538.999200px;}
.y248{bottom:539.513700px;}
.y150{bottom:540.770850px;}
.y17{bottom:542.700150px;}
.y6b{bottom:543.051900px;}
.y19f{bottom:543.787050px;}
.y293{bottom:544.634700px;}
.yc4{bottom:545.011200px;}
.y35{bottom:546.474150px;}
.y17b{bottom:547.331700px;}
.y171{bottom:547.463700px;}
.y1cc{bottom:550.553700px;}
.y226{bottom:552.683850px;}
.yff{bottom:553.005450px;}
.y2b2{bottom:553.139700px;}
.y98{bottom:555.500700px;}
.y247{bottom:556.015200px;}
.y266{bottom:556.041150px;}
.y14f{bottom:557.272350px;}
.y16{bottom:558.454650px;}
.y6a{bottom:559.553400px;}
.y292{bottom:561.131700px;}
.y34{bottom:561.472650px;}
.yc3{bottom:561.512700px;}
.y17a{bottom:561.731700px;}
.y170{bottom:561.863700px;}
.y1f3{bottom:562.597500px;}
.y127{bottom:563.329500px;}
.y1cb{bottom:567.055200px;}
.yfe{bottom:569.506950px;}
.y2b1{bottom:569.636700px;}
.y246{bottom:572.516700px;}
.y265{bottom:572.538150px;}
.y15{bottom:574.209150px;}
.y69{bottom:576.054900px;}
.y179{bottom:576.131700px;}
.y16f{bottom:576.263700px;}
.y33{bottom:576.471150px;}
.y291{bottom:577.628700px;}
.yc2{bottom:578.014200px;}
.y225{bottom:578.423850px;}
.y97{bottom:580.509450px;}
.y14e{bottom:582.275850px;}
.y1ca{bottom:583.556700px;}
.yfd{bottom:586.008450px;}
.y2b0{bottom:586.133700px;}
.y245{bottom:589.018200px;}
.y264{bottom:589.035150px;}
.y126{bottom:589.069500px;}
.y14{bottom:589.963650px;}
.y178{bottom:590.531700px;}
.y32{bottom:591.469650px;}
.y68{bottom:592.556400px;}
.y1f2{bottom:593.977500px;}
.y2d0{bottom:594.125700px;}
.yc1{bottom:594.515700px;}
.y96{bottom:597.010950px;}
.y1c9{bottom:600.058200px;}
.yfc{bottom:602.509950px;}
.y290{bottom:602.630700px;}
.y177{bottom:604.931700px;}
.y244{bottom:605.519700px;}
.y13{bottom:605.718150px;}
.y31{bottom:606.468150px;}
.y67{bottom:609.057900px;}
.y224{bottom:610.542900px;}
.yc0{bottom:611.017200px;}
.y14d{bottom:611.531850px;}
.y95{bottom:613.512450px;}
.y125{bottom:614.809500px;}
.y263{bottom:618.291000px;}
.y28f{bottom:619.127700px;}
.y176{bottom:619.331700px;}
.y1f1{bottom:619.717500px;}
.y12{bottom:621.468150px;}
.y215{bottom:621.765900px;}
.y124{bottom:622.009500px;}
.y1c8{bottom:625.077750px;}
.y66{bottom:625.559400px;}
.ybf{bottom:627.518700px;}
.y2af{bottom:627.632700px;}
.y94{bottom:630.013950px;}
.y243{bottom:630.528450px;}
.y14c{bottom:633.023850px;}
.y175{bottom:633.731700px;}
.y223{bottom:635.543850px;}
.y2cf{bottom:635.624700px;}
.y65{bottom:642.060900px;}
.ybe{bottom:644.020200px;}
.y28e{bottom:644.129700px;}
.y1f0{bottom:645.457500px;}
.y93{bottom:646.515450px;}
.y214{bottom:646.765350px;}
.y242{bottom:647.029950px;}
.y174{bottom:648.131700px;}
.y11{bottom:651.600150px;}
.y222{bottom:652.045350px;}
.y2ce{bottom:652.121700px;}
.y14b{bottom:654.515850px;}
.y123{bottom:654.949500px;}
.y1c7{bottom:656.457750px;}
.y1ef{bottom:659.857500px;}
.ybd{bottom:660.521700px;}
.y28d{bottom:660.626700px;}
.y173{bottom:662.531700px;}
.y92{bottom:663.016950px;}
.y213{bottom:663.266850px;}
.y241{bottom:663.531450px;}
.y10{bottom:666.000300px;}
.y64{bottom:667.069650px;}
.y221{bottom:668.543850px;}
.ye0{bottom:669.028950px;}
.ye{bottom:669.600150px;}
.y1c5{bottom:670.857750px;}
.y14a{bottom:676.007850px;}
.ybc{bottom:677.023200px;}
.y2ae{bottom:677.123700px;}
.y212{bottom:679.768350px;}
.y240{bottom:680.032950px;}
.y122{bottom:680.689500px;}
.y149{bottom:683.207850px;}
.y63{bottom:683.571150px;}
.yd{bottom:684.000300px;}
.yf{bottom:684.661200px;}
.y220{bottom:685.045350px;}
.y1c6{bottom:685.257750px;}
.ydf{bottom:685.530450px;}
.y1ee{bottom:685.597500px;}
.y28c{bottom:685.628700px;}
.y91{bottom:688.025700px;}
.y16e{bottom:688.535700px;}
.yfb{bottom:693.524700px;}
.y2cd{bottom:693.620700px;}
.y16d{bottom:695.735700px;}
.y211{bottom:696.269850px;}
.y23f{bottom:696.534450px;}
.y62{bottom:700.072650px;}
.y21f{bottom:701.518950px;}
.ybb{bottom:702.031950px;}
.y28b{bottom:702.125700px;}
.yc{bottom:702.656700px;}
.y90{bottom:704.527200px;}
.y121{bottom:706.429500px;}
.yfa{bottom:710.026200px;}
.y2cc{bottom:710.117700px;}
.y1c4{bottom:710.997750px;}
.y1ed{bottom:711.337500px;}
.y148{bottom:711.899850px;}
.y23e{bottom:713.035950px;}
.y61{bottom:716.574150px;}
.y210{bottom:717.037500px;}
.yba{bottom:718.533450px;}
.y28a{bottom:718.622700px;}
.yb{bottom:720.652200px;}
.y8f{bottom:721.028700px;}
.y1c3{bottom:725.397750px;}
.yf9{bottom:726.527700px;}
.y23d{bottom:729.537450px;}
.y120{bottom:732.169500px;}
.y60{bottom:733.075650px;}
.y147{bottom:733.391850px;}
.yb9{bottom:735.034950px;}
.y16c{bottom:735.054750px;}
.y2ad{bottom:735.119700px;}
.y1ec{bottom:737.077500px;}
.y8e{bottom:737.530200px;}
.ya{bottom:738.652200px;}
.y1c2{bottom:739.797750px;}
.y146{bottom:740.591850px;}
.yf8{bottom:743.029200px;}
.y289{bottom:743.624700px;}
.y23c{bottom:746.038950px;}
.y1be{bottom:746.997750px;}
.y20f{bottom:748.417500px;}
.y5f{bottom:749.577150px;}
.yb8{bottom:751.536450px;}
.y2ac{bottom:751.616700px;}
.y1c1{bottom:754.197750px;}
.y11f{bottom:757.909500px;}
.yf7{bottom:759.530700px;}
.y16b{bottom:760.043700px;}
.y288{bottom:760.121700px;}
.y8d{bottom:762.538950px;}
.y1eb{bottom:762.817500px;}
.y9{bottom:765.157050px;}
.y5e{bottom:766.078650px;}
.yb7{bottom:768.037950px;}
.y1c0{bottom:768.597750px;}
.y145{bottom:769.283850px;}
.y23b{bottom:775.294950px;}
.y21e{bottom:776.032200px;}
.y16a{bottom:776.545200px;}
.y287{bottom:776.618700px;}
.y5d{bottom:782.580150px;}
.y1bf{bottom:782.997750px;}
.yb6{bottom:784.539450px;}
.y11e{bottom:785.053500px;}
.y8{bottom:788.557050px;}
.y1ea{bottom:788.557500px;}
.y144{bottom:790.775850px;}
.y8c{bottom:791.794950px;}
.y21d{bottom:792.533700px;}
.y169{bottom:793.046700px;}
.y286{bottom:793.115700px;}
.yb5{bottom:801.040950px;}
.y20e{bottom:802.957500px;}
.y5c{bottom:807.588900px;}
.y1bd{bottom:808.737750px;}
.y168{bottom:809.548200px;}
.y2ab{bottom:809.612700px;}
.y7{bottom:811.957050px;}
.y11d{bottom:812.197500px;}
.y143{bottom:812.267850px;}
.y1e9{bottom:814.297500px;}
.yb4{bottom:817.542450px;}
.y285{bottom:818.117700px;}
.y1bb{bottom:823.137750px;}
.y5b{bottom:824.090400px;}
.yde{bottom:826.049700px;}
.y142{bottom:826.667850px;}
.y20d{bottom:828.697500px;}
.yb3{bottom:834.043950px;}
.y284{bottom:834.614700px;}
.y1bc{bottom:837.537750px;}
.y11c{bottom:837.937500px;}
.y6{bottom:839.608050px;}
.y1e8{bottom:840.037500px;}
.y5a{bottom:840.591900px;}
.y8b{bottom:842.551200px;}
.y141{bottom:848.159850px;}
.yf6{bottom:850.545450px;}
.y283{bottom:851.111700px;}
.y1e7{bottom:854.437500px;}
.y59{bottom:857.093400px;}
.y8a{bottom:859.052700px;}
.y20c{bottom:861.637500px;}
.y140{bottom:862.559850px;}
.y5{bottom:863.008050px;}
.y1ba{bottom:863.277750px;}
.y11b{bottom:863.677500px;}
.yf5{bottom:867.046950px;}
.y282{bottom:867.608700px;}
.y58{bottom:873.594900px;}
.y89{bottom:875.554200px;}
.y2cb{bottom:876.113700px;}
.y1b8{bottom:877.677750px;}
.y11a{bottom:878.077500px;}
.y1e5{bottom:880.177500px;}
.y13f{bottom:884.051850px;}
.y1e4{bottom:887.377500px;}
.y57{bottom:890.096400px;}
.y88{bottom:892.055700px;}
.y1b9{bottom:892.077750px;}
.y281{bottom:892.610700px;}
.y1e6{bottom:894.577500px;}
.y4{bottom:900.023550px;}
.y13e{bottom:905.543850px;}
.y87{bottom:908.557200px;}
.y280{bottom:909.107700px;}
.y119{bottom:910.196850px;}
.y1b7{bottom:917.817750px;}
.y3{bottom:919.263300px;}
.y56{bottom:919.352250px;}
.y13d{bottom:919.943850px;}
.y86{bottom:925.058700px;}
.y27f{bottom:925.604700px;}
.y118{bottom:926.696850px;}
.y2{bottom:945.232950px;}
.y55{bottom:968.712900px;}
.h1b{height:30.577148px;}
.h5{height:32.906250px;}
.h12{height:34.945312px;}
.h13{height:34.968750px;}
.h16{height:34.992188px;}
.hf{height:36.960000px;}
.hd{height:39.313477px;}
.hb{height:39.339844px;}
.h9{height:39.366211px;}
.ha{height:41.497559px;}
.h11{height:41.525391px;}
.h1c{height:41.553223px;}
.h2{height:41.580000px;}
.h1a{height:43.202903px;}
.h18{height:43.208303px;}
.h19{height:43.302503px;}
.he{height:48.805664px;}
.hc{height:51.517090px;}
.h10{height:52.417969px;}
.h8{height:52.453125px;}
.h6{height:56.786133px;}
.h14{height:63.745312px;}
.h15{height:63.768750px;}
.h4{height:64.680000px;}
.h7{height:70.497070px;}
.h17{height:92.568750px;}
.h3{height:212.520000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x18{left:85.039350px;}
.x77{left:90.094050px;}
.x4d{left:92.457900px;}
.x4b{left:95.481900px;}
.x17{left:98.745150px;}
.x4e{left:100.125900px;}
.x75{left:102.228150px;}
.x71{left:103.361850px;}
.x5{left:106.299150px;}
.x16{left:107.724000px;}
.x15{left:111.684900px;}
.x6{left:114.366000px;}
.x42{left:116.189850px;}
.x57{left:117.726450px;}
.x58{left:121.386450px;}
.x7{left:123.439950px;}
.x47{left:124.529850px;}
.x54{left:126.273900px;}
.x5c{left:127.386450px;}
.x39{left:128.837850px;}
.x38{left:129.857850px;}
.x4c{left:131.817900px;}
.x3e{left:132.857850px;}
.x3b{left:134.849850px;}
.x3f{left:136.205850px;}
.x3a{left:137.513850px;}
.x51{left:139.509900px;}
.x43{left:140.537850px;}
.x37{left:141.845850px;}
.x52{left:142.845900px;}
.x1c{left:144.856950px;}
.x3d{left:145.865850px;}
.x2d{left:147.496950px;}
.x46{left:150.869850px;}
.x3c{left:153.869850px;}
.x9{left:155.418000px;}
.x28{left:156.508950px;}
.x1b{left:158.608650px;}
.x44{left:160.865850px;}
.x40{left:164.225850px;}
.x1e{left:169.852950px;}
.x1d{left:174.532950px;}
.x2b{left:178.852950px;}
.x1f{left:182.872950px;}
.x29{left:188.512950px;}
.x2c{left:190.852950px;}
.x2a{left:194.860950px;}
.x2e{left:196.852950px;}
.x20{left:197.872950px;}
.x1a{left:201.196200px;}
.x8{left:202.367700px;}
.x59{left:214.290450px;}
.x3{left:222.760950px;}
.x6e{left:224.412450px;}
.x55{left:229.145850px;}
.x72{left:235.336350px;}
.x63{left:241.750350px;}
.x4a{left:247.049850px;}
.x4{left:267.745650px;}
.x36{left:273.680400px;}
.x76{left:275.216100px;}
.x2{left:281.347800px;}
.x4f{left:285.405900px;}
.xb{left:287.324250px;}
.xc{left:298.151250px;}
.x73{left:299.367600px;}
.x74{left:304.228800px;}
.x35{left:305.404950px;}
.x49{left:326.705850px;}
.x19{left:329.781600px;}
.xa{left:330.918000px;}
.x41{left:335.321850px;}
.xe{left:336.470250px;}
.x1{left:351.041400px;}
.x64{left:361.428900px;}
.x53{left:367.821900px;}
.x69{left:368.840700px;}
.x65{left:370.260900px;}
.x67{left:374.168700px;}
.x50{left:376.137900px;}
.x6a{left:379.196700px;}
.x14{left:381.047250px;}
.xd{left:382.533000px;}
.x68{left:386.024700px;}
.x66{left:390.836700px;}
.x6d{left:394.856700px;}
.x6c{left:396.188700px;}
.x6b{left:402.860700px;}
.x21{left:413.020950px;}
.x31{left:417.004950px;}
.x30{left:424.996950px;}
.x25{left:426.688950px;}
.x48{left:428.261850px;}
.x24{left:430.012950px;}
.x27{left:437.464950px;}
.x26{left:440.692950px;}
.x23{left:443.032950px;}
.x22{left:445.036950px;}
.x45{left:448.253850px;}
.x34{left:458.680950px;}
.x33{left:461.344950px;}
.x32{left:463.360950px;}
.x10{left:467.126250px;}
.x2f{left:471.688950px;}
.xf{left:473.721000px;}
.x70{left:504.905850px;}
.x12{left:517.697250px;}
.x6f{left:534.905850px;}
.x11{left:549.800250px;}
.x78{left:560.578350px;}
.x13{left:562.698300px;}
.x5e{left:566.754450px;}
.x56{left:568.770450px;}
.x61{left:570.066450px;}
.x5a{left:571.434450px;}
.x5d{left:574.098450px;}
.x60{left:575.742450px;}
.x5f{left:577.746450px;}
.x5b{left:579.438450px;}
.x62{left:581.406450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.888000pt;}
.v1{vertical-align:25.600000pt;}
.ls6{letter-spacing:-3.157333pt;}
.ls2{letter-spacing:-1.440000pt;}
.ls5{letter-spacing:-1.013333pt;}
.ls7{letter-spacing:-0.725333pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.004235pt;}
.ls1{letter-spacing:2.133333pt;}
.wse5{word-spacing:-14.085333pt;}
.ws1{word-spacing:-13.344000pt;}
.ws99{word-spacing:-11.861333pt;}
.ws0{word-spacing:-10.656000pt;}
.wse2{word-spacing:-8.704000pt;}
.ws128{word-spacing:-7.920000pt;}
.ws9f{word-spacing:-7.144000pt;}
.ws8c{word-spacing:-6.586667pt;}
.ws8b{word-spacing:-6.485333pt;}
.ws6a{word-spacing:-5.218667pt;}
.wsc7{word-spacing:-5.168000pt;}
.wsb9{word-spacing:-4.357333pt;}
.wsb2{word-spacing:-4.256000pt;}
.ws5d{word-spacing:-4.205333pt;}
.ws86{word-spacing:-4.002667pt;}
.ws83{word-spacing:-3.901333pt;}
.ws11e{word-spacing:-3.600000pt;}
.wsb1{word-spacing:-3.546667pt;}
.ws1a{word-spacing:-3.408000pt;}
.ws68{word-spacing:-3.344000pt;}
.ws14b{word-spacing:-3.168000pt;}
.ws33{word-spacing:-3.141333pt;}
.wsc4{word-spacing:-2.989333pt;}
.ws123{word-spacing:-2.928000pt;}
.ws94{word-spacing:-2.837333pt;}
.wsdd{word-spacing:-2.736000pt;}
.ws52{word-spacing:-2.584000pt;}
.ws146{word-spacing:-2.544000pt;}
.wsa6{word-spacing:-2.533333pt;}
.wsc3{word-spacing:-2.432000pt;}
.ws12a{word-spacing:-2.400000pt;}
.ws26{word-spacing:-2.352000pt;}
.wsf7{word-spacing:-2.330667pt;}
.wsde{word-spacing:-2.280000pt;}
.ws11a{word-spacing:-2.160000pt;}
.ws81{word-spacing:-2.128000pt;}
.wsf6{word-spacing:-2.077333pt;}
.wsbc{word-spacing:-2.026667pt;}
.wsd6{word-spacing:-1.976000pt;}
.ws65{word-spacing:-1.925333pt;}
.ws84{word-spacing:-1.874667pt;}
.ws14c{word-spacing:-1.872000pt;}
.ws1e{word-spacing:-1.824000pt;}
.ws11c{word-spacing:-1.776000pt;}
.ws12c{word-spacing:-1.728000pt;}
.ws100{word-spacing:-1.722667pt;}
.ws88{word-spacing:-1.672000pt;}
.ws75{word-spacing:-1.621333pt;}
.ws142{word-spacing:-1.584000pt;}
.ws104{word-spacing:-1.520000pt;}
.ws70{word-spacing:-1.469333pt;}
.ws2c{word-spacing:-1.440000pt;}
.wsf2{word-spacing:-1.418667pt;}
.wsc1{word-spacing:-1.368000pt;}
.ws126{word-spacing:-1.296000pt;}
.wsbd{word-spacing:-1.266667pt;}
.ws13f{word-spacing:-1.248000pt;}
.ws44{word-spacing:-1.216000pt;}
.ws162{word-spacing:-1.200000pt;}
.ws78{word-spacing:-1.165333pt;}
.ws49{word-spacing:-1.064000pt;}
.ws156{word-spacing:-1.056000pt;}
.ws3f{word-spacing:-1.013333pt;}
.ws7c{word-spacing:-1.008000pt;}
.wsef{word-spacing:-0.962667pt;}
.ws11f{word-spacing:-0.960000pt;}
.ws79{word-spacing:-0.912000pt;}
.wsd3{word-spacing:-0.768000pt;}
.wsc0{word-spacing:-0.760000pt;}
.ws25{word-spacing:-0.720000pt;}
.wsd7{word-spacing:-0.709333pt;}
.wsdb{word-spacing:-0.658667pt;}
.ws127{word-spacing:-0.624000pt;}
.wscb{word-spacing:-0.608000pt;}
.ws117{word-spacing:-0.576000pt;}
.ws4e{word-spacing:-0.557333pt;}
.ws51{word-spacing:-0.506667pt;}
.ws6c{word-spacing:-0.456000pt;}
.ws15c{word-spacing:-0.432000pt;}
.wsb6{word-spacing:-0.405333pt;}
.ws5c{word-spacing:-0.304000pt;}
.ws3c{word-spacing:-0.253333pt;}
.ws12e{word-spacing:-0.240000pt;}
.ws61{word-spacing:-0.202667pt;}
.ws2d{word-spacing:-0.144000pt;}
.wsbe{word-spacing:-0.101333pt;}
.ws14f{word-spacing:-0.096000pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:0.048000pt;}
.ws5b{word-spacing:0.101333pt;}
.ws3d{word-spacing:0.202667pt;}
.ws4f{word-spacing:0.253333pt;}
.ws140{word-spacing:0.288000pt;}
.wsff{word-spacing:0.304000pt;}
.ws12f{word-spacing:0.336000pt;}
.wsdc{word-spacing:0.354667pt;}
.ws20{word-spacing:0.384000pt;}
.ws6b{word-spacing:0.405333pt;}
.wsb0{word-spacing:0.456000pt;}
.ws1f{word-spacing:0.480000pt;}
.wsb5{word-spacing:0.506667pt;}
.ws8{word-spacing:0.528000pt;}
.ws6d{word-spacing:0.557333pt;}
.ws82{word-spacing:0.608000pt;}
.ws105{word-spacing:0.658667pt;}
.ws134{word-spacing:0.672000pt;}
.ws7a{word-spacing:0.709333pt;}
.ws47{word-spacing:0.760000pt;}
.ws30{word-spacing:0.768000pt;}
.wsb7{word-spacing:0.810667pt;}
.ws87{word-spacing:0.861333pt;}
.ws110{word-spacing:0.912000pt;}
.ws14{word-spacing:0.960000pt;}
.ws40{word-spacing:0.962667pt;}
.ws31{word-spacing:1.008000pt;}
.ws9b{word-spacing:1.013333pt;}
.ws19{word-spacing:1.056000pt;}
.wsa5{word-spacing:1.064000pt;}
.ws6e{word-spacing:1.114667pt;}
.ws74{word-spacing:1.216000pt;}
.ws119{word-spacing:1.248000pt;}
.ws3a{word-spacing:1.266667pt;}
.ws145{word-spacing:1.296000pt;}
.ws135{word-spacing:1.344000pt;}
.ws36{word-spacing:1.368000pt;}
.ws124{word-spacing:1.392000pt;}
.ws5e{word-spacing:1.418667pt;}
.ws9{word-spacing:1.440000pt;}
.ws7b{word-spacing:1.488000pt;}
.ws85{word-spacing:1.520000pt;}
.ws14d{word-spacing:1.536000pt;}
.ws6f{word-spacing:1.570667pt;}
.ws139{word-spacing:1.584000pt;}
.wsbb{word-spacing:1.722667pt;}
.ws2b{word-spacing:1.728000pt;}
.ws122{word-spacing:1.776000pt;}
.wsa2{word-spacing:1.874667pt;}
.ws2e{word-spacing:1.920000pt;}
.ws8d{word-spacing:1.925333pt;}
.wsc9{word-spacing:1.976000pt;}
.ws76{word-spacing:2.026667pt;}
.wsb4{word-spacing:2.077333pt;}
.ws14e{word-spacing:2.112000pt;}
.ws89{word-spacing:2.128000pt;}
.ws15f{word-spacing:2.160000pt;}
.ws11{word-spacing:2.208000pt;}
.ws103{word-spacing:2.229333pt;}
.ws7e{word-spacing:2.256000pt;}
.ws114{word-spacing:2.304000pt;}
.ws35{word-spacing:2.330667pt;}
.wsfe{word-spacing:2.381333pt;}
.ws132{word-spacing:2.400000pt;}
.ws37{word-spacing:2.432000pt;}
.ws121{word-spacing:2.448000pt;}
.ws3b{word-spacing:2.482667pt;}
.ws160{word-spacing:2.496000pt;}
.ws63{word-spacing:2.533333pt;}
.ws1c{word-spacing:2.544000pt;}
.ws8e{word-spacing:2.584000pt;}
.ws138{word-spacing:2.592000pt;}
.wsf1{word-spacing:2.685333pt;}
.ws22{word-spacing:2.736000pt;}
.ws12b{word-spacing:2.784000pt;}
.ws13d{word-spacing:2.832000pt;}
.ws42{word-spacing:2.837333pt;}
.ws130{word-spacing:2.976000pt;}
.ws9a{word-spacing:2.989333pt;}
.ws8f{word-spacing:3.040000pt;}
.ws149{word-spacing:3.072000pt;}
.ws38{word-spacing:3.090667pt;}
.ws158{word-spacing:3.120000pt;}
.wsd9{word-spacing:3.141333pt;}
.ws15b{word-spacing:3.168000pt;}
.ws43{word-spacing:3.192000pt;}
.ws80{word-spacing:3.264000pt;}
.ws64{word-spacing:3.293333pt;}
.ws13c{word-spacing:3.360000pt;}
.ws148{word-spacing:3.408000pt;}
.ws72{word-spacing:3.445333pt;}
.ws11b{word-spacing:3.456000pt;}
.wsc5{word-spacing:3.496000pt;}
.ws54{word-spacing:3.546667pt;}
.ws11d{word-spacing:3.552000pt;}
.ws7{word-spacing:3.600000pt;}
.wsca{word-spacing:3.648000pt;}
.ws2f{word-spacing:3.696000pt;}
.ws147{word-spacing:3.744000pt;}
.ws57{word-spacing:3.749333pt;}
.ws62{word-spacing:3.850667pt;}
.ws7f{word-spacing:3.888000pt;}
.ws21{word-spacing:3.936000pt;}
.ws34{word-spacing:3.952000pt;}
.ws10{word-spacing:3.984000pt;}
.wsa8{word-spacing:4.002667pt;}
.ws144{word-spacing:4.080000pt;}
.wsba{word-spacing:4.104000pt;}
.ws67{word-spacing:4.154667pt;}
.ws46{word-spacing:4.205333pt;}
.ws23{word-spacing:4.224000pt;}
.wse7{word-spacing:4.256000pt;}
.ws8a{word-spacing:4.306667pt;}
.ws13b{word-spacing:4.416000pt;}
.ws120{word-spacing:4.464000pt;}
.ws102{word-spacing:4.560000pt;}
.wsc2{word-spacing:4.610667pt;}
.ws111{word-spacing:4.656000pt;}
.ws109{word-spacing:4.661333pt;}
.wsc8{word-spacing:4.762667pt;}
.ws118{word-spacing:4.896000pt;}
.wsfb{word-spacing:4.914667pt;}
.wsb{word-spacing:4.944000pt;}
.ws4d{word-spacing:4.965333pt;}
.ws1b{word-spacing:4.992000pt;}
.ws92{word-spacing:5.016000pt;}
.wsa9{word-spacing:5.066667pt;}
.ws163{word-spacing:5.088000pt;}
.ws136{word-spacing:5.136000pt;}
.ws113{word-spacing:5.184000pt;}
.wsab{word-spacing:5.218667pt;}
.ws10a{word-spacing:5.328000pt;}
.ws5f{word-spacing:5.370667pt;}
.wsb3{word-spacing:5.421333pt;}
.ws15{word-spacing:5.424000pt;}
.ws5a{word-spacing:5.472000pt;}
.ws24{word-spacing:5.616000pt;}
.ws159{word-spacing:5.712000pt;}
.ws133{word-spacing:5.760000pt;}
.wsa0{word-spacing:5.826667pt;}
.ws48{word-spacing:5.877333pt;}
.ws1d{word-spacing:5.904000pt;}
.ws39{word-spacing:5.928000pt;}
.ws53{word-spacing:5.978667pt;}
.wsda{word-spacing:6.130667pt;}
.ws108{word-spacing:6.181333pt;}
.ws4a{word-spacing:6.333333pt;}
.ws15a{word-spacing:6.432000pt;}
.ws154{word-spacing:6.480000pt;}
.wse6{word-spacing:6.485333pt;}
.ws7d{word-spacing:6.576000pt;}
.wsa1{word-spacing:6.586667pt;}
.ws153{word-spacing:6.624000pt;}
.wsaf{word-spacing:6.637333pt;}
.ws13{word-spacing:6.720000pt;}
.wse{word-spacing:6.768000pt;}
.wsd{word-spacing:6.816000pt;}
.ws56{word-spacing:6.840000pt;}
.ws143{word-spacing:6.960000pt;}
.ws15d{word-spacing:7.056000pt;}
.ws14a{word-spacing:7.104000pt;}
.wsae{word-spacing:7.144000pt;}
.ws96{word-spacing:7.194667pt;}
.ws16{word-spacing:7.200000pt;}
.ws55{word-spacing:7.296000pt;}
.ws59{word-spacing:7.346667pt;}
.ws129{word-spacing:7.392000pt;}
.ws150{word-spacing:7.536000pt;}
.ws50{word-spacing:7.600000pt;}
.wsc{word-spacing:7.632000pt;}
.wsf0{word-spacing:7.650667pt;}
.wsa3{word-spacing:7.701333pt;}
.ws164{word-spacing:7.728000pt;}
.ws45{word-spacing:7.752000pt;}
.ws95{word-spacing:7.802667pt;}
.ws13a{word-spacing:7.824000pt;}
.ws73{word-spacing:7.853333pt;}
.ws10e{word-spacing:7.872000pt;}
.ws60{word-spacing:8.005333pt;}
.ws71{word-spacing:8.157333pt;}
.wsa4{word-spacing:8.208000pt;}
.ws101{word-spacing:8.309333pt;}
.ws152{word-spacing:8.448000pt;}
.wsa7{word-spacing:8.461333pt;}
.ws17{word-spacing:8.640000pt;}
.ws10f{word-spacing:8.688000pt;}
.ws4b{word-spacing:8.917333pt;}
.ws66{word-spacing:8.968000pt;}
.ws116{word-spacing:8.976000pt;}
.wsfc{word-spacing:9.018667pt;}
.wsad{word-spacing:9.120000pt;}
.ws157{word-spacing:9.168000pt;}
.ws125{word-spacing:9.216000pt;}
.ws115{word-spacing:9.264000pt;}
.wsc6{word-spacing:9.272000pt;}
.wsfa{word-spacing:9.322667pt;}
.ws9c{word-spacing:9.576000pt;}
.ws69{word-spacing:9.880000pt;}
.ws5{word-spacing:9.984000pt;}
.ws137{word-spacing:10.032000pt;}
.ws4c{word-spacing:10.082667pt;}
.ws18{word-spacing:10.176000pt;}
.ws77{word-spacing:10.184000pt;}
.ws155{word-spacing:10.320000pt;}
.ws93{word-spacing:10.336000pt;}
.wsac{word-spacing:10.437333pt;}
.ws6{word-spacing:10.464000pt;}
.ws131{word-spacing:10.512000pt;}
.ws12d{word-spacing:10.752000pt;}
.ws9d{word-spacing:10.944000pt;}
.ws151{word-spacing:11.232000pt;}
.ws2a{word-spacing:11.280000pt;}
.ws98{word-spacing:11.298667pt;}
.ws112{word-spacing:11.376000pt;}
.wsfd{word-spacing:11.602667pt;}
.ws107{word-spacing:11.653333pt;}
.ws3e{word-spacing:11.754667pt;}
.ws165{word-spacing:11.760000pt;}
.wsa{word-spacing:11.808000pt;}
.ws91{word-spacing:12.109333pt;}
.wsbf{word-spacing:12.210667pt;}
.wsf3{word-spacing:12.261333pt;}
.ws97{word-spacing:12.464000pt;}
.ws161{word-spacing:12.864000pt;}
.wsd8{word-spacing:13.274667pt;}
.ws15e{word-spacing:13.344000pt;}
.ws29{word-spacing:13.440000pt;}
.ws58{word-spacing:13.477333pt;}
.wsd5{word-spacing:13.528000pt;}
.ws10c{word-spacing:14.016000pt;}
.wsf4{word-spacing:14.186667pt;}
.ws141{word-spacing:14.256000pt;}
.ws27{word-spacing:14.448000pt;}
.ws9e{word-spacing:15.352000pt;}
.ws106{word-spacing:15.402667pt;}
.wsd4{word-spacing:15.504000pt;}
.wsf5{word-spacing:15.757333pt;}
.ws10d{word-spacing:16.560000pt;}
.wsf9{word-spacing:17.480000pt;}
.wsf8{word-spacing:17.936000pt;}
.ws41{word-spacing:18.037333pt;}
.ws28{word-spacing:18.096000pt;}
.ws90{word-spacing:19.152000pt;}
.ws32{word-spacing:19.506667pt;}
.ws12{word-spacing:20.784000pt;}
.ws13e{word-spacing:21.312000pt;}
.ws4{word-spacing:21.456000pt;}
.ws10b{word-spacing:26.112000pt;}
.ws166{word-spacing:27.410667pt;}
.ws3{word-spacing:40.224000pt;}
.wsee{word-spacing:56.789333pt;}
.wsed{word-spacing:57.045333pt;}
.wseb{word-spacing:86.426667pt;}
.wse4{word-spacing:92.629333pt;}
.wsdf{word-spacing:116.736000pt;}
.wse3{word-spacing:133.930667pt;}
.wsec{word-spacing:137.429333pt;}
.wse1{word-spacing:165.205333pt;}
.wse0{word-spacing:167.424000pt;}
.wsd1{word-spacing:176.085333pt;}
.wscc{word-spacing:219.733333pt;}
.wse9{word-spacing:262.186667pt;}
.wscd{word-spacing:266.154667pt;}
.wsce{word-spacing:311.210667pt;}
.wsd0{word-spacing:311.637333pt;}
.wse8{word-spacing:313.685333pt;}
.wsea{word-spacing:331.520000pt;}
.wsd2{word-spacing:332.586667pt;}
.wscf{word-spacing:333.482667pt;}
.wsb8{word-spacing:494.976000pt;}
.wsaa{word-spacing:702.720000pt;}
._63{margin-left:-7.060800pt;}
._a{margin-left:-6.144000pt;}
._2{margin-left:-5.144533pt;}
._3{margin-left:-3.504000pt;}
._1{margin-left:-2.593067pt;}
._0{margin-left:-1.344000pt;}
._8{width:1.171200pt;}
._7{width:2.793600pt;}
._e{width:3.957067pt;}
._f{width:4.990667pt;}
._d{width:6.206667pt;}
._c{width:7.164267pt;}
._10{width:8.567733pt;}
._11{width:9.976000pt;}
._5{width:10.939200pt;}
._6{width:11.918400pt;}
._37{width:13.013333pt;}
._4{width:15.062400pt;}
._9{width:16.228800pt;}
._65{width:17.525600pt;}
._36{width:18.432000pt;}
._64{width:21.331200pt;}
._5e{width:66.986667pt;}
._46{width:68.778667pt;}
._62{width:70.357333pt;}
._61{width:71.850667pt;}
._60{width:82.218667pt;}
._5f{width:83.498667pt;}
._45{width:114.986667pt;}
._5c{width:117.013333pt;}
._5d{width:120.704000pt;}
._22{width:124.245333pt;}
._3a{width:127.104000pt;}
._2b{width:132.736000pt;}
._4e{width:138.026667pt;}
._3b{width:140.501333pt;}
._24{width:143.189333pt;}
._4c{width:145.792000pt;}
._4f{width:153.728000pt;}
._4b{width:161.450667pt;}
._52{width:173.781333pt;}
._3f{width:183.168000pt;}
._48{width:187.306667pt;}
._23{width:191.786667pt;}
._19{width:198.912000pt;}
._2f{width:204.629333pt;}
._47{width:205.525333pt;}
._4a{width:207.061333pt;}
._41{width:209.688533pt;}
._21{width:227.328000pt;}
._31{width:228.309333pt;}
._49{width:232.917333pt;}
._51{width:238.080000pt;}
._3c{width:247.338667pt;}
._44{width:258.901333pt;}
._56{width:262.229333pt;}
._34{width:265.941333pt;}
._40{width:269.440000pt;}
._1c{width:270.464000pt;}
._42{width:271.744000pt;}
._5a{width:272.944000pt;}
._12{width:276.522667pt;}
._50{width:279.338667pt;}
._16{width:281.130667pt;}
._27{width:284.245333pt;}
._26{width:288.213333pt;}
._5b{width:294.539733pt;}
._38{width:316.790400pt;}
._58{width:339.797333pt;}
._3e{width:345.344000pt;}
._3d{width:347.269333pt;}
._1d{width:351.872000pt;}
._39{width:357.707733pt;}
._1f{width:363.690667pt;}
._2a{width:375.381333pt;}
._1e{width:382.677333pt;}
._53{width:394.496000pt;}
._4d{width:398.080000pt;}
._54{width:415.701333pt;}
._57{width:431.104000pt;}
._28{width:432.341333pt;}
._43{width:435.840000pt;}
._59{width:453.802667pt;}
._55{width:459.776000pt;}
._2e{width:464.298667pt;}
._32{width:465.493333pt;}
._13{width:475.690667pt;}
._17{width:515.498667pt;}
._1b{width:520.277333pt;}
._29{width:526.080000pt;}
._15{width:544.000000pt;}
._35{width:571.866667pt;}
._33{width:577.792000pt;}
._18{width:579.541333pt;}
._1a{width:590.208000pt;}
._2d{width:599.552000pt;}
._2c{width:609.024000pt;}
._14{width:625.834667pt;}
._20{width:628.138667pt;}
._30{width:639.061333pt;}
._25{width:651.861333pt;}
._b{width:891.541333pt;}
.fs7{font-size:29.538667pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:245.333333pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:18.894000pt;}
.y1{bottom:39.894000pt;}
.y53{bottom:61.530000pt;}
.y52{bottom:74.334000pt;}
.y85{bottom:78.658800pt;}
.yf4{bottom:79.944400pt;}
.ydd{bottom:80.025067pt;}
.y13c{bottom:81.986000pt;}
.y262{bottom:83.075733pt;}
.y117{bottom:83.555467pt;}
.y21c{bottom:84.274533pt;}
.y2aa{bottom:86.367733pt;}
.y167{bottom:86.415333pt;}
.y51{bottom:87.138000pt;}
.y23a{bottom:87.146800pt;}
.y27e{bottom:89.402800pt;}
.yb2{bottom:89.724400pt;}
.y19e{bottom:92.863733pt;}
.y84{bottom:93.326800pt;}
.y2ca{bottom:93.927733pt;}
.yf3{bottom:94.612400pt;}
.ydc{bottom:94.693067pt;}
.y1b6{bottom:94.865867pt;}
.y261{bottom:97.743733pt;}
.y116{bottom:98.223467pt;}
.y21b{bottom:98.942533pt;}
.y2a9{bottom:101.031733pt;}
.y166{bottom:101.083333pt;}
.y13b{bottom:101.090000pt;}
.y1b5{bottom:101.265867pt;}
.y27d{bottom:104.066800pt;}
.yb1{bottom:104.392400pt;}
.y83{bottom:107.994800pt;}
.y2c4{bottom:108.591733pt;}
.yf2{bottom:109.280400pt;}
.ydb{bottom:109.361067pt;}
.y260{bottom:112.411733pt;}
.y115{bottom:112.891467pt;}
.y21a{bottom:113.610533pt;}
.y239{bottom:115.040133pt;}
.y2a8{bottom:115.695733pt;}
.y50{bottom:118.230800pt;}
.y27c{bottom:118.730800pt;}
.y13a{bottom:120.194000pt;}
.y19d{bottom:120.757067pt;}
.y238{bottom:121.440133pt;}
.y82{bottom:122.662800pt;}
.y2c3{bottom:123.255733pt;}
.y165{bottom:123.313333pt;}
.y30{bottom:124.740133pt;}
.yb0{bottom:126.622400pt;}
.y25f{bottom:127.079733pt;}
.y114{bottom:127.559467pt;}
.y219{bottom:128.274533pt;}
.y1b4{bottom:130.545867pt;}
.yf1{bottom:131.510400pt;}
.y4f{bottom:131.562800pt;}
.yda{bottom:131.602800pt;}
.y20b{bottom:132.898533pt;}
.y27b{bottom:133.394800pt;}
.y19c{bottom:133.557067pt;}
.y1e3{bottom:136.893067pt;}
.y2a7{bottom:137.919733pt;}
.y164{bottom:137.981333pt;}
.y2f{bottom:138.744133pt;}
.y139{bottom:139.298000pt;}
.y193{bottom:139.957067pt;}
.yaf{bottom:141.290400pt;}
.y218{bottom:142.942533pt;}
.y1b2{bottom:143.345867pt;}
.y81{bottom:144.892800pt;}
.y4e{bottom:144.894800pt;}
.y2c9{bottom:145.479733pt;}
.yd9{bottom:146.266800pt;}
.y19b{bottom:146.357067pt;}
.y20a{bottom:147.566533pt;}
.y25e{bottom:149.309733pt;}
.y113{bottom:149.791733pt;}
.y237{bottom:150.720133pt;}
.y1e2{bottom:151.561067pt;}
.y138{bottom:152.098000pt;}
.y2a6{bottom:152.583733pt;}
.y163{bottom:152.649333pt;}
.y191{bottom:152.757067pt;}
.yf0{bottom:153.740400pt;}
.y27a{bottom:155.618800pt;}
.yae{bottom:155.958400pt;}
.y1b3{bottom:156.145867pt;}
.y217{bottom:157.610533pt;}
.y19a{bottom:159.157067pt;}
.y80{bottom:159.560800pt;}
.y2c2{bottom:160.143733pt;}
.y2e{bottom:160.308133pt;}
.yd8{bottom:160.930800pt;}
.y209{bottom:162.234533pt;}
.y25d{bottom:163.977733pt;}
.y190{bottom:165.557067pt;}
.y4d{bottom:165.786800pt;}
.y1e1{bottom:166.229067pt;}
.y2a5{bottom:167.247733pt;}
.y162{bottom:167.317333pt;}
.yef{bottom:168.408400pt;}
.y279{bottom:170.282800pt;}
.yad{bottom:170.626400pt;}
.y199{bottom:171.957067pt;}
.y216{bottom:172.278533pt;}
.y236{bottom:173.603867pt;}
.y7f{bottom:174.228800pt;}
.y2d{bottom:174.312133pt;}
.y112{bottom:174.581067pt;}
.y2c1{bottom:174.807733pt;}
.yd7{bottom:175.594800pt;}
.y208{bottom:176.902533pt;}
.y18f{bottom:178.357067pt;}
.y25c{bottom:178.645733pt;}
.y137{bottom:178.828000pt;}
.y1b1{bottom:179.025867pt;}
.y4c{bottom:179.118800pt;}
.y1e0{bottom:180.897067pt;}
.y161{bottom:181.985333pt;}
.y2d9{bottom:182.271467pt;}
.yee{bottom:183.076400pt;}
.y198{bottom:184.757067pt;}
.y278{bottom:184.946800pt;}
.yac{bottom:185.294400pt;}
.y111{bottom:187.381067pt;}
.y2c{bottom:188.316133pt;}
.y7e{bottom:188.896800pt;}
.y2a4{bottom:189.471733pt;}
.yd6{bottom:190.258800pt;}
.y18e{bottom:191.157067pt;}
.y207{bottom:191.570533pt;}
.y4b{bottom:192.450800pt;}
.y25b{bottom:193.313733pt;}
.y136{bottom:193.494667pt;}
.y1df{bottom:195.565067pt;}
.y160{bottom:196.653333pt;}
.y2d8{bottom:196.939467pt;}
.y2c8{bottom:197.031733pt;}
.y197{bottom:197.557067pt;}
.yed{bottom:197.744400pt;}
.yab{bottom:199.962400pt;}
.y110{bottom:200.181067pt;}
.y235{bottom:201.183600pt;}
.y2b{bottom:202.320133pt;}
.y7d{bottom:203.564800pt;}
.y18d{bottom:203.957067pt;}
.y2a3{bottom:204.135733pt;}
.yd5{bottom:204.922800pt;}
.y4a{bottom:205.782800pt;}
.y206{bottom:206.238533pt;}
.y277{bottom:207.170800pt;}
.y1b0{bottom:207.576267pt;}
.y25a{bottom:207.981733pt;}
.y1de{bottom:210.233067pt;}
.y196{bottom:210.357067pt;}
.y15f{bottom:211.321333pt;}
.y2d7{bottom:211.607467pt;}
.y2c0{bottom:211.695733pt;}
.yec{bottom:212.412400pt;}
.y10f{bottom:212.981067pt;}
.yaa{bottom:214.630400pt;}
.y135{bottom:215.724000pt;}
.y2a{bottom:216.324133pt;}
.y192{bottom:216.757067pt;}
.y7c{bottom:218.232800pt;}
.y49{bottom:219.114800pt;}
.yd4{bottom:219.586800pt;}
.y205{bottom:220.906533pt;}
.y276{bottom:221.834800pt;}
.y259{bottom:222.649733pt;}
.y195{bottom:223.157067pt;}
.y234{bottom:223.402533pt;}
.y10e{bottom:225.781067pt;}
.y2d6{bottom:226.275467pt;}
.y2a2{bottom:226.359733pt;}
.yeb{bottom:227.080400pt;}
.ya9{bottom:229.298400pt;}
.y1af{bottom:229.779067pt;}
.y29{bottom:230.328133pt;}
.y48{bottom:232.446800pt;}
.y1dd{bottom:232.463067pt;}
.y7b{bottom:232.900800pt;}
.y15e{bottom:233.551333pt;}
.y204{bottom:235.574533pt;}
.y194{bottom:235.957067pt;}
.y275{bottom:236.498800pt;}
.y258{bottom:237.317733pt;}
.y233{bottom:238.070533pt;}
.y10d{bottom:238.581067pt;}
.y2d5{bottom:240.943467pt;}
.y2a1{bottom:241.023733pt;}
.yd3{bottom:241.748400pt;}
.y134{bottom:243.617333pt;}
.ya8{bottom:243.966400pt;}
.y28{bottom:244.332133pt;}
.y1ae{bottom:244.447067pt;}
.y47{bottom:245.778800pt;}
.y1dc{bottom:247.131067pt;}
.y7a{bottom:247.568800pt;}
.y15d{bottom:248.219333pt;}
.y2bf{bottom:248.583733pt;}
.yea{bottom:249.310400pt;}
.y203{bottom:250.242533pt;}
.y10c{bottom:251.381067pt;}
.y257{bottom:251.985733pt;}
.y232{bottom:252.738533pt;}
.y2a0{bottom:255.687733pt;}
.yd2{bottom:256.416400pt;}
.y27{bottom:258.336133pt;}
.ya7{bottom:258.634400pt;}
.y274{bottom:258.722800pt;}
.y18c{bottom:258.837067pt;}
.y46{bottom:259.110800pt;}
.y1ad{bottom:259.115067pt;}
.y1db{bottom:261.799067pt;}
.y79{bottom:262.236800pt;}
.y15c{bottom:262.887333pt;}
.y2be{bottom:263.247733pt;}
.ye9{bottom:263.978400pt;}
.y202{bottom:264.910533pt;}
.y133{bottom:266.497333pt;}
.y256{bottom:266.653733pt;}
.y231{bottom:267.406533pt;}
.y2d3{bottom:270.351733pt;}
.yd1{bottom:271.084400pt;}
.y18b{bottom:271.637067pt;}
.y26{bottom:272.340133pt;}
.y45{bottom:272.442800pt;}
.ya6{bottom:273.302400pt;}
.y273{bottom:273.386800pt;}
.y1ac{bottom:273.783067pt;}
.y10b{bottom:274.261067pt;}
.y1da{bottom:276.467067pt;}
.y78{bottom:276.904800pt;}
.y15b{bottom:277.555333pt;}
.y29f{bottom:277.911733pt;}
.ye8{bottom:278.646400pt;}
.y255{bottom:281.321733pt;}
.y230{bottom:282.074533pt;}
.y188{bottom:284.437067pt;}
.yd0{bottom:285.752400pt;}
.y44{bottom:285.774800pt;}
.y25{bottom:286.344133pt;}
.y201{bottom:287.140533pt;}
.ya5{bottom:287.970400pt;}
.y272{bottom:288.050800pt;}
.y1ab{bottom:288.451067pt;}
.y132{bottom:289.377333pt;}
.y1d9{bottom:291.135067pt;}
.y77{bottom:291.572800pt;}
.y15a{bottom:292.223333pt;}
.y29e{bottom:292.575733pt;}
.ye7{bottom:293.314400pt;}
.y254{bottom:295.989733pt;}
.y22f{bottom:296.742533pt;}
.y10a{bottom:297.141067pt;}
.y187{bottom:297.237067pt;}
.y43{bottom:299.106800pt;}
.y2bd{bottom:300.135733pt;}
.y24{bottom:300.348133pt;}
.ycf{bottom:300.420400pt;}
.y200{bottom:301.808533pt;}
.y271{bottom:302.714800pt;}
.y1aa{bottom:303.119067pt;}
.y1d8{bottom:305.803067pt;}
.y76{bottom:306.240800pt;}
.y159{bottom:306.891333pt;}
.y29d{bottom:307.239733pt;}
.ye6{bottom:307.982400pt;}
.y109{bottom:309.941067pt;}
.y186{bottom:310.037067pt;}
.ya4{bottom:310.200400pt;}
.y253{bottom:310.657733pt;}
.y22e{bottom:311.434533pt;}
.y131{bottom:312.257333pt;}
.y42{bottom:312.438800pt;}
.y23{bottom:314.352133pt;}
.y2bc{bottom:314.799733pt;}
.yce{bottom:315.088400pt;}
.y1ff{bottom:316.476533pt;}
.y1a9{bottom:317.787067pt;}
.y130{bottom:318.657333pt;}
.y1d7{bottom:320.471067pt;}
.y29c{bottom:321.903733pt;}
.y108{bottom:322.741067pt;}
.y185{bottom:322.837067pt;}
.ya3{bottom:324.868400pt;}
.y270{bottom:324.938800pt;}
.y252{bottom:325.325733pt;}
.y41{bottom:325.770800pt;}
.y22d{bottom:326.101200pt;}
.y22{bottom:328.356133pt;}
.y75{bottom:328.470800pt;}
.y2bb{bottom:329.463733pt;}
.ycd{bottom:329.756400pt;}
.ye5{bottom:330.212400pt;}
.y1fe{bottom:331.144533pt;}
.y1a8{bottom:332.455067pt;}
.y158{bottom:332.896533pt;}
.y1d6{bottom:335.139067pt;}
.y107{bottom:335.541067pt;}
.y184{bottom:335.637067pt;}
.y2d2{bottom:336.567733pt;}
.y2c7{bottom:337.023733pt;}
.y40{bottom:339.102800pt;}
.ya2{bottom:339.536400pt;}
.y26f{bottom:339.602800pt;}
.y21{bottom:342.360133pt;}
.y74{bottom:343.138800pt;}
.y29b{bottom:344.127733pt;}
.ycc{bottom:344.424400pt;}
.ye4{bottom:344.880400pt;}
.y1fd{bottom:345.812533pt;}
.y1a7{bottom:347.123067pt;}
.y251{bottom:347.555733pt;}
.y12f{bottom:347.937333pt;}
.y106{bottom:348.341067pt;}
.y183{bottom:348.437067pt;}
.y1d5{bottom:349.807067pt;}
.y2ba{bottom:351.687733pt;}
.y3f{bottom:352.434800pt;}
.y22c{bottom:353.994533pt;}
.ya1{bottom:354.204400pt;}
.y26e{bottom:354.266800pt;}
.y12e{bottom:354.337333pt;}
.y20{bottom:356.364133pt;}
.y73{bottom:357.806800pt;}
.y29a{bottom:358.791733pt;}
.ye3{bottom:359.548400pt;}
.y1fc{bottom:360.480533pt;}
.y105{bottom:361.141067pt;}
.y18a{bottom:361.237067pt;}
.y250{bottom:362.223733pt;}
.y1d4{bottom:364.475067pt;}
.y3e{bottom:365.766800pt;}
.y2b9{bottom:366.351733pt;}
.ycb{bottom:366.654400pt;}
.ya0{bottom:368.872400pt;}
.y1a6{bottom:369.353067pt;}
.y1f{bottom:370.368133pt;}
.y72{bottom:372.474800pt;}
.y299{bottom:373.455733pt;}
.y2c6{bottom:373.911733pt;}
.y104{bottom:373.941067pt;}
.y189{bottom:374.037067pt;}
.ye2{bottom:374.216400pt;}
.y1fb{bottom:375.148533pt;}
.y26d{bottom:376.490800pt;}
.y22b{bottom:376.874533pt;}
.y24f{bottom:376.891733pt;}
.y157{bottom:378.009200pt;}
.y3d{bottom:379.098800pt;}
.y2b8{bottom:381.015733pt;}
.y9f{bottom:383.540400pt;}
.y12d{bottom:383.617333pt;}
.y1a5{bottom:384.021067pt;}
.y1e{bottom:384.372133pt;}
.y1d3{bottom:386.705067pt;}
.y71{bottom:387.142800pt;}
.y2c5{bottom:388.575733pt;}
.yca{bottom:388.884400pt;}
.y1fa{bottom:389.816533pt;}
.y12c{bottom:390.017333pt;}
.y26c{bottom:391.154800pt;}
.y24e{bottom:391.559733pt;}
.y3c{bottom:392.430800pt;}
.y156{bottom:392.677200pt;}
.y298{bottom:395.679733pt;}
.y103{bottom:396.821067pt;}
.y182{bottom:396.917067pt;}
.y9e{bottom:398.208400pt;}
.y1d{bottom:398.376133pt;}
.y1a4{bottom:398.689067pt;}
.y22a{bottom:399.754533pt;}
.y1d2{bottom:401.373067pt;}
.y70{bottom:401.810800pt;}
.y2b7{bottom:403.239733pt;}
.yc9{bottom:403.552400pt;}
.y1f9{bottom:404.484533pt;}
.y3b{bottom:405.762800pt;}
.y26b{bottom:405.818800pt;}
.y24d{bottom:406.227733pt;}
.y155{bottom:407.345200pt;}
.y181{bottom:409.717067pt;}
.y297{bottom:410.343733pt;}
.y1c{bottom:412.380133pt;}
.y9d{bottom:412.876400pt;}
.y1a3{bottom:413.357067pt;}
.y1d1{bottom:416.041067pt;}
.y6f{bottom:416.478800pt;}
.y2b6{bottom:417.903733pt;}
.yc8{bottom:418.220400pt;}
.y3a{bottom:419.094800pt;}
.y1f8{bottom:419.152533pt;}
.y12b{bottom:419.297333pt;}
.y26a{bottom:420.482800pt;}
.y24c{bottom:420.895733pt;}
.y154{bottom:422.013200pt;}
.y180{bottom:422.517067pt;}
.y229{bottom:422.634533pt;}
.y296{bottom:425.007733pt;}
.y102{bottom:425.371600pt;}
.y12a{bottom:425.697333pt;}
.y1b{bottom:426.384133pt;}
.y9c{bottom:427.544400pt;}
.y1a2{bottom:428.025067pt;}
.y1d0{bottom:430.709067pt;}
.y6e{bottom:431.146800pt;}
.y39{bottom:432.426800pt;}
.y2d4{bottom:432.567733pt;}
.yc7{bottom:432.888400pt;}
.y1f7{bottom:433.820533pt;}
.y17f{bottom:435.317067pt;}
.y24b{bottom:435.563733pt;}
.y153{bottom:436.681200pt;}
.y2b5{bottom:440.127733pt;}
.y1a{bottom:440.388133pt;}
.y1a1{bottom:442.693067pt;}
.y269{bottom:442.706800pt;}
.y1cf{bottom:445.377067pt;}
.y228{bottom:445.514533pt;}
.y38{bottom:445.758800pt;}
.y6d{bottom:445.814800pt;}
.y295{bottom:447.231733pt;}
.yc6{bottom:447.556400pt;}
.y17e{bottom:448.117067pt;}
.y1f6{bottom:448.488533pt;}
.y9b{bottom:449.774400pt;}
.y24a{bottom:450.231733pt;}
.y152{bottom:451.349200pt;}
.y19{bottom:454.392133pt;}
.y2b4{bottom:454.791733pt;}
.y129{bottom:454.977333pt;}
.ye1{bottom:455.118400pt;}
.y1a0{bottom:457.361067pt;}
.y268{bottom:457.370800pt;}
.y37{bottom:459.090800pt;}
.y1ce{bottom:460.045067pt;}
.y6c{bottom:460.482800pt;}
.y17d{bottom:460.917067pt;}
.y294{bottom:461.895733pt;}
.y101{bottom:462.224400pt;}
.y1f5{bottom:463.156533pt;}
.y9a{bottom:464.442400pt;}
.y249{bottom:464.899733pt;}
.y151{bottom:466.017200pt;}
.y227{bottom:468.394533pt;}
.y18{bottom:468.396133pt;}
.y2b3{bottom:469.455733pt;}
.yc5{bottom:469.786400pt;}
.y267{bottom:472.034800pt;}
.y36{bottom:472.422800pt;}
.y17c{bottom:473.717067pt;}
.y172{bottom:473.834400pt;}
.y1cd{bottom:474.713067pt;}
.y2d1{bottom:476.559733pt;}
.y100{bottom:476.892400pt;}
.y1f4{bottom:477.824533pt;}
.y128{bottom:477.857333pt;}
.y99{bottom:479.110400pt;}
.y248{bottom:479.567733pt;}
.y150{bottom:480.685200pt;}
.y17{bottom:482.400133pt;}
.y6b{bottom:482.712800pt;}
.y19f{bottom:483.366267pt;}
.y293{bottom:484.119733pt;}
.yc4{bottom:484.454400pt;}
.y35{bottom:485.754800pt;}
.y17b{bottom:486.517067pt;}
.y171{bottom:486.634400pt;}
.y1cc{bottom:489.381067pt;}
.y226{bottom:491.274533pt;}
.yff{bottom:491.560400pt;}
.y2b2{bottom:491.679733pt;}
.y98{bottom:493.778400pt;}
.y247{bottom:494.235733pt;}
.y266{bottom:494.258800pt;}
.y14f{bottom:495.353200pt;}
.y16{bottom:496.404133pt;}
.y6a{bottom:497.380800pt;}
.y292{bottom:498.783733pt;}
.y34{bottom:499.086800pt;}
.yc3{bottom:499.122400pt;}
.y17a{bottom:499.317067pt;}
.y170{bottom:499.434400pt;}
.y1f3{bottom:500.086667pt;}
.y127{bottom:500.737333pt;}
.y1cb{bottom:504.049067pt;}
.yfe{bottom:506.228400pt;}
.y2b1{bottom:506.343733pt;}
.y246{bottom:508.903733pt;}
.y265{bottom:508.922800pt;}
.y15{bottom:510.408133pt;}
.y69{bottom:512.048800pt;}
.y179{bottom:512.117067pt;}
.y16f{bottom:512.234400pt;}
.y33{bottom:512.418800pt;}
.y291{bottom:513.447733pt;}
.yc2{bottom:513.790400pt;}
.y225{bottom:514.154533pt;}
.y97{bottom:516.008400pt;}
.y14e{bottom:517.578533pt;}
.y1ca{bottom:518.717067pt;}
.yfd{bottom:520.896400pt;}
.y2b0{bottom:521.007733pt;}
.y245{bottom:523.571733pt;}
.y264{bottom:523.586800pt;}
.y126{bottom:523.617333pt;}
.y14{bottom:524.412133pt;}
.y178{bottom:524.917067pt;}
.y32{bottom:525.750800pt;}
.y68{bottom:526.716800pt;}
.y1f2{bottom:527.980000pt;}
.y2d0{bottom:528.111733pt;}
.yc1{bottom:528.458400pt;}
.y96{bottom:530.676400pt;}
.y1c9{bottom:533.385067pt;}
.yfc{bottom:535.564400pt;}
.y290{bottom:535.671733pt;}
.y177{bottom:537.717067pt;}
.y244{bottom:538.239733pt;}
.y13{bottom:538.416133pt;}
.y31{bottom:539.082800pt;}
.y67{bottom:541.384800pt;}
.y224{bottom:542.704800pt;}
.yc0{bottom:543.126400pt;}
.y14d{bottom:543.583867pt;}
.y95{bottom:545.344400pt;}
.y125{bottom:546.497333pt;}
.y263{bottom:549.592000pt;}
.y28f{bottom:550.335733pt;}
.y176{bottom:550.517067pt;}
.y1f1{bottom:550.860000pt;}
.y12{bottom:552.416133pt;}
.y215{bottom:552.680800pt;}
.y124{bottom:552.897333pt;}
.y1c8{bottom:555.624667pt;}
.y66{bottom:556.052800pt;}
.ybf{bottom:557.794400pt;}
.y2af{bottom:557.895733pt;}
.y94{bottom:560.012400pt;}
.y243{bottom:560.469733pt;}
.y14c{bottom:562.687867pt;}
.y175{bottom:563.317067pt;}
.y223{bottom:564.927867pt;}
.y2cf{bottom:564.999733pt;}
.y65{bottom:570.720800pt;}
.ybe{bottom:572.462400pt;}
.y28e{bottom:572.559733pt;}
.y1f0{bottom:573.740000pt;}
.y93{bottom:574.680400pt;}
.y214{bottom:574.902533pt;}
.y242{bottom:575.137733pt;}
.y174{bottom:576.117067pt;}
.y11{bottom:579.200133pt;}
.y222{bottom:579.595867pt;}
.y2ce{bottom:579.663733pt;}
.y14b{bottom:581.791867pt;}
.y123{bottom:582.177333pt;}
.y1c7{bottom:583.518000pt;}
.y1ef{bottom:586.540000pt;}
.ybd{bottom:587.130400pt;}
.y28d{bottom:587.223733pt;}
.y173{bottom:588.917067pt;}
.y92{bottom:589.348400pt;}
.y213{bottom:589.570533pt;}
.y241{bottom:589.805733pt;}
.y10{bottom:592.000267pt;}
.y64{bottom:592.950800pt;}
.y221{bottom:594.261200pt;}
.ye0{bottom:594.692400pt;}
.ye{bottom:595.200133pt;}
.y1c5{bottom:596.318000pt;}
.y14a{bottom:600.895867pt;}
.ybc{bottom:601.798400pt;}
.y2ae{bottom:601.887733pt;}
.y212{bottom:604.238533pt;}
.y240{bottom:604.473733pt;}
.y122{bottom:605.057333pt;}
.y149{bottom:607.295867pt;}
.y63{bottom:607.618800pt;}
.yd{bottom:608.000267pt;}
.yf{bottom:608.587733pt;}
.y220{bottom:608.929200pt;}
.y1c6{bottom:609.118000pt;}
.ydf{bottom:609.360400pt;}
.y1ee{bottom:609.420000pt;}
.y28c{bottom:609.447733pt;}
.y91{bottom:611.578400pt;}
.y16e{bottom:612.031733pt;}
.yfb{bottom:616.466400pt;}
.y2cd{bottom:616.551733pt;}
.y16d{bottom:618.431733pt;}
.y211{bottom:618.906533pt;}
.y23f{bottom:619.141733pt;}
.y62{bottom:622.286800pt;}
.y21f{bottom:623.572400pt;}
.ybb{bottom:624.028400pt;}
.y28b{bottom:624.111733pt;}
.yc{bottom:624.583733pt;}
.y90{bottom:626.246400pt;}
.y121{bottom:627.937333pt;}
.yfa{bottom:631.134400pt;}
.y2cc{bottom:631.215733pt;}
.y1c4{bottom:631.998000pt;}
.y1ed{bottom:632.300000pt;}
.y148{bottom:632.799867pt;}
.y23e{bottom:633.809733pt;}
.y61{bottom:636.954800pt;}
.y210{bottom:637.366667pt;}
.yba{bottom:638.696400pt;}
.y28a{bottom:638.775733pt;}
.yb{bottom:640.579733pt;}
.y8f{bottom:640.914400pt;}
.y1c3{bottom:644.798000pt;}
.yf9{bottom:645.802400pt;}
.y23d{bottom:648.477733pt;}
.y120{bottom:650.817333pt;}
.y60{bottom:651.622800pt;}
.y147{bottom:651.903867pt;}
.yb9{bottom:653.364400pt;}
.y16c{bottom:653.382000pt;}
.y2ad{bottom:653.439733pt;}
.y1ec{bottom:655.180000pt;}
.y8e{bottom:655.582400pt;}
.ya{bottom:656.579733pt;}
.y1c2{bottom:657.598000pt;}
.y146{bottom:658.303867pt;}
.yf8{bottom:660.470400pt;}
.y289{bottom:660.999733pt;}
.y23c{bottom:663.145733pt;}
.y1be{bottom:663.998000pt;}
.y20f{bottom:665.260000pt;}
.y5f{bottom:666.290800pt;}
.yb8{bottom:668.032400pt;}
.y2ac{bottom:668.103733pt;}
.y1c1{bottom:670.398000pt;}
.y11f{bottom:673.697333pt;}
.yf7{bottom:675.138400pt;}
.y16b{bottom:675.594400pt;}
.y288{bottom:675.663733pt;}
.y8d{bottom:677.812400pt;}
.y1eb{bottom:678.060000pt;}
.y9{bottom:680.139600pt;}
.y5e{bottom:680.958800pt;}
.yb7{bottom:682.700400pt;}
.y1c0{bottom:683.198000pt;}
.y145{bottom:683.807867pt;}
.y23b{bottom:689.151067pt;}
.y21e{bottom:689.806400pt;}
.y16a{bottom:690.262400pt;}
.y287{bottom:690.327733pt;}
.y5d{bottom:695.626800pt;}
.y1bf{bottom:695.998000pt;}
.yb6{bottom:697.368400pt;}
.y11e{bottom:697.825333pt;}
.y8{bottom:700.939600pt;}
.y1ea{bottom:700.940000pt;}
.y144{bottom:702.911867pt;}
.y8c{bottom:703.817733pt;}
.y21d{bottom:704.474400pt;}
.y169{bottom:704.930400pt;}
.y286{bottom:704.991733pt;}
.yb5{bottom:712.036400pt;}
.y20e{bottom:713.740000pt;}
.y5c{bottom:717.856800pt;}
.y1bd{bottom:718.878000pt;}
.y168{bottom:719.598400pt;}
.y2ab{bottom:719.655733pt;}
.y7{bottom:721.739600pt;}
.y11d{bottom:721.953333pt;}
.y143{bottom:722.015867pt;}
.y1e9{bottom:723.820000pt;}
.yb4{bottom:726.704400pt;}
.y285{bottom:727.215733pt;}
.y1bb{bottom:731.678000pt;}
.y5b{bottom:732.524800pt;}
.yde{bottom:734.266400pt;}
.y142{bottom:734.815867pt;}
.y20d{bottom:736.620000pt;}
.yb3{bottom:741.372400pt;}
.y284{bottom:741.879733pt;}
.y1bc{bottom:744.478000pt;}
.y11c{bottom:744.833333pt;}
.y6{bottom:746.318267pt;}
.y1e8{bottom:746.700000pt;}
.y5a{bottom:747.192800pt;}
.y8b{bottom:748.934400pt;}
.y141{bottom:753.919867pt;}
.yf6{bottom:756.040400pt;}
.y283{bottom:756.543733pt;}
.y1e7{bottom:759.500000pt;}
.y59{bottom:761.860800pt;}
.y8a{bottom:763.602400pt;}
.y20c{bottom:765.900000pt;}
.y140{bottom:766.719867pt;}
.y5{bottom:767.118267pt;}
.y1ba{bottom:767.358000pt;}
.y11b{bottom:767.713333pt;}
.yf5{bottom:770.708400pt;}
.y282{bottom:771.207733pt;}
.y58{bottom:776.528800pt;}
.y89{bottom:778.270400pt;}
.y2cb{bottom:778.767733pt;}
.y1b8{bottom:780.158000pt;}
.y11a{bottom:780.513333pt;}
.y1e5{bottom:782.380000pt;}
.y13f{bottom:785.823867pt;}
.y1e4{bottom:788.780000pt;}
.y57{bottom:791.196800pt;}
.y88{bottom:792.938400pt;}
.y1b9{bottom:792.958000pt;}
.y281{bottom:793.431733pt;}
.y1e6{bottom:795.180000pt;}
.y4{bottom:800.020933pt;}
.y13e{bottom:804.927867pt;}
.y87{bottom:807.606400pt;}
.y280{bottom:808.095733pt;}
.y119{bottom:809.063867pt;}
.y1b7{bottom:815.838000pt;}
.y3{bottom:817.122933pt;}
.y56{bottom:817.202000pt;}
.y13d{bottom:817.727867pt;}
.y86{bottom:822.274400pt;}
.y27f{bottom:822.759733pt;}
.y118{bottom:823.730533pt;}
.y2{bottom:840.207067pt;}
.y55{bottom:861.078133pt;}
.h1b{height:27.179688pt;}
.h5{height:29.250000pt;}
.h12{height:31.062500pt;}
.h13{height:31.083333pt;}
.h16{height:31.104167pt;}
.hf{height:32.853333pt;}
.hd{height:34.945312pt;}
.hb{height:34.968750pt;}
.h9{height:34.992188pt;}
.ha{height:36.886719pt;}
.h11{height:36.911458pt;}
.h1c{height:36.936198pt;}
.h2{height:36.960000pt;}
.h1a{height:38.402580pt;}
.h18{height:38.407380pt;}
.h19{height:38.491114pt;}
.he{height:43.382812pt;}
.hc{height:45.792969pt;}
.h10{height:46.593750pt;}
.h8{height:46.625000pt;}
.h6{height:50.476562pt;}
.h14{height:56.662500pt;}
.h15{height:56.683333pt;}
.h4{height:57.493333pt;}
.h7{height:62.664062pt;}
.h17{height:82.283333pt;}
.h3{height:188.906667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x18{left:75.590533pt;}
.x77{left:80.083600pt;}
.x4d{left:82.184800pt;}
.x4b{left:84.872800pt;}
.x17{left:87.773467pt;}
.x4e{left:89.000800pt;}
.x75{left:90.869467pt;}
.x71{left:91.877200pt;}
.x5{left:94.488133pt;}
.x16{left:95.754667pt;}
.x15{left:99.275467pt;}
.x6{left:101.658667pt;}
.x42{left:103.279867pt;}
.x57{left:104.645733pt;}
.x58{left:107.899067pt;}
.x7{left:109.724400pt;}
.x47{left:110.693200pt;}
.x54{left:112.243467pt;}
.x5c{left:113.232400pt;}
.x39{left:114.522533pt;}
.x38{left:115.429200pt;}
.x4c{left:117.171467pt;}
.x3e{left:118.095867pt;}
.x3b{left:119.866533pt;}
.x3f{left:121.071867pt;}
.x3a{left:122.234533pt;}
.x51{left:124.008800pt;}
.x43{left:124.922533pt;}
.x37{left:126.085200pt;}
.x52{left:126.974133pt;}
.x1c{left:128.761733pt;}
.x3d{left:129.658533pt;}
.x2d{left:131.108400pt;}
.x46{left:134.106533pt;}
.x3c{left:136.773200pt;}
.x9{left:138.149333pt;}
.x28{left:139.119067pt;}
.x1b{left:140.985467pt;}
.x44{left:142.991867pt;}
.x40{left:145.978533pt;}
.x1e{left:150.980400pt;}
.x1d{left:155.140400pt;}
.x2b{left:158.980400pt;}
.x1f{left:162.553733pt;}
.x29{left:167.567067pt;}
.x2c{left:169.647067pt;}
.x2a{left:173.209733pt;}
.x2e{left:174.980400pt;}
.x20{left:175.887067pt;}
.x1a{left:178.841067pt;}
.x8{left:179.882400pt;}
.x59{left:190.480400pt;}
.x3{left:198.009733pt;}
.x6e{left:199.477733pt;}
.x55{left:203.685200pt;}
.x72{left:209.187867pt;}
.x63{left:214.889200pt;}
.x4a{left:219.599867pt;}
.x4{left:237.996133pt;}
.x36{left:243.271467pt;}
.x76{left:244.636533pt;}
.x2{left:250.086933pt;}
.x4f{left:253.694133pt;}
.xb{left:255.399333pt;}
.xc{left:265.023333pt;}
.x73{left:266.104533pt;}
.x74{left:270.425600pt;}
.x35{left:271.471067pt;}
.x49{left:290.405200pt;}
.x19{left:293.139200pt;}
.xa{left:294.149333pt;}
.x41{left:298.063867pt;}
.xe{left:299.084667pt;}
.x1{left:312.036800pt;}
.x64{left:321.270133pt;}
.x53{left:326.952800pt;}
.x69{left:327.858400pt;}
.x65{left:329.120800pt;}
.x67{left:332.594400pt;}
.x50{left:334.344800pt;}
.x6a{left:337.063733pt;}
.x14{left:338.708667pt;}
.xd{left:340.029333pt;}
.x68{left:343.133067pt;}
.x66{left:347.410400pt;}
.x6d{left:350.983733pt;}
.x6c{left:352.167733pt;}
.x6b{left:358.098400pt;}
.x21{left:367.129733pt;}
.x31{left:370.671067pt;}
.x30{left:377.775067pt;}
.x25{left:379.279067pt;}
.x48{left:380.677200pt;}
.x24{left:382.233733pt;}
.x27{left:388.857733pt;}
.x26{left:391.727067pt;}
.x23{left:393.807067pt;}
.x22{left:395.588400pt;}
.x45{left:398.447867pt;}
.x34{left:407.716400pt;}
.x33{left:410.084400pt;}
.x32{left:411.876400pt;}
.x10{left:415.223333pt;}
.x2f{left:419.279067pt;}
.xf{left:421.085333pt;}
.x70{left:448.805200pt;}
.x12{left:460.175333pt;}
.x6f{left:475.471867pt;}
.x11{left:488.711333pt;}
.x78{left:498.291867pt;}
.x13{left:500.176267pt;}
.x5e{left:503.781733pt;}
.x56{left:505.573733pt;}
.x61{left:506.725733pt;}
.x5a{left:507.941733pt;}
.x5d{left:510.309733pt;}
.x60{left:511.771067pt;}
.x5f{left:513.552400pt;}
.x5b{left:515.056400pt;}
.x62{left:516.805733pt;}
}




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