
    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_fad8b18776b6923a1ea92a80.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_336a70269ad31677ab6fbc57.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_fd2c66ec5196737a7c6261ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_ee9112598e2764e23af3f2aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_df6fcc9793bf2893fef578cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_395a122dcb6226b0a5f0fc6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_b4261c508b23deb695653256.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b37e21ff2cd056eb6429516c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.716000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_14ad94efb33fc8c5657c81e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_dc10c0aee19bbdc029d16e93.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_e6cf3fec34c0711c82a247d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.869000;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:fff;src:url('chunks/assets/font_257668a6642c8f210e0f81a9.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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:ff10;src:url('chunks/assets/font_0775f4880551beac823ed871.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.453000;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:ff11;src:url('chunks/assets/font_d1db6090aaf44e4a607aaef3.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.400000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b9b491e63d595673e219c142.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.918000;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:ff17;src:url('chunks/assets/font_8ecaf81799f907e962da8e37.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.845000;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:ff18;src:url('chunks/assets/font_a2fbcede3872d722e0926d20.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909000;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:ff19;src:url('chunks/assets/font_87f3299efac2faf7939a8df0.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.005000;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:ff1a;src:url('chunks/assets/font_9f64d2f828998eb0ea83a502.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.005000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.176309,-0.177243,0.177243,0.176309,0,0);-ms-transform:matrix(0.176309,-0.177243,0.177243,0.176309,0,0);-webkit-transform:matrix(0.176309,-0.177243,0.177243,0.176309,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);}
.v4{vertical-align:-35.673041px;}
.v3{vertical-align:-29.223817px;}
.ve{vertical-align:-25.104000px;}
.v5{vertical-align:-21.186000px;}
.v6{vertical-align:-13.320000px;}
.v1{vertical-align:-11.160000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:8.688000px;}
.v2{vertical-align:17.718323px;}
.vb{vertical-align:19.446000px;}
.v10{vertical-align:24.738000px;}
.vd{vertical-align:26.034000px;}
.vf{vertical-align:28.242000px;}
.v8{vertical-align:33.672000px;}
.v7{vertical-align:44.100000px;}
.va{vertical-align:48.528000px;}
.v9{vertical-align:107.334000px;}
.ls1{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000472px;}
.ls39{letter-spacing:0.001114px;}
.ls4{letter-spacing:0.001150px;}
.lse{letter-spacing:0.001473px;}
.ls19{letter-spacing:0.001622px;}
.ls13{letter-spacing:0.002450px;}
.ls41{letter-spacing:0.002675px;}
.ls2c{letter-spacing:0.004391px;}
.ls2e{letter-spacing:0.005770px;}
.ls8{letter-spacing:0.592737px;}
.ls17{letter-spacing:2.984915px;}
.ls18{letter-spacing:2.985017px;}
.ls2d{letter-spacing:2.985056px;}
.ls1b{letter-spacing:2.991072px;}
.ls2a{letter-spacing:3.466566px;}
.ls38{letter-spacing:5.170913px;}
.ls36{letter-spacing:5.890914px;}
.ls1a{letter-spacing:5.975468px;}
.ls37{letter-spacing:6.545460px;}
.ls23{letter-spacing:7.487566px;}
.ls20{letter-spacing:7.493566px;}
.ls1c{letter-spacing:11.953114px;}
.ls1d{letter-spacing:11.959114px;}
.ls3e{letter-spacing:15.934404px;}
.ls29{letter-spacing:15.937473px;}
.ls3f{letter-spacing:15.941073px;}
.ls3a{letter-spacing:15.943473px;}
.ls40{letter-spacing:17.693073px;}
.ls4e{letter-spacing:19.919518px;}
.ls21{letter-spacing:19.927473px;}
.ls48{letter-spacing:20.069608px;}
.lsb{letter-spacing:20.453770px;}
.ls28{letter-spacing:20.903770px;}
.ls9{letter-spacing:21.037114px;}
.lsd{letter-spacing:21.229114px;}
.ls31{letter-spacing:21.282000px;}
.ls26{letter-spacing:21.403114px;}
.ls27{letter-spacing:21.409114px;}
.ls47{letter-spacing:22.321150px;}
.ls45{letter-spacing:22.645150px;}
.ls4f{letter-spacing:23.413473px;}
.ls0{letter-spacing:23.413974px;}
.ls46{letter-spacing:24.415114px;}
.ls3d{letter-spacing:24.649473px;}
.lsc{letter-spacing:25.399473px;}
.ls25{letter-spacing:25.597473px;}
.lsa{letter-spacing:25.599750px;}
.ls44{letter-spacing:25.634915px;}
.ls24{letter-spacing:26.077150px;}
.ls43{letter-spacing:26.467150px;}
.ls35{letter-spacing:27.747744px;}
.ls34{letter-spacing:28.836472px;}
.ls3c{letter-spacing:29.174915px;}
.ls5{letter-spacing:29.256760px;}
.ls42{letter-spacing:29.450915px;}
.ls7{letter-spacing:29.655477px;}
.ls3{letter-spacing:30.080915px;}
.ls33{letter-spacing:30.187114px;}
.ls1f{letter-spacing:30.871473px;}
.ls3b{letter-spacing:31.165473px;}
.ls32{letter-spacing:31.260000px;}
.ls1e{letter-spacing:31.711473px;}
.ls6{letter-spacing:31.833525px;}
.ls30{letter-spacing:33.281518px;}
.ls2{letter-spacing:35.865600px;}
.ls2f{letter-spacing:36.267056px;}
.ls22{letter-spacing:67.456800px;}
.ls4d{letter-spacing:77.633073px;}
.ls4b{letter-spacing:79.579200px;}
.lsf{letter-spacing:103.596047px;}
.ls10{letter-spacing:117.481427px;}
.ls4c{letter-spacing:123.817200px;}
.ls4a{letter-spacing:128.683150px;}
.ls11{letter-spacing:130.743050px;}
.ls49{letter-spacing:178.574915px;}
.ls16{letter-spacing:275.827809px;}
.ls14{letter-spacing:368.666915px;}
.ls15{letter-spacing:375.727150px;}
.ls12{letter-spacing:391.409608px;}
.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;}
}
.ws102{word-spacing:-55.806874px;}
.wsf8{word-spacing:-50.809387px;}
.ws105{word-spacing:-50.465503px;}
.ws106{word-spacing:-50.427034px;}
.ws24{word-spacing:-45.664082px;}
.wsa9{word-spacing:-33.684972px;}
.wsc4{word-spacing:-33.211407px;}
.ws1b{word-spacing:-32.278875px;}
.ws101{word-spacing:-29.727174px;}
.wsd2{word-spacing:-26.665106px;}
.wse3{word-spacing:-25.993106px;}
.ws1{word-spacing:-22.416000px;}
.wse7{word-spacing:-21.889106px;}
.ws5{word-spacing:-19.510886px;}
.ws1f{word-spacing:-19.439155px;}
.wsdd{word-spacing:-19.399106px;}
.wsaa{word-spacing:-19.295445px;}
.ws151{word-spacing:-17.932800px;}
.ws141{word-spacing:-12.480000px;}
.ws13b{word-spacing:-11.941862px;}
.wseb{word-spacing:-11.935707px;}
.wsec{word-spacing:-11.916345px;}
.wsea{word-spacing:-11.261482px;}
.ws1e{word-spacing:-10.903142px;}
.ws114{word-spacing:-5.236368px;}
.wsed{word-spacing:-4.627707px;}
.ws13c{word-spacing:-3.514829px;}
.wsef{word-spacing:-3.371366px;}
.ws72{word-spacing:-3.227904px;}
.ws80{word-spacing:-3.084442px;}
.wsb4{word-spacing:-2.940979px;}
.ws32{word-spacing:-2.654054px;}
.ws14c{word-spacing:-2.510592px;}
.wsad{word-spacing:-2.367130px;}
.wsf6{word-spacing:-2.223667px;}
.ws4d{word-spacing:-2.151936px;}
.ws9f{word-spacing:-2.080205px;}
.wsf7{word-spacing:-2.008474px;}
.ws48{word-spacing:-1.578086px;}
.wsb3{word-spacing:-1.434624px;}
.ws149{word-spacing:-1.362893px;}
.wsa6{word-spacing:-1.219430px;}
.ws116{word-spacing:-1.125708px;}
.wsf0{word-spacing:-1.075968px;}
.ws153{word-spacing:-1.004237px;}
.ws11f{word-spacing:-0.932506px;}
.wscb{word-spacing:-0.860774px;}
.wsb9{word-spacing:-0.796737px;}
.wsbb{word-spacing:-0.789043px;}
.ws17{word-spacing:-0.645581px;}
.ws49{word-spacing:-0.573850px;}
.wsfe{word-spacing:-0.502118px;}
.ws100{word-spacing:-0.286925px;}
.wse5{word-spacing:-0.215194px;}
.ws127{word-spacing:-0.152897px;}
.ws36{word-spacing:-0.143462px;}
.ws12{word-spacing:-0.071731px;}
.wse2{word-spacing:-0.065455px;}
.wsc5{word-spacing:-0.047821px;}
.ws6{word-spacing:0.000000px;}
.ws4e{word-spacing:0.071731px;}
.ws21{word-spacing:0.143462px;}
.ws19{word-spacing:0.215194px;}
.wse9{word-spacing:0.317449px;}
.ws3a{word-spacing:0.358656px;}
.ws103{word-spacing:0.390117px;}
.wsa2{word-spacing:0.430387px;}
.ws5b{word-spacing:0.502118px;}
.ws6d{word-spacing:0.573850px;}
.ws71{word-spacing:0.645581px;}
.wsaf{word-spacing:0.717312px;}
.ws37{word-spacing:0.789043px;}
.ws78{word-spacing:0.860774px;}
.ws29{word-spacing:0.932506px;}
.ws2a{word-spacing:0.933972px;}
.ws148{word-spacing:1.004237px;}
.ws70{word-spacing:1.075968px;}
.ws50{word-spacing:1.147699px;}
.ws53{word-spacing:1.167972px;}
.ws35{word-spacing:1.219430px;}
.ws143{word-spacing:1.291162px;}
.ws97{word-spacing:1.362893px;}
.ws3d{word-spacing:1.434624px;}
.ws45{word-spacing:1.506355px;}
.ws56{word-spacing:1.578086px;}
.wsd3{word-spacing:1.629972px;}
.ws46{word-spacing:1.649818px;}
.wsa8{word-spacing:1.687745px;}
.wsab{word-spacing:1.721549px;}
.wsa0{word-spacing:1.793280px;}
.ws83{word-spacing:1.865011px;}
.wsb6{word-spacing:2.008474px;}
.ws2f{word-spacing:2.080205px;}
.ws65{word-spacing:2.151936px;}
.ws67{word-spacing:2.223667px;}
.ws132{word-spacing:2.295398px;}
.wsbc{word-spacing:2.367130px;}
.ws4a{word-spacing:2.438861px;}
.wsc6{word-spacing:2.510592px;}
.ws9b{word-spacing:2.582323px;}
.wscd{word-spacing:2.654054px;}
.ws87{word-spacing:2.725786px;}
.ws131{word-spacing:2.797517px;}
.ws130{word-spacing:2.799972px;}
.wsd9{word-spacing:2.869248px;}
.ws30{word-spacing:2.940979px;}
.ws15{word-spacing:3.012710px;}
.ws75{word-spacing:3.084442px;}
.ws73{word-spacing:3.156173px;}
.ws6f{word-spacing:3.299635px;}
.ws122{word-spacing:3.371366px;}
.ws4b{word-spacing:3.443098px;}
.wsf5{word-spacing:3.514829px;}
.ws7e{word-spacing:3.586560px;}
.ws33{word-spacing:3.658291px;}
.ws95{word-spacing:3.730022px;}
.ws54{word-spacing:3.801754px;}
.ws2{word-spacing:3.873485px;}
.ws147{word-spacing:3.899028px;}
.ws6b{word-spacing:3.912278px;}
.wsd{word-spacing:3.945216px;}
.wsae{word-spacing:4.016947px;}
.ws146{word-spacing:4.088678px;}
.wsc8{word-spacing:4.160410px;}
.ws1a{word-spacing:4.232141px;}
.ws11{word-spacing:4.303872px;}
.ws9c{word-spacing:4.375603px;}
.wsfd{word-spacing:4.447334px;}
.ws0{word-spacing:4.483200px;}
.wsb0{word-spacing:4.519066px;}
.ws86{word-spacing:4.590797px;}
.ws3{word-spacing:4.648169px;}
.wsa7{word-spacing:4.662528px;}
.ws121{word-spacing:4.734259px;}
.wsc7{word-spacing:4.805990px;}
.ws44{word-spacing:4.877722px;}
.ws84{word-spacing:4.949453px;}
.ws62{word-spacing:5.021184px;}
.ws3c{word-spacing:5.092915px;}
.ws7b{word-spacing:5.164646px;}
.wse6{word-spacing:5.236378px;}
.ws13e{word-spacing:5.308109px;}
.ws3f{word-spacing:5.379825px;}
.ws124{word-spacing:5.379840px;}
.wscf{word-spacing:5.451571px;}
.ws88{word-spacing:5.523302px;}
.wsb8{word-spacing:5.666765px;}
.ws14d{word-spacing:5.738496px;}
.wsb1{word-spacing:5.810227px;}
.ws13{word-spacing:5.881958px;}
.ws8{word-spacing:5.953690px;}
.ws92{word-spacing:6.025421px;}
.ws22{word-spacing:6.097152px;}
.ws31{word-spacing:6.168883px;}
.ws4f{word-spacing:6.240614px;}
.ws40{word-spacing:6.312346px;}
.ws7c{word-spacing:6.322454px;}
.wse8{word-spacing:6.384077px;}
.ws4{word-spacing:6.455775px;}
.ws34{word-spacing:6.455808px;}
.ws12d{word-spacing:6.467668px;}
.ws77{word-spacing:6.527539px;}
.wsc1{word-spacing:6.599270px;}
.ws42{word-spacing:6.671002px;}
.ws90{word-spacing:6.687972px;}
.ws10{word-spacing:6.742733px;}
.ws115{word-spacing:6.779520px;}
.ws38{word-spacing:6.814464px;}
.ws6e{word-spacing:6.886195px;}
.ws27{word-spacing:6.945972px;}
.ws12f{word-spacing:6.951972px;}
.ws28{word-spacing:6.957926px;}
.ws14{word-spacing:7.029658px;}
.wsd0{word-spacing:7.101389px;}
.wsda{word-spacing:7.173120px;}
.ws5f{word-spacing:7.244851px;}
.ws13d{word-spacing:7.316582px;}
.ws2d{word-spacing:7.388314px;}
.ws2b{word-spacing:7.460045px;}
.ws119{word-spacing:7.515972px;}
.ws16{word-spacing:7.531776px;}
.ws23{word-spacing:7.603507px;}
.ws3e{word-spacing:7.675238px;}
.wsd6{word-spacing:7.746970px;}
.ws12e{word-spacing:7.774479px;}
.wsdb{word-spacing:7.818701px;}
.ws2e{word-spacing:7.890432px;}
.wsd4{word-spacing:7.962163px;}
.ws58{word-spacing:8.033894px;}
.ws60{word-spacing:8.105626px;}
.ws98{word-spacing:8.177357px;}
.ws109{word-spacing:8.223059px;}
.wsf4{word-spacing:8.249088px;}
.ws145{word-spacing:8.320819px;}
.ws47{word-spacing:8.392550px;}
.ws85{word-spacing:8.464282px;}
.ws12a{word-spacing:8.536013px;}
.ws5a{word-spacing:8.607744px;}
.ws59{word-spacing:8.679475px;}
.wsa5{word-spacing:8.751206px;}
.ws81{word-spacing:8.894669px;}
.wsdc{word-spacing:8.904682px;}
.ws76{word-spacing:8.966400px;}
.ws10d{word-spacing:9.038131px;}
.ws10b{word-spacing:9.066682px;}
.ws120{word-spacing:9.109862px;}
.ws64{word-spacing:9.181594px;}
.wsf3{word-spacing:9.253325px;}
.ws108{word-spacing:9.304251px;}
.wse4{word-spacing:9.325056px;}
.ws61{word-spacing:9.396787px;}
.ws12c{word-spacing:9.454479px;}
.wsbe{word-spacing:9.468518px;}
.ws10a{word-spacing:9.540250px;}
.ws9a{word-spacing:9.683712px;}
.ws25{word-spacing:9.755443px;}
.wsbf{word-spacing:9.827174px;}
.ws66{word-spacing:9.898906px;}
.wsf1{word-spacing:10.042368px;}
.ws41{word-spacing:10.114099px;}
.ws18{word-spacing:10.185830px;}
.ws79{word-spacing:10.257562px;}
.ws8c{word-spacing:10.329293px;}
.ws8e{word-spacing:10.335972px;}
.ws12b{word-spacing:10.472755px;}
.wsff{word-spacing:10.544486px;}
.ws11d{word-spacing:10.759680px;}
.wsf9{word-spacing:10.831411px;}
.ws39{word-spacing:10.903142px;}
.ws99{word-spacing:10.974874px;}
.wsc2{word-spacing:11.046605px;}
.ws43{word-spacing:11.118336px;}
.ws94{word-spacing:11.190067px;}
.ws26{word-spacing:11.195768px;}
.wsce{word-spacing:11.333530px;}
.ws14e{word-spacing:11.476992px;}
.ws8b{word-spacing:11.548723px;}
.ws129{word-spacing:11.620454px;}
.wsa{word-spacing:11.695811px;}
.ws107{word-spacing:11.747236px;}
.wsc0{word-spacing:11.763917px;}
.ws5e{word-spacing:11.835648px;}
.ws11e{word-spacing:11.907379px;}
.ws2c{word-spacing:12.050842px;}
.ws57{word-spacing:12.122573px;}
.wsc3{word-spacing:12.194304px;}
.ws144{word-spacing:12.624691px;}
.ws7a{word-spacing:12.696422px;}
.wsf2{word-spacing:12.839885px;}
.ws9e{word-spacing:13.198541px;}
.ws3b{word-spacing:13.700659px;}
.ws150{word-spacing:13.915853px;}
.ws11c{word-spacing:13.987584px;}
.ws9d{word-spacing:14.059315px;}
.ws117{word-spacing:14.337727px;}
.ws14f{word-spacing:14.489702px;}
.ws63{word-spacing:14.561434px;}
.wsd1{word-spacing:14.848358px;}
.wsde{word-spacing:15.207014px;}
.wscc{word-spacing:15.278746px;}
.wsdf{word-spacing:15.350477px;}
.ws118{word-spacing:15.395040px;}
.ws152{word-spacing:15.422208px;}
.wsd5{word-spacing:15.493939px;}
.wsc9{word-spacing:15.565670px;}
.wsa4{word-spacing:15.637402px;}
.ws126{word-spacing:15.895912px;}
.ws1d{word-spacing:16.354714px;}
.wsb5{word-spacing:16.523393px;}
.ws11a{word-spacing:16.537680px;}
.ws10c{word-spacing:16.943520px;}
.wsb2{word-spacing:18.076262px;}
.wsba{word-spacing:18.647393px;}
.ws7{word-spacing:18.721843px;}
.ws155{word-spacing:19.152230px;}
.ws128{word-spacing:19.295693px;}
.ws156{word-spacing:20.228198px;}
.ws52{word-spacing:20.635050px;}
.wsa1{word-spacing:21.218638px;}
.wsb7{word-spacing:21.425393px;}
.wse0{word-spacing:21.730927px;}
.wsee{word-spacing:21.734554px;}
.wse1{word-spacing:21.749382px;}
.wsbd{word-spacing:21.833393px;}
.ws11b{word-spacing:21.911520px;}
.ws123{word-spacing:21.981514px;}
.ws7f{word-spacing:23.030767px;}
.ws96{word-spacing:23.195265px;}
.wsa3{word-spacing:23.289642px;}
.ws125{word-spacing:23.312640px;}
.ws8a{word-spacing:23.325514px;}
.ws14a{word-spacing:24.747514px;}
.ws89{word-spacing:24.949891px;}
.ws14b{word-spacing:24.985016px;}
.ws93{word-spacing:25.475265px;}
.ws7d{word-spacing:25.761642px;}
.ws91{word-spacing:26.131891px;}
.ws82{word-spacing:26.495265px;}
.wsac{word-spacing:26.496140px;}
.ws74{word-spacing:26.499642px;}
.ws142{word-spacing:27.048010px;}
.ws55{word-spacing:27.600628px;}
.ws8f{word-spacing:29.763514px;}
.ws8d{word-spacing:29.765265px;}
.ws51{word-spacing:36.798106px;}
.ws113{word-spacing:41.236398px;}
.ws110{word-spacing:41.432762px;}
.ws10e{word-spacing:41.563671px;}
.ws112{word-spacing:41.890944px;}
.ws1c{word-spacing:42.572467px;}
.wsf{word-spacing:49.315200px;}
.ws154{word-spacing:50.597186px;}
.ws136{word-spacing:52.206349px;}
.ws69{word-spacing:52.220314px;}
.ws111{word-spacing:53.280044px;}
.ws10f{word-spacing:53.607317px;}
.ws5d{word-spacing:58.711223px;}
.ws137{word-spacing:60.039014px;}
.ws135{word-spacing:67.929446px;}
.ws6c{word-spacing:69.794458px;}
.ws13f{word-spacing:69.937725px;}
.wsd8{word-spacing:73.811405px;}
.ws5c{word-spacing:78.280435px;}
.ws20{word-spacing:83.925075px;}
.ws6a{word-spacing:87.296870px;}
.ws68{word-spacing:87.368602px;}
.ws138{word-spacing:112.115866px;}
.ws140{word-spacing:118.188000px;}
.ws139{word-spacing:120.149760px;}
.ws134{word-spacing:128.068884px;}
.wsd7{word-spacing:132.200602px;}
.wsca{word-spacing:177.032602px;}
.ws13a{word-spacing:196.885715px;}
.ws133{word-spacing:200.455661px;}
.wsfc{word-spacing:205.503902px;}
.wsfa{word-spacing:255.053318px;}
.wsfb{word-spacing:255.058395px;}
.ws4c{word-spacing:261.722745px;}
.wsb{word-spacing:414.316368px;}
.wsc{word-spacing:421.080620px;}
.ws9{word-spacing:475.811526px;}
.wse{word-spacing:514.610932px;}
.ws104{word-spacing:870.990776px;}
._35{margin-left:-41.747558px;}
._32{margin-left:-37.874074px;}
._2b{margin-left:-35.865600px;}
._2d{margin-left:-34.000589px;}
._13{margin-left:-32.924621px;}
._95{margin-left:-27.531738px;}
._2c{margin-left:-12.409498px;}
._7{margin-left:-10.687883px;}
._77{margin-left:-8.091257px;}
._f{margin-left:-6.814464px;}
._c{margin-left:-5.810227px;}
._1{margin-left:-4.519066px;}
._1f{margin-left:-3.514829px;}
._0{margin-left:-2.223667px;}
._d{margin-left:-1.075968px;}
._2{width:1.936742px;}
._3{width:3.202064px;}
._3e{width:4.734259px;}
._73{width:6.122987px;}
._63{width:7.173993px;}
._36{width:8.822938px;}
._3d{width:18.578381px;}
._1d{width:20.443392px;}
._47{width:22.152541px;}
._25{width:23.186567px;}
._26{width:24.319050px;}
._46{width:25.608038px;}
._2a{width:27.564344px;}
._3c{width:28.764211px;}
._3a{width:30.485760px;}
._5{width:31.561728px;}
._1c{width:32.924621px;}
._43{width:34.430976px;}
._60{width:36.224256px;}
._4{width:37.443582px;}
._31{width:39.434771px;}
._1e{width:41.101978px;}
._20{width:42.536602px;}
._3b{width:43.827763px;}
._44{width:44.832000px;}
._62{width:46.625280px;}
._50{width:47.701248px;}
._4c{width:48.927579px;}
._33{width:50.337913px;}
._5f{width:51.431270px;}
._42{width:52.865894px;}
._5e{width:54.085325px;}
._61{width:55.519949px;}
._2f{width:57.421912px;}
._49{width:58.711223px;}
._37{width:60.897615px;}
._4f{width:63.482112px;}
._22{width:64.988467px;}
._6a{width:65.992808px;}
._48{width:68.496790px;}
._27{width:69.507533px;}
._8{width:72.000735px;}
._2e{width:73.094093px;}
._85{width:74.313523px;}
._10{width:76.096587px;}
._4b{width:78.280435px;}
._29{width:80.338944px;}
._e{width:84.058750px;}
._7c{width:87.440333px;}
._55{width:88.964077px;}
._58{width:90.279510px;}
._66{width:93.161439px;}
._69{width:94.309139px;}
._41{width:96.836850px;}
._7e{width:99.275981px;}
._84{width:100.495411px;}
._7f{width:102.934272px;}
._91{width:105.373133px;}
._59{width:106.807757px;}
._30{width:108.027187px;}
._94{width:111.828941px;}
._3f{width:116.203950px;}
._11{width:119.314635px;}
._56{width:124.381901px;}
._88{width:126.031718px;}
._90{width:128.040192px;}
._78{width:130.837709px;}
._52{width:131.985408px;}
._6e{width:133.348301px;}
._82{width:134.352538px;}
._89{width:138.206168px;}
._6f{width:140.234496px;}
._57{width:141.956045px;}
._28{width:143.247206px;}
._6d{width:144.610099px;}
._70{width:150.922445px;}
._9{width:155.108504px;}
._79{width:157.449984px;}
._51{width:162.040781px;}
._81{width:163.618867px;}
._83{width:165.755370px;}
._71{width:167.905350px;}
._6c{width:169.285632px;}
._4e{width:171.333867px;}
._80{width:174.522010px;}
._16{width:175.526246px;}
._8e{width:179.471462px;}
._67{width:181.103891px;}
._19{width:184.851302px;}
._54{width:187.577088px;}
._76{width:189.011712px;}
._5b{width:201.386431px;}
._5c{width:205.977228px;}
._1a{width:209.902881px;}
._8d{width:212.898202px;}
._65{width:214.189363px;}
._b{width:218.203267px;}
._7d{width:221.966497px;}
._64{width:231.691776px;}
._87{width:250.126694px;}
._14{width:253.641523px;}
._5a{width:257.801933px;}
._4d{width:266.402618px;}
._45{width:274.401910px;}
._53{width:279.321293px;}
._8b{width:300.840653px;}
._68{width:311.672064px;}
._7b{width:328.308507px;}
._12{width:336.710383px;}
._7a{width:344.524954px;}
._86{width:348.039782px;}
._8c{width:358.799462px;}
._4a{width:371.440253px;}
._1b{width:388.370106px;}
._8a{width:429.311232px;}
._a{width:445.655729px;}
._75{width:449.969818px;}
._74{width:497.312410px;}
._72{width:560.978387px;}
._8f{width:603.331123px;}
._92{width:618.466406px;}
._5d{width:693.482961px;}
._6{width:727.524993px;}
._40{width:728.600961px;}
._17{width:771.056058px;}
._93{width:777.853133px;}
._6b{width:824.406682px;}
._15{width:922.750157px;}
._18{width:945.147681px;}
._23{width:1223.016960px;}
._34{width:1402.129766px;}
._38{width:1765.448294px;}
._24{width:1859.487898px;}
._21{width:2118.150605px;}
._39{width:2135.653018px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:2.369136px;}
.fs12{font-size:2.902192px;}
.fs10{font-size:3.553704px;}
.fs14{font-size:3.790618px;}
.fs11{font-size:4.145988px;}
.fse{font-size:5.076720px;}
.fs13{font-size:5.415168px;}
.fsf{font-size:5.922840px;}
.fsa{font-size:30.769200px;}
.fs8{font-size:32.399220px;}
.fs17{font-size:32.905200px;}
.fs6{font-size:33.845580px;}
.fsc{font-size:35.865600px;}
.fs16{font-size:36.195720px;}
.fsb{font-size:36.923040px;}
.fs4{font-size:37.606200px;}
.fs18{font-size:39.486240px;}
.fs5{font-size:45.127440px;}
.fs1a{font-size:45.930240px;}
.fs19{font-size:46.067280px;}
.fs7{font-size:46.284600px;}
.fs3{font-size:47.820600px;}
.fs1b{font-size:48.000000px;}
.fs9{font-size:55.541520px;}
.fsd{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y283{bottom:7.353141px;}
.y1c8{bottom:7.536772px;}
.y2ae{bottom:7.684497px;}
.yc4{bottom:9.910086px;}
.y1e9{bottom:10.892135px;}
.y77{bottom:12.491134px;}
.y92{bottom:17.202829px;}
.y1ea{bottom:20.403795px;}
.ycc{bottom:21.604786px;}
.y78{bottom:22.641870px;}
.y1c7{bottom:23.117268px;}
.yca{bottom:28.466558px;}
.yc3{bottom:28.910740px;}
.yc5{bottom:29.910066px;}
.y27c{bottom:30.806270px;}
.y2a7{bottom:32.194497px;}
.y91{bottom:35.924588px;}
.y1c9{bottom:36.700455px;}
.ya4{bottom:37.587029px;}
.y1ca{bottom:41.559045px;}
.yc2{bottom:42.468419px;}
.y7e{bottom:46.274135px;}
.y273{bottom:46.444082px;}
.yc6{bottom:47.023332px;}
.y29f{bottom:48.536997px;}
.y1eb{bottom:49.649994px;}
.y79{bottom:53.260489px;}
.y7f{bottom:54.045104px;}
.yc1{bottom:56.026098px;}
.ya3{bottom:57.981181px;}
.y97{bottom:61.795944px;}
.y98{bottom:62.013589px;}
.y1dd{bottom:62.659417px;}
.yc7{bottom:64.136598px;}
.y93{bottom:65.393315px;}
.y1de{bottom:67.518007px;}
.yc0{bottom:69.583777px;}
.y274{bottom:74.691179px;}
.y1cb{bottom:77.415326px;}
.ya2{bottom:78.375333px;}
.y1ec{bottom:78.896193px;}
.y2a0{bottom:79.939497px;}
.yc8{bottom:81.249864px;}
.y1cc{bottom:82.273917px;}
.ybf{bottom:83.141455px;}
.y7a{bottom:83.879108px;}
.y1df{bottom:96.330762px;}
.ycb{bottom:96.565288px;}
.ybe{bottom:96.699134px;}
.yc9{bottom:98.363130px;}
.ya1{bottom:98.769485px;}
.y1e0{bottom:101.189352px;}
.y275{bottom:102.945453px;}
.y86{bottom:104.304321px;}
.y1ed{bottom:108.142392px;}
.ybd{bottom:110.256813px;}
.y215{bottom:110.313000px;}
.y2a1{bottom:111.349497px;}
.y2ad{bottom:112.751250px;}
.y19b{bottom:113.290500px;}
.y245{bottom:113.910000px;}
.y7b{bottom:114.497726px;}
.y282{bottom:115.711910px;}
.y8f{bottom:116.640000px;}
.y85{bottom:116.731995px;}
.y1cd{bottom:117.823056px;}
.ycf{bottom:118.429208px;}
.ya0{bottom:119.163637px;}
.yd7{bottom:119.206500px;}
.y94{bottom:119.232149px;}
.yfe{bottom:120.291000px;}
.y2ed{bottom:121.468500px;}
.y180{bottom:122.074500px;}
.y1ce{bottom:122.681646px;}
.y1f3{bottom:123.600157px;}
.ybc{bottom:123.814492px;}
.y29d{bottom:123.937500px;}
.y1c5{bottom:125.472000px;}
.y15b{bottom:125.952000px;}
.yd0{bottom:127.347469px;}
.y135{bottom:128.365500px;}
.y84{bottom:129.159669px;}
.y1e1{bottom:129.694543px;}
.y11d{bottom:130.365000px;}
.y276{bottom:131.192551px;}
.y214{bottom:131.980500px;}
.y1e2{bottom:134.553133px;}
.y26c{bottom:135.330000px;}
.y244{bottom:135.579000px;}
.y1ee{bottom:137.388591px;}
.y8e{bottom:138.307500px;}
.y9f{bottom:139.557789px;}
.y1dc{bottom:140.711448px;}
.yd6{bottom:140.875500px;}
.y83{bottom:141.587343px;}
.yfd{bottom:141.960000px;}
.y2a2{bottom:142.751997px;}
.y17f{bottom:143.742000px;}
.yb1{bottom:144.217644px;}
.y7c{bottom:145.116345px;}
.y29c{bottom:145.605000px;}
.y1c4{bottom:147.141000px;}
.y15a{bottom:147.619500px;}
.y1db{bottom:149.569055px;}
.yc{bottom:151.408500px;}
.y11c{bottom:152.032500px;}
.y213{bottom:153.649500px;}
.y82{bottom:154.015017px;}
.yb0{bottom:155.912344px;}
.yb6{bottom:156.127488px;}
.y26b{bottom:156.999000px;}
.y243{bottom:157.248000px;}
.y1cf{bottom:157.923221px;}
.y2ec{bottom:158.080500px;}
.y1da{bottom:158.427086px;}
.y277{bottom:159.439649px;}
.y9e{bottom:159.951941px;}
.y8d{bottom:159.976500px;}
.y19a{bottom:162.381000px;}
.yb7{bottom:162.485655px;}
.yd5{bottom:162.544500px;}
.y1d0{bottom:162.781812px;}
.yfc{bottom:163.627500px;}
.y1e3{bottom:163.673453px;}
.yb2{bottom:164.217624px;}
.y17e{bottom:165.411000px;}
.y81{bottom:166.442691px;}
.y1ef{bottom:166.634790px;}
.y30f{bottom:166.723500px;}
.y1d9{bottom:167.119700px;}
.y29b{bottom:167.274000px;}
.y1e4{bottom:168.532043px;}
.y1c3{bottom:168.810000px;}
.y159{bottom:169.288500px;}
.y95{bottom:172.593673px;}
.yb{bottom:173.077500px;}
.y11b{bottom:173.701500px;}
.y2a3{bottom:174.154497px;}
.y22e{bottom:175.029000px;}
.y212{bottom:175.318500px;}
.y7d{bottom:175.734963px;}
.y1d8{bottom:175.811890px;}
.y26a{bottom:178.666500px;}
.y80{bottom:178.870365px;}
.y242{bottom:178.917000px;}
.y2eb{bottom:179.749500px;}
.y1d4{bottom:180.170187px;}
.y9d{bottom:180.346093px;}
.y8c{bottom:181.645500px;}
.y1d3{bottom:181.870689px;}
.yd4{bottom:184.213500px;}
.y1d7{bottom:184.504504px;}
.yfb{bottom:185.296500px;}
.y17d{bottom:187.080000px;}
.yb3{bottom:187.211651px;}
.y278{bottom:187.686746px;}
.yb9{bottom:187.923202px;}
.y30e{bottom:188.392500px;}
.y29a{bottom:188.943000px;}
.y1c2{bottom:190.479000px;}
.y158{bottom:190.957500px;}
.y2ac{bottom:194.824497px;}
.y1d6{bottom:195.368262px;}
.y11a{bottom:195.370500px;}
.y281{bottom:195.810657px;}
.y1f0{bottom:195.880989px;}
.y1d2{bottom:195.929015px;}
.y22d{bottom:196.698000px;}
.y211{bottom:196.987500px;}
.y5f{bottom:197.221500px;}
.y1d5{bottom:197.589327px;}
.y1d1{bottom:197.629518px;}
.y199{bottom:198.591000px;}
.y9a{bottom:199.949281px;}
.y269{bottom:200.335500px;}
.y9c{bottom:200.740244px;}
.y1f8{bottom:201.678000px;}
.y8b{bottom:203.314500px;}
.y2a4{bottom:205.556997px;}
.yd3{bottom:205.882500px;}
.yfa{bottom:206.965500px;}
.y17c{bottom:208.749000px;}
.y30d{bottom:210.061500px;}
.yb4{bottom:210.205678px;}
.y2ab{bottom:211.166997px;}
.y299{bottom:211.209000px;}
.y280{bottom:211.448469px;}
.yba{bottom:211.628779px;}
.y1c1{bottom:212.148000px;}
.y157{bottom:212.626500px;}
.y99{bottom:212.898121px;}
.y279{bottom:215.941020px;}
.y2ea{bottom:216.363000px;}
.y119{bottom:217.039500px;}
.y241{bottom:218.343000px;}
.y22c{bottom:218.367000px;}
.y210{bottom:218.656500px;}
.y5e{bottom:218.890500px;}
.y9b{bottom:221.134396px;}
.y268{bottom:222.004500px;}
.y1f7{bottom:223.347000px;}
.y8a{bottom:224.983500px;}
.y1f1{bottom:225.127188px;}
.y96{bottom:226.432508px;}
.y27f{bottom:227.086280px;}
.y2aa{bottom:227.509497px;}
.yd2{bottom:227.551500px;}
.yf9{bottom:228.634500px;}
.yb8{bottom:230.872846px;}
.y30c{bottom:231.730500px;}
.yb5{bottom:233.199705px;}
.y1c0{bottom:233.815500px;}
.y156{bottom:234.295500px;}
.y2c6{bottom:235.270500px;}
.ybb{bottom:235.334357px;}
.y2a5{bottom:236.966997px;}
.y2e9{bottom:238.032000px;}
.y118{bottom:238.708500px;}
.y22b{bottom:240.034500px;}
.y5d{bottom:240.559500px;}
.y17b{bottom:241.999500px;}
.y27e{bottom:242.724092px;}
.y267{bottom:243.673500px;}
.y2a9{bottom:243.851997px;}
.y27a{bottom:244.188118px;}
.y1f6{bottom:245.143740px;}
.y89{bottom:246.651000px;}
.y298{bottom:247.822500px;}
.y20f{bottom:248.460000px;}
.yf8{bottom:250.303500px;}
.ycd{bottom:252.736766px;}
.y30b{bottom:253.398000px;}
.y1e8{bottom:253.458000px;}
.y1f2{bottom:254.373388px;}
.y1bf{bottom:255.484500px;}
.y155{bottom:255.964500px;}
.y2c5{bottom:256.939500px;}
.y27d{bottom:258.361903px;}
.y1f5{bottom:258.421502px;}
.y2a8{bottom:260.194497px;}
.y117{bottom:260.377500px;}
.yce{bottom:261.655027px;}
.y22a{bottom:261.703500px;}
.y5c{bottom:262.228500px;}
.y266{bottom:265.342500px;}
.y88{bottom:268.320000px;}
.y2a6{bottom:268.369497px;}
.y20e{bottom:268.785000px;}
.yf7{bottom:271.972500px;}
.y27b{bottom:272.435216px;}
.yd1{bottom:273.154500px;}
.y2e8{bottom:274.644000px;}
.y30a{bottom:275.067000px;}
.y1be{bottom:277.153500px;}
.y154{bottom:277.632000px;}
.y240{bottom:278.244000px;}
.y1f4{bottom:278.377992px;}
.y2c4{bottom:278.608500px;}
.y116{bottom:282.045000px;}
.y229{bottom:283.372500px;}
.y5b{bottom:283.896000px;}
.y265{bottom:287.011500px;}
.y20d{bottom:289.108500px;}
.y2b0{bottom:292.879497px;}
.yf6{bottom:293.640000px;}
.y17a{bottom:293.992500px;}
.y284{bottom:295.888344px;}
.y2e7{bottom:296.313000px;}
.y297{bottom:296.365500px;}
.y309{bottom:296.736000px;}
.y1bd{bottom:298.822500px;}
.y153{bottom:299.301000px;}
.y23f{bottom:299.913000px;}
.y2c3{bottom:300.277500px;}
.yaf{bottom:303.267000px;}
.y115{bottom:303.714000px;}
.y228{bottom:305.041500px;}
.y264{bottom:308.679000px;}
.y2af{bottom:309.221997px;}
.y20c{bottom:309.432000px;}
.y87{bottom:313.924500px;}
.yf5{bottom:315.309000px;}
.y179{bottom:315.660000px;}
.y2e6{bottom:317.982000px;}
.y296{bottom:318.034500px;}
.y308{bottom:318.405000px;}
.y1bc{bottom:320.491500px;}
.y152{bottom:320.970000px;}
.y23e{bottom:321.582000px;}
.y2c2{bottom:321.946500px;}
.y134{bottom:322.287000px;}
.y5a{bottom:323.323500px;}
.y114{bottom:325.383000px;}
.y227{bottom:326.710500px;}
.y20b{bottom:329.755500px;}
.y263{bottom:330.348000px;}
.y329{bottom:335.403000px;}
.yf4{bottom:336.978000px;}
.y178{bottom:337.329000px;}
.y2e5{bottom:339.649500px;}
.y295{bottom:339.702000px;}
.y307{bottom:340.074000px;}
.y1bb{bottom:342.159000px;}
.y23d{bottom:343.249500px;}
.y2c1{bottom:343.614000px;}
.y133{bottom:343.956000px;}
.y76{bottom:344.037000px;}
.y113{bottom:347.052000px;}
.y226{bottom:348.378000px;}
.y262{bottom:352.017000px;}
.y151{bottom:354.220500px;}
.y328{bottom:357.072000px;}
.y20a{bottom:358.215000px;}
.yf3{bottom:358.647000px;}
.y177{bottom:358.998000px;}
.y2e4{bottom:361.318500px;}
.y294{bottom:361.371000px;}
.y306{bottom:361.741500px;}
.y1ba{bottom:363.828000px;}
.y2c0{bottom:365.283000px;}
.y132{bottom:365.625000px;}
.y112{bottom:368.721000px;}
.y261{bottom:373.686000px;}
.y327{bottom:378.741000px;}
.y209{bottom:379.884000px;}
.yf2{bottom:380.316000px;}
.y176{bottom:380.667000px;}
.y2e3{bottom:382.987500px;}
.y293{bottom:383.040000px;}
.y59{bottom:383.224500px;}
.y305{bottom:383.410500px;}
.y1b9{bottom:385.497000px;}
.y2bf{bottom:386.952000px;}
.y131{bottom:387.294000px;}
.y23c{bottom:388.854000px;}
.y111{bottom:390.390000px;}
.y225{bottom:392.986500px;}
.y260{bottom:395.355000px;}
.y326{bottom:400.410000px;}
.y150{bottom:400.983000px;}
.y208{bottom:401.553000px;}
.yf1{bottom:401.983500px;}
.y175{bottom:402.336000px;}
.y2e2{bottom:404.656500px;}
.y292{bottom:404.709000px;}
.y58{bottom:404.893500px;}
.y304{bottom:405.079500px;}
.y1b8{bottom:407.166000px;}
.y2be{bottom:408.621000px;}
.y130{bottom:408.963000px;}
.y110{bottom:412.057500px;}
.y25f{bottom:417.022500px;}
.y325{bottom:422.079000px;}
.y14f{bottom:422.650500px;}
.y207{bottom:423.222000px;}
.yf0{bottom:423.652500px;}
.y174{bottom:424.003500px;}
.y2e1{bottom:426.325500px;}
.y57{bottom:426.561000px;}
.y1b7{bottom:428.835000px;}
.y2bd{bottom:430.290000px;}
.y12f{bottom:430.630500px;}
.y10f{bottom:433.726500px;}
.y291{bottom:437.959500px;}
.y25e{bottom:438.691500px;}
.y14e{bottom:444.319500px;}
.y303{bottom:444.507000px;}
.y206{bottom:444.889500px;}
.yef{bottom:445.321500px;}
.y173{bottom:445.672500px;}
.y2e0{bottom:447.994500px;}
.y56{bottom:448.230000px;}
.y1b6{bottom:450.504000px;}
.y2bc{bottom:451.959000px;}
.y12e{bottom:452.299500px;}
.y10e{bottom:455.395500px;}
.y324{bottom:458.691000px;}
.y25d{bottom:460.360500px;}
.y14d{bottom:465.988500px;}
.y205{bottom:466.558500px;}
.yee{bottom:466.990500px;}
.y172{bottom:467.341500px;}
.y2df{bottom:469.662000px;}
.y55{bottom:469.899000px;}
.y1b5{bottom:472.171500px;}
.y2bb{bottom:473.626500px;}
.y12d{bottom:473.968500px;}
.y10d{bottom:477.064500px;}
.y25c{bottom:482.029500px;}
.y14c{bottom:487.657500px;}
.y204{bottom:488.227500px;}
.ya{bottom:488.589000px;}
.yed{bottom:488.659500px;}
.y171{bottom:489.010500px;}
.y290{bottom:489.951000px;}
.y46{bottom:490.447500px;}
.y54{bottom:491.568000px;}
.y1b4{bottom:493.840500px;}
.y2ba{bottom:495.295500px;}
.y323{bottom:495.304500px;}
.y12c{bottom:495.637500px;}
.y10c{bottom:498.733500px;}
.y2de{bottom:502.912500px;}
.y25b{bottom:503.698500px;}
.y302{bottom:504.406500px;}
.y14b{bottom:509.326500px;}
.yec{bottom:510.328500px;}
.y170{bottom:510.679500px;}
.y28f{bottom:511.620000px;}
.y53{bottom:513.237000px;}
.y1b3{bottom:515.509500px;}
.y198{bottom:516.634500px;}
.y10b{bottom:520.401000px;}
.y203{bottom:521.478000px;}
.y25a{bottom:525.367500px;}
.y301{bottom:526.075500px;}
.y2b9{bottom:528.546000px;}
.y12b{bottom:528.888000px;}
.y45{bottom:529.675500px;}
.y14a{bottom:530.995500px;}
.y322{bottom:531.916500px;}
.yeb{bottom:531.996000px;}
.y16f{bottom:532.348500px;}
.y28e{bottom:533.289000px;}
.y52{bottom:534.906000px;}
.y9{bottom:534.915000px;}
.y1b2{bottom:537.178500px;}
.y197{bottom:538.303500px;}
.y10a{bottom:542.070000px;}
.y300{bottom:547.744500px;}
.y44{bottom:551.344500px;}
.y149{bottom:552.663000px;}
.y321{bottom:553.585500px;}
.yea{bottom:553.665000px;}
.y16e{bottom:554.016000px;}
.y2dd{bottom:554.905500px;}
.y28d{bottom:554.958000px;}
.y51{bottom:556.573500px;}
.y259{bottom:558.616500px;}
.y1b1{bottom:558.847500px;}
.y196{bottom:559.972500px;}
.y109{bottom:563.739000px;}
.y8{bottom:567.792000px;}
.y202{bottom:567.811500px;}
.y2ff{bottom:569.413500px;}
.y75{bottom:571.518000px;}
.y43{bottom:573.013500px;}
.y148{bottom:574.332000px;}
.ye9{bottom:575.334000px;}
.y12a{bottom:575.649000px;}
.y16d{bottom:575.685000px;}
.y2dc{bottom:576.574500px;}
.y28c{bottom:576.627000px;}
.y50{bottom:578.242500px;}
.y1b0{bottom:580.516500px;}
.y2b8{bottom:580.539000px;}
.y195{bottom:581.641500px;}
.y108{bottom:585.408000px;}
.y201{bottom:589.480500px;}
.y320{bottom:590.197500px;}
.y2fe{bottom:591.082500px;}
.y74{bottom:593.187000px;}
.y42{bottom:594.682500px;}
.y147{bottom:596.001000px;}
.y2b7{bottom:596.023500px;}
.ye8{bottom:597.003000px;}
.y129{bottom:597.318000px;}
.y16c{bottom:597.354000px;}
.y2db{bottom:598.243500px;}
.y21{bottom:598.563000px;}
.y4f{bottom:599.911500px;}
.y7{bottom:600.669000px;}
.y1af{bottom:602.184000px;}
.y2b6{bottom:602.208000px;}
.y194{bottom:603.309000px;}
.yae{bottom:604.596000px;}
.y107{bottom:607.077000px;}
.y258{bottom:610.609500px;}
.y200{bottom:611.148000px;}
.y31f{bottom:611.866500px;}
.y2fd{bottom:612.751500px;}
.y73{bottom:614.856000px;}
.y146{bottom:617.670000px;}
.ye7{bottom:618.672000px;}
.y128{bottom:618.987000px;}
.y16b{bottom:619.023000px;}
.y2da{bottom:619.911000px;}
.y20{bottom:620.232000px;}
.y4e{bottom:621.580500px;}
.y1ae{bottom:623.853000px;}
.y2b5{bottom:623.875500px;}
.y272{bottom:624.447000px;}
.y193{bottom:624.978000px;}
.yad{bottom:626.265000px;}
.y106{bottom:628.746000px;}
.y257{bottom:632.278500px;}
.y1ff{bottom:632.817000px;}
.y31e{bottom:633.535500px;}
.y6{bottom:633.544500px;}
.y41{bottom:633.909000px;}
.y2fc{bottom:634.419000px;}
.y72{bottom:636.523500px;}
.y145{bottom:639.339000px;}
.ye6{bottom:640.341000px;}
.y127{bottom:640.656000px;}
.y16a{bottom:640.692000px;}
.y2d9{bottom:641.580000px;}
.y1f{bottom:641.901000px;}
.y4d{bottom:643.249500px;}
.y1ad{bottom:645.522000px;}
.y2b4{bottom:645.544500px;}
.y192{bottom:646.647000px;}
.yac{bottom:647.934000px;}
.y105{bottom:650.413500px;}
.y256{bottom:653.947500px;}
.y1fe{bottom:654.486000px;}
.y40{bottom:655.578000px;}
.y2fb{bottom:656.088000px;}
.y71{bottom:658.192500px;}
.y144{bottom:661.008000px;}
.y126{bottom:662.325000px;}
.y169{bottom:662.361000px;}
.y2d8{bottom:663.249000px;}
.y1e{bottom:664.167000px;}
.y4c{bottom:664.917000px;}
.y1ac{bottom:667.191000px;}
.y2b3{bottom:667.213500px;}
.y191{bottom:668.316000px;}
.yab{bottom:669.603000px;}
.y31d{bottom:670.147500px;}
.y104{bottom:672.082500px;}
.y255{bottom:675.616500px;}
.y3f{bottom:677.247000px;}
.y2fa{bottom:677.757000px;}
.y70{bottom:679.861500px;}
.y143{bottom:682.675500px;}
.y125{bottom:683.994000px;}
.y168{bottom:684.028500px;}
.y2d7{bottom:684.918000px;}
.y1d{bottom:686.433000px;}
.y4b{bottom:686.586000px;}
.y1ab{bottom:688.860000px;}
.y190{bottom:689.985000px;}
.ye5{bottom:690.438000px;}
.y1fd{bottom:691.180500px;}
.yaa{bottom:691.270500px;}
.y31c{bottom:691.816500px;}
.y103{bottom:693.751500px;}
.y254{bottom:697.284000px;}
.y3e{bottom:698.916000px;}
.y6f{bottom:701.530500px;}
.y142{bottom:704.344500px;}
.y124{bottom:705.661500px;}
.y167{bottom:705.697500px;}
.y2d6{bottom:706.587000px;}
.y4a{bottom:708.255000px;}
.y1c{bottom:708.700500px;}
.y1aa{bottom:710.529000px;}
.y224{bottom:711.007500px;}
.y18f{bottom:711.652500px;}
.ye4{bottom:712.107000px;}
.ya9{bottom:712.939500px;}
.y31b{bottom:713.485500px;}
.y102{bottom:715.420500px;}
.y253{bottom:718.953000px;}
.y3d{bottom:720.585000px;}
.y2b2{bottom:721.534500px;}
.y6e{bottom:723.199500px;}
.y5{bottom:723.208500px;}
.y141{bottom:726.013500px;}
.y123{bottom:727.330500px;}
.y1fc{bottom:727.875000px;}
.y2d5{bottom:728.256000px;}
.y49{bottom:729.924000px;}
.y1b{bottom:730.966500px;}
.y1a9{bottom:732.196500px;}
.y223{bottom:732.676500px;}
.y18e{bottom:733.321500px;}
.ye3{bottom:733.774500px;}
.ya8{bottom:734.608500px;}
.y23b{bottom:736.374000px;}
.y252{bottom:740.622000px;}
.y1e7{bottom:740.776500px;}
.y2b1{bottom:743.203500px;}
.y6d{bottom:744.868500px;}
.y140{bottom:747.682500px;}
.y101{bottom:748.671000px;}
.y122{bottom:748.999500px;}
.y1a8{bottom:749.004000px;}
.y1fb{bottom:749.544000px;}
.y31a{bottom:750.099000px;}
.y4{bottom:750.108000px;}
.y48{bottom:751.593000px;}
.y1a{bottom:753.232500px;}
.y1a7{bottom:753.865500px;}
.y222{bottom:754.345500px;}
.y18d{bottom:754.990500px;}
.y166{bottom:755.794500px;}
.ya7{bottom:756.277500px;}
.y23a{bottom:758.043000px;}
.y3c{bottom:759.811500px;}
.y28b{bottom:761.128500px;}
.y251{bottom:762.291000px;}
.y1e6{bottom:762.445500px;}
.y2f9{bottom:763.000500px;}
.ye2{bottom:764.428500px;}
.y6c{bottom:766.536000px;}
.y2d4{bottom:767.682000px;}
.y13f{bottom:769.351500px;}
.y121{bottom:770.668500px;}
.y1fa{bottom:771.213000px;}
.y319{bottom:771.766500px;}
.y47{bottom:773.262000px;}
.y29e{bottom:773.316000px;}
.y19{bottom:775.498500px;}
.y1a6{bottom:775.534500px;}
.y221{bottom:776.013000px;}
.y18c{bottom:776.659500px;}
.y165{bottom:777.463500px;}
.y239{bottom:779.712000px;}
.y3b{bottom:781.480500px;}
.y28a{bottom:782.797500px;}
.y250{bottom:783.960000px;}
.y1e5{bottom:784.114500px;}
.ye1{bottom:786.097500px;}
.y6b{bottom:788.205000px;}
.y13e{bottom:791.020500px;}
.y120{bottom:792.337500px;}
.y318{bottom:793.435500px;}
.y30{bottom:794.929500px;}
.y18{bottom:797.167500px;}
.y1a5{bottom:797.203500px;}
.y220{bottom:797.682000px;}
.y18b{bottom:798.328500px;}
.y164{bottom:799.132500px;}
.y2f8{bottom:799.612500px;}
.y238{bottom:801.379500px;}
.y3a{bottom:803.149500px;}
.y1f9{bottom:804.462000px;}
.y289{bottom:804.465000px;}
.y24f{bottom:805.629000px;}
.ye0{bottom:807.766500px;}
.y6a{bottom:809.874000px;}
.ya6{bottom:810.598500px;}
.y13d{bottom:812.688000px;}
.y1a4{bottom:814.011000px;}
.y1c6{bottom:814.225500px;}
.y317{bottom:815.104500px;}
.y2f{bottom:816.598500px;}
.y1a3{bottom:818.872500px;}
.y21f{bottom:819.351000px;}
.y100{bottom:819.367500px;}
.y17{bottom:819.435000px;}
.y18a{bottom:819.997500px;}
.y163{bottom:820.801500px;}
.y237{bottom:823.048500px;}
.y39{bottom:824.818500px;}
.y288{bottom:826.134000px;}
.y24e{bottom:827.296500px;}
.y2d3{bottom:827.583000px;}
.ydf{bottom:829.435500px;}
.y69{bottom:831.543000px;}
.ya5{bottom:832.267500px;}
.y13c{bottom:834.357000px;}
.y2f7{bottom:836.226000px;}
.y2e{bottom:838.267500px;}
.y1a2{bottom:840.540000px;}
.y21e{bottom:841.020000px;}
.yff{bottom:841.036500px;}
.y16{bottom:841.102500px;}
.y189{bottom:841.665000px;}
.y162{bottom:842.470500px;}
.y236{bottom:844.717500px;}
.y38{bottom:846.487500px;}
.y11f{bottom:846.658500px;}
.y287{bottom:847.803000px;}
.y24d{bottom:848.965500px;}
.y2d2{bottom:849.252000px;}
.yde{bottom:851.103000px;}
.y316{bottom:851.716500px;}
.y68{bottom:853.212000px;}
.y13b{bottom:856.026000px;}
.y2f6{bottom:857.893500px;}
.y2d{bottom:859.936500px;}
.y90{bottom:862.380000px;}
.y21d{bottom:862.689000px;}
.y15{bottom:862.771500px;}
.y188{bottom:863.334000px;}
.y161{bottom:864.138000px;}
.y235{bottom:866.386500px;}
.y37{bottom:868.156500px;}
.y11e{bottom:868.327500px;}
.y286{bottom:869.472000px;}
.y24c{bottom:870.634500px;}
.y2d1{bottom:870.921000px;}
.y19f{bottom:872.421000px;}
.y315{bottom:873.385500px;}
.y67{bottom:874.881000px;}
.y19e{bottom:877.282500px;}
.y13a{bottom:877.695000px;}
.y1a1{bottom:879.181500px;}
.y2c{bottom:881.605500px;}
.ydd{bottom:881.757000px;}
.y21c{bottom:884.358000px;}
.y14{bottom:884.440500px;}
.y187{bottom:885.003000px;}
.y160{bottom:885.807000px;}
.y234{bottom:888.055500px;}
.y36{bottom:889.824000px;}
.y285{bottom:891.141000px;}
.y1a0{bottom:891.483000px;}
.y2d0{bottom:892.588500px;}
.y2f5{bottom:894.507000px;}
.y314{bottom:895.054500px;}
.y66{bottom:896.548500px;}
.y19d{bottom:898.752000px;}
.y139{bottom:899.364000px;}
.y2b{bottom:903.274500px;}
.y19c{bottom:903.615000px;}
.y24b{bottom:903.885000px;}
.y21b{bottom:906.025500px;}
.y13{bottom:906.706500px;}
.y23{bottom:907.902000px;}
.y233{bottom:909.723000px;}
.y35{bottom:911.493000px;}
.y2f4{bottom:916.176000px;}
.y15f{bottom:916.461000px;}
.y313{bottom:916.723500px;}
.y65{bottom:918.217500px;}
.y138{bottom:921.033000px;}
.y2cf{bottom:922.602000px;}
.ydc{bottom:924.793500px;}
.y2a{bottom:924.942000px;}
.y21a{bottom:927.694500px;}
.y12{bottom:928.974000px;}
.y22{bottom:929.571000px;}
.y34{bottom:933.162000px;}
.y2f3{bottom:937.845000px;}
.y312{bottom:938.392500px;}
.y64{bottom:939.886500px;}
.y137{bottom:942.700500px;}
.y232{bottom:942.973500px;}
.y2ce{bottom:944.271000px;}
.ydb{bottom:946.462500px;}
.y29{bottom:946.611000px;}
.y15e{bottom:946.764000px;}
.y186{bottom:947.958000px;}
.y219{bottom:949.363500px;}
.y11{bottom:951.240000px;}
.y33{bottom:954.831000px;}
.y24a{bottom:955.878000px;}
.y63{bottom:961.555500px;}
.y136{bottom:964.369500px;}
.y2cd{bottom:965.938500px;}
.y28{bottom:968.280000px;}
.y185{bottom:969.627000px;}
.y218{bottom:971.032500px;}
.y10{bottom:972.909000px;}
.y271{bottom:973.261500px;}
.y2f2{bottom:974.457000px;}
.y311{bottom:975.004500px;}
.y32{bottom:976.500000px;}
.y249{bottom:977.545500px;}
.y62{bottom:983.224500px;}
.yda{bottom:986.038500px;}
.y2cc{bottom:987.607500px;}
.y15d{bottom:989.799000px;}
.y27{bottom:989.949000px;}
.y217{bottom:992.701500px;}
.yf{bottom:994.578000px;}
.y270{bottom:994.930500px;}
.y2f1{bottom:996.126000px;}
.y310{bottom:996.673500px;}
.y248{bottom:999.214500px;}
.y184{bottom:999.930000px;}
.y231{bottom:1001.788500px;}
.yd9{bottom:1007.707500px;}
.y2cb{bottom:1009.276500px;}
.y15c{bottom:1011.468000px;}
.y26{bottom:1011.618000px;}
.y31{bottom:1015.728000px;}
.y61{bottom:1016.475000px;}
.y26f{bottom:1016.599500px;}
.ye{bottom:1016.844000px;}
.y2f0{bottom:1017.795000px;}
.y230{bottom:1023.457500px;}
.y216{bottom:1025.952000px;}
.yd8{bottom:1029.376500px;}
.y183{bottom:1030.231500px;}
.y2ca{bottom:1030.945500px;}
.y25{bottom:1033.287000px;}
.y247{bottom:1034.583000px;}
.y26e{bottom:1038.268500px;}
.y2ef{bottom:1039.462500px;}
.y246{bottom:1046.883000px;}
.y60{bottom:1049.724000px;}
.y3{bottom:1051.044000px;}
.y2c9{bottom:1052.614500px;}
.y22f{bottom:1054.111500px;}
.y24{bottom:1054.954500px;}
.y26d{bottom:1060.534500px;}
.y2ee{bottom:1061.131500px;}
.y2{bottom:1072.713000px;}
.y2c8{bottom:1074.282000px;}
.y182{bottom:1075.477500px;}
.y1{bottom:1094.382000px;}
.y2c7{bottom:1096.549500px;}
.y181{bottom:1097.146500px;}
.yd{bottom:1142.382000px;}
.h22{height:2.250679px;}
.h1f{height:2.757082px;}
.h1d{height:3.376019px;}
.h21{height:3.601087px;}
.h1e{height:3.938689px;}
.h1b{height:4.822884px;}
.h20{height:5.144410px;}
.h1c{height:5.626698px;}
.h10{height:28.584587px;}
.h25{height:30.568931px;}
.h9{height:31.442544px;}
.h24{height:33.625824px;}
.h11{height:34.301504px;}
.h7{height:34.936160px;}
.h2e{height:35.136634px;}
.h14{height:35.865450px;}
.h26{height:36.682717px;}
.h30{height:36.720000px;}
.h28{height:40.385488px;}
.h8{height:41.923392px;}
.h27{height:42.796503px;}
.he{height:42.998393px;}
.hd{height:47.817199px;}
.hb{height:48.222189px;}
.h12{height:49.972950px;}
.h2a{height:50.498765px;}
.hc{height:51.598072px;}
.h2{height:53.798400px;}
.h5{height:55.376486px;}
.h2b{height:58.312905px;}
.h31{height:60.520905px;}
.h2c{height:61.899450px;}
.h3{height:64.557900px;}
.h18{height:69.873450px;}
.h17{height:73.244400px;}
.h4{height:77.469300px;}
.h32{height:78.536400px;}
.h13{height:79.965450px;}
.h19{height:89.319450px;}
.h29{height:99.026765px;}
.h16{height:99.411450px;}
.h15{height:110.203248px;}
.h6{height:203.073480px;}
.h1a{height:213.222240px;}
.ha{height:249.936840px;}
.hf{height:276.922800px;}
.h23{height:296.146800px;}
.h2d{height:324.382320px;}
.h2f{height:339.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:338.455800px;}
.w7{width:406.195560px;}
.w8{width:424.500000px;}
.w6{width:473.834880px;}
.w3{width:541.529820px;}
.w5{width:609.206400px;}
.w4{width:609.230160px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x54{left:7.483872px;}
.x56{left:8.537710px;}
.x23{left:14.030178px;}
.x57{left:15.522008px;}
.x17{left:17.147722px;}
.x58{left:19.170900px;}
.x72{left:21.078865px;}
.x1d{left:22.413560px;}
.x24{left:24.376322px;}
.x55{left:27.505182px;}
.x18{left:29.792807px;}
.x84{left:31.125000px;}
.x52{left:32.252191px;}
.x22{left:34.268139px;}
.x16{left:35.903814px;}
.x83{left:37.987500px;}
.x15{left:41.882613px;}
.x59{left:43.663113px;}
.x1b{left:44.977302px;}
.x53{left:48.523459px;}
.x1c{left:52.472393px;}
.x37{left:59.410229px;}
.x71{left:69.268649px;}
.x50{left:71.987890px;}
.x1e{left:77.733536px;}
.x7c{left:79.495198px;}
.x7d{left:82.229483px;}
.x30{left:86.389769px;}
.x14{left:91.865413px;}
.x5a{left:93.250039px;}
.x85{left:97.796250px;}
.x7f{left:100.698463px;}
.x7e{left:104.462590px;}
.xd{left:108.000000px;}
.x75{left:109.288500px;}
.x7{left:111.945000px;}
.x25{left:116.864999px;}
.x86{left:118.316250px;}
.x7b{left:121.101537px;}
.x81{left:125.082000px;}
.x1f{left:126.282604px;}
.x82{left:129.940500px;}
.x73{left:131.548306px;}
.x3a{left:132.877500px;}
.x11{left:134.338500px;}
.xe{left:135.690000px;}
.x21{left:141.847500px;}
.x8a{left:143.305500px;}
.x51{left:145.111272px;}
.x41{left:149.677500px;}
.x7a{left:150.939000px;}
.x8{left:158.049000px;}
.x10{left:159.477000px;}
.x43{left:162.408000px;}
.x42{left:167.896500px;}
.x12{left:174.724500px;}
.x44{left:178.359000px;}
.xa{left:180.432000px;}
.x40{left:182.392500px;}
.x8b{left:187.006500px;}
.x77{left:190.971000px;}
.x89{left:203.590500px;}
.x70{left:209.538000px;}
.x28{left:212.693441px;}
.x3{left:218.566500px;}
.xc{left:221.271000px;}
.x29{left:223.039585px;}
.x33{left:225.491505px;}
.x4{left:227.973000px;}
.x32{left:230.491500px;}
.x1{left:232.443000px;}
.x5b{left:234.146872px;}
.x31{left:235.383322px;}
.x38{left:236.763417px;}
.x19{left:239.187184px;}
.x26{left:243.213843px;}
.x3b{left:246.142500px;}
.x3c{left:250.174500px;}
.x2{left:251.863500px;}
.x9{left:253.540500px;}
.x3d{left:255.435000px;}
.x3e{left:256.587000px;}
.xb{left:259.918500px;}
.x78{left:261.109500px;}
.x1a{left:264.187500px;}
.x13{left:277.228500px;}
.x27{left:279.185250px;}
.x61{left:302.818310px;}
.x62{left:309.802607px;}
.x68{left:310.856619px;}
.x63{left:315.470935px;}
.x69{left:317.840917px;}
.x76{left:319.827000px;}
.x6a{left:321.489809px;}
.x4c{left:322.932000px;}
.x64{left:326.175029px;}
.x79{left:327.240000px;}
.x65{left:329.823922px;}
.xf{left:332.026500px;}
.x5e{left:334.571078px;}
.x6b{left:338.898728px;}
.x20{left:341.994571px;}
.x6c{left:345.982191px;}
.x66{left:347.233010px;}
.x5f{left:350.842347px;}
.x67{left:354.316304px;}
.x3f{left:356.433000px;}
.x60{left:358.457427px;}
.x74{left:359.599500px;}
.x5c{left:374.306566px;}
.x45{left:382.645500px;}
.x47{left:387.730500px;}
.x6d{left:394.722595px;}
.x46{left:396.706500px;}
.x5{left:399.048000px;}
.x48{left:401.791500px;}
.x6{left:409.500000px;}
.x2d{left:413.808625px;}
.x88{left:419.842500px;}
.x2e{left:424.154768px;}
.x36{left:426.606689px;}
.x2c{left:429.154763px;}
.x35{left:431.606684px;}
.x49{left:432.690000px;}
.x34{left:436.498506px;}
.x39{left:437.878601px;}
.x2a{left:444.329027px;}
.x5d{left:447.428256px;}
.x87{left:465.742500px;}
.x4a{left:471.345000px;}
.x2b{left:480.300433px;}
.x2f{left:511.571335px;}
.x80{left:527.683500px;}
.x6e{left:529.220138px;}
.x6f{left:537.484192px;}
.x4e{left:582.151500px;}
.x4f{left:633.225000px;}
.x4d{left:644.278500px;}
.x4b{left:762.477000px;}
@media print{
.v4{vertical-align:-31.709370pt;}
.v3{vertical-align:-25.976726pt;}
.ve{vertical-align:-22.314667pt;}
.v5{vertical-align:-18.832000pt;}
.v6{vertical-align:-11.840000pt;}
.v1{vertical-align:-9.920000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:7.722667pt;}
.v2{vertical-align:15.749621pt;}
.vb{vertical-align:17.285333pt;}
.v10{vertical-align:21.989333pt;}
.vd{vertical-align:23.141333pt;}
.vf{vertical-align:25.104000pt;}
.v8{vertical-align:29.930667pt;}
.v7{vertical-align:39.200000pt;}
.va{vertical-align:43.136000pt;}
.v9{vertical-align:95.408000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000420pt;}
.ls39{letter-spacing:0.000990pt;}
.ls4{letter-spacing:0.001022pt;}
.lse{letter-spacing:0.001309pt;}
.ls19{letter-spacing:0.001441pt;}
.ls13{letter-spacing:0.002178pt;}
.ls41{letter-spacing:0.002377pt;}
.ls2c{letter-spacing:0.003903pt;}
.ls2e{letter-spacing:0.005129pt;}
.ls8{letter-spacing:0.526877pt;}
.ls17{letter-spacing:2.653258pt;}
.ls18{letter-spacing:2.653348pt;}
.ls2d{letter-spacing:2.653383pt;}
.ls1b{letter-spacing:2.658731pt;}
.ls2a{letter-spacing:3.081392pt;}
.ls38{letter-spacing:4.596367pt;}
.ls36{letter-spacing:5.236368pt;}
.ls1a{letter-spacing:5.311527pt;}
.ls37{letter-spacing:5.818187pt;}
.ls23{letter-spacing:6.655614pt;}
.ls20{letter-spacing:6.660948pt;}
.ls1c{letter-spacing:10.624990pt;}
.ls1d{letter-spacing:10.630323pt;}
.ls3e{letter-spacing:14.163915pt;}
.ls29{letter-spacing:14.166642pt;}
.ls3f{letter-spacing:14.169842pt;}
.ls3a{letter-spacing:14.171976pt;}
.ls40{letter-spacing:15.727176pt;}
.ls4e{letter-spacing:17.706238pt;}
.ls21{letter-spacing:17.713309pt;}
.ls48{letter-spacing:17.839652pt;}
.lsb{letter-spacing:18.181129pt;}
.ls28{letter-spacing:18.581129pt;}
.ls9{letter-spacing:18.699657pt;}
.lsd{letter-spacing:18.870323pt;}
.ls31{letter-spacing:18.917333pt;}
.ls26{letter-spacing:19.024990pt;}
.ls27{letter-spacing:19.030323pt;}
.ls47{letter-spacing:19.841022pt;}
.ls45{letter-spacing:20.129022pt;}
.ls4f{letter-spacing:20.811976pt;}
.ls0{letter-spacing:20.812421pt;}
.ls46{letter-spacing:21.702323pt;}
.ls3d{letter-spacing:21.910642pt;}
.lsc{letter-spacing:22.577309pt;}
.ls25{letter-spacing:22.753309pt;}
.lsa{letter-spacing:22.755333pt;}
.ls44{letter-spacing:22.786591pt;}
.ls24{letter-spacing:23.179689pt;}
.ls43{letter-spacing:23.526356pt;}
.ls35{letter-spacing:24.664661pt;}
.ls34{letter-spacing:25.632420pt;}
.ls3c{letter-spacing:25.933258pt;}
.ls5{letter-spacing:26.006009pt;}
.ls42{letter-spacing:26.178591pt;}
.ls7{letter-spacing:26.360424pt;}
.ls3{letter-spacing:26.738591pt;}
.ls33{letter-spacing:26.832990pt;}
.ls1f{letter-spacing:27.441309pt;}
.ls3b{letter-spacing:27.702642pt;}
.ls32{letter-spacing:27.786667pt;}
.ls1e{letter-spacing:28.187976pt;}
.ls6{letter-spacing:28.296467pt;}
.ls30{letter-spacing:29.583572pt;}
.ls2{letter-spacing:31.880533pt;}
.ls2f{letter-spacing:32.237383pt;}
.ls22{letter-spacing:59.961600pt;}
.ls4d{letter-spacing:69.007176pt;}
.ls4b{letter-spacing:70.737067pt;}
.lsf{letter-spacing:92.085375pt;}
.ls10{letter-spacing:104.427935pt;}
.ls4c{letter-spacing:110.059733pt;}
.ls4a{letter-spacing:114.385022pt;}
.ls11{letter-spacing:116.216044pt;}
.ls49{letter-spacing:158.733258pt;}
.ls16{letter-spacing:245.180274pt;}
.ls14{letter-spacing:327.703925pt;}
.ls15{letter-spacing:333.979689pt;}
.ls12{letter-spacing:347.919652pt;}
.ws102{word-spacing:-49.606110pt;}
.wsf8{word-spacing:-45.163900pt;}
.ws105{word-spacing:-44.858225pt;}
.ws106{word-spacing:-44.824030pt;}
.ws24{word-spacing:-40.590295pt;}
.wsa9{word-spacing:-29.942197pt;}
.wsc4{word-spacing:-29.521250pt;}
.ws1b{word-spacing:-28.692333pt;}
.ws101{word-spacing:-26.424154pt;}
.wsd2{word-spacing:-23.702316pt;}
.wse3{word-spacing:-23.104983pt;}
.ws1{word-spacing:-19.925333pt;}
.wse7{word-spacing:-19.456983pt;}
.ws5{word-spacing:-17.343010pt;}
.ws1f{word-spacing:-17.279249pt;}
.wsdd{word-spacing:-17.243649pt;}
.wsaa{word-spacing:-17.151507pt;}
.ws151{word-spacing:-15.940267pt;}
.ws141{word-spacing:-11.093333pt;}
.ws13b{word-spacing:-10.614989pt;}
.wseb{word-spacing:-10.609517pt;}
.wsec{word-spacing:-10.592307pt;}
.wsea{word-spacing:-10.010206pt;}
.ws1e{word-spacing:-9.691682pt;}
.ws114{word-spacing:-4.654549pt;}
.wsed{word-spacing:-4.113517pt;}
.ws13c{word-spacing:-3.124292pt;}
.wsef{word-spacing:-2.996770pt;}
.ws72{word-spacing:-2.869248pt;}
.ws80{word-spacing:-2.741726pt;}
.wsb4{word-spacing:-2.614204pt;}
.ws32{word-spacing:-2.359159pt;}
.ws14c{word-spacing:-2.231637pt;}
.wsad{word-spacing:-2.104115pt;}
.wsf6{word-spacing:-1.976593pt;}
.ws4d{word-spacing:-1.912832pt;}
.ws9f{word-spacing:-1.849071pt;}
.wsf7{word-spacing:-1.785310pt;}
.ws48{word-spacing:-1.402743pt;}
.wsb3{word-spacing:-1.275221pt;}
.ws149{word-spacing:-1.211460pt;}
.wsa6{word-spacing:-1.083938pt;}
.ws116{word-spacing:-1.000629pt;}
.wsf0{word-spacing:-0.956416pt;}
.ws153{word-spacing:-0.892655pt;}
.ws11f{word-spacing:-0.828894pt;}
.wscb{word-spacing:-0.765133pt;}
.wsb9{word-spacing:-0.708210pt;}
.wsbb{word-spacing:-0.701372pt;}
.ws17{word-spacing:-0.573850pt;}
.ws49{word-spacing:-0.510089pt;}
.wsfe{word-spacing:-0.446327pt;}
.ws100{word-spacing:-0.255044pt;}
.wse5{word-spacing:-0.191283pt;}
.ws127{word-spacing:-0.135909pt;}
.ws36{word-spacing:-0.127522pt;}
.ws12{word-spacing:-0.063761pt;}
.wse2{word-spacing:-0.058182pt;}
.wsc5{word-spacing:-0.042507pt;}
.ws6{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.063761pt;}
.ws21{word-spacing:0.127522pt;}
.ws19{word-spacing:0.191283pt;}
.wse9{word-spacing:0.282177pt;}
.ws3a{word-spacing:0.318805pt;}
.ws103{word-spacing:0.346771pt;}
.wsa2{word-spacing:0.382566pt;}
.ws5b{word-spacing:0.446327pt;}
.ws6d{word-spacing:0.510089pt;}
.ws71{word-spacing:0.573850pt;}
.wsaf{word-spacing:0.637611pt;}
.ws37{word-spacing:0.701372pt;}
.ws78{word-spacing:0.765133pt;}
.ws29{word-spacing:0.828894pt;}
.ws2a{word-spacing:0.830198pt;}
.ws148{word-spacing:0.892655pt;}
.ws70{word-spacing:0.956416pt;}
.ws50{word-spacing:1.020177pt;}
.ws53{word-spacing:1.038198pt;}
.ws35{word-spacing:1.083938pt;}
.ws143{word-spacing:1.147699pt;}
.ws97{word-spacing:1.211460pt;}
.ws3d{word-spacing:1.275221pt;}
.ws45{word-spacing:1.338982pt;}
.ws56{word-spacing:1.402743pt;}
.wsd3{word-spacing:1.448864pt;}
.ws46{word-spacing:1.466505pt;}
.wsa8{word-spacing:1.500218pt;}
.wsab{word-spacing:1.530266pt;}
.wsa0{word-spacing:1.594027pt;}
.ws83{word-spacing:1.657788pt;}
.wsb6{word-spacing:1.785310pt;}
.ws2f{word-spacing:1.849071pt;}
.ws65{word-spacing:1.912832pt;}
.ws67{word-spacing:1.976593pt;}
.ws132{word-spacing:2.040354pt;}
.wsbc{word-spacing:2.104115pt;}
.ws4a{word-spacing:2.167876pt;}
.wsc6{word-spacing:2.231637pt;}
.ws9b{word-spacing:2.295398pt;}
.wscd{word-spacing:2.359159pt;}
.ws87{word-spacing:2.422921pt;}
.ws131{word-spacing:2.486682pt;}
.ws130{word-spacing:2.488864pt;}
.wsd9{word-spacing:2.550443pt;}
.ws30{word-spacing:2.614204pt;}
.ws15{word-spacing:2.677965pt;}
.ws75{word-spacing:2.741726pt;}
.ws73{word-spacing:2.805487pt;}
.ws6f{word-spacing:2.933009pt;}
.ws122{word-spacing:2.996770pt;}
.ws4b{word-spacing:3.060531pt;}
.wsf5{word-spacing:3.124292pt;}
.ws7e{word-spacing:3.188053pt;}
.ws33{word-spacing:3.251814pt;}
.ws95{word-spacing:3.315575pt;}
.ws54{word-spacing:3.379337pt;}
.ws2{word-spacing:3.443098pt;}
.ws147{word-spacing:3.465803pt;}
.ws6b{word-spacing:3.477581pt;}
.wsd{word-spacing:3.506859pt;}
.wsae{word-spacing:3.570620pt;}
.ws146{word-spacing:3.634381pt;}
.wsc8{word-spacing:3.698142pt;}
.ws1a{word-spacing:3.761903pt;}
.ws11{word-spacing:3.825664pt;}
.ws9c{word-spacing:3.889425pt;}
.wsfd{word-spacing:3.953186pt;}
.ws0{word-spacing:3.985067pt;}
.wsb0{word-spacing:4.016947pt;}
.ws86{word-spacing:4.080708pt;}
.ws3{word-spacing:4.131706pt;}
.wsa7{word-spacing:4.144469pt;}
.ws121{word-spacing:4.208230pt;}
.wsc7{word-spacing:4.271991pt;}
.ws44{word-spacing:4.335753pt;}
.ws84{word-spacing:4.399514pt;}
.ws62{word-spacing:4.463275pt;}
.ws3c{word-spacing:4.527036pt;}
.ws7b{word-spacing:4.590797pt;}
.wse6{word-spacing:4.654558pt;}
.ws13e{word-spacing:4.718319pt;}
.ws3f{word-spacing:4.782067pt;}
.ws124{word-spacing:4.782080pt;}
.wscf{word-spacing:4.845841pt;}
.ws88{word-spacing:4.909602pt;}
.wsb8{word-spacing:5.037124pt;}
.ws14d{word-spacing:5.100885pt;}
.wsb1{word-spacing:5.164646pt;}
.ws13{word-spacing:5.228407pt;}
.ws8{word-spacing:5.292169pt;}
.ws92{word-spacing:5.355930pt;}
.ws22{word-spacing:5.419691pt;}
.ws31{word-spacing:5.483452pt;}
.ws4f{word-spacing:5.547213pt;}
.ws40{word-spacing:5.610974pt;}
.ws7c{word-spacing:5.619959pt;}
.wse8{word-spacing:5.674735pt;}
.ws4{word-spacing:5.738467pt;}
.ws34{word-spacing:5.738496pt;}
.ws12d{word-spacing:5.749038pt;}
.ws77{word-spacing:5.802257pt;}
.wsc1{word-spacing:5.866018pt;}
.ws42{word-spacing:5.929779pt;}
.ws90{word-spacing:5.944864pt;}
.ws10{word-spacing:5.993540pt;}
.ws115{word-spacing:6.026240pt;}
.ws38{word-spacing:6.057301pt;}
.ws6e{word-spacing:6.121062pt;}
.ws27{word-spacing:6.174198pt;}
.ws12f{word-spacing:6.179531pt;}
.ws28{word-spacing:6.184823pt;}
.ws14{word-spacing:6.248585pt;}
.wsd0{word-spacing:6.312346pt;}
.wsda{word-spacing:6.376107pt;}
.ws5f{word-spacing:6.439868pt;}
.ws13d{word-spacing:6.503629pt;}
.ws2d{word-spacing:6.567390pt;}
.ws2b{word-spacing:6.631151pt;}
.ws119{word-spacing:6.680864pt;}
.ws16{word-spacing:6.694912pt;}
.ws23{word-spacing:6.758673pt;}
.ws3e{word-spacing:6.822434pt;}
.wsd6{word-spacing:6.886195pt;}
.ws12e{word-spacing:6.910648pt;}
.wsdb{word-spacing:6.949956pt;}
.ws2e{word-spacing:7.013717pt;}
.wsd4{word-spacing:7.077478pt;}
.ws58{word-spacing:7.141239pt;}
.ws60{word-spacing:7.205001pt;}
.ws98{word-spacing:7.268762pt;}
.ws109{word-spacing:7.309385pt;}
.wsf4{word-spacing:7.332523pt;}
.ws145{word-spacing:7.396284pt;}
.ws47{word-spacing:7.460045pt;}
.ws85{word-spacing:7.523806pt;}
.ws12a{word-spacing:7.587567pt;}
.ws5a{word-spacing:7.651328pt;}
.ws59{word-spacing:7.715089pt;}
.wsa5{word-spacing:7.778850pt;}
.ws81{word-spacing:7.906372pt;}
.wsdc{word-spacing:7.915273pt;}
.ws76{word-spacing:7.970133pt;}
.ws10d{word-spacing:8.033894pt;}
.ws10b{word-spacing:8.059273pt;}
.ws120{word-spacing:8.097655pt;}
.ws64{word-spacing:8.161417pt;}
.wsf3{word-spacing:8.225178pt;}
.ws108{word-spacing:8.270445pt;}
.wse4{word-spacing:8.288939pt;}
.ws61{word-spacing:8.352700pt;}
.ws12c{word-spacing:8.403982pt;}
.wsbe{word-spacing:8.416461pt;}
.ws10a{word-spacing:8.480222pt;}
.ws9a{word-spacing:8.607744pt;}
.ws25{word-spacing:8.671505pt;}
.wsbf{word-spacing:8.735266pt;}
.ws66{word-spacing:8.799027pt;}
.wsf1{word-spacing:8.926549pt;}
.ws41{word-spacing:8.990310pt;}
.ws18{word-spacing:9.054071pt;}
.ws79{word-spacing:9.117833pt;}
.ws8c{word-spacing:9.181594pt;}
.ws8e{word-spacing:9.187531pt;}
.ws12b{word-spacing:9.309116pt;}
.wsff{word-spacing:9.372877pt;}
.ws11d{word-spacing:9.564160pt;}
.wsf9{word-spacing:9.627921pt;}
.ws39{word-spacing:9.691682pt;}
.ws99{word-spacing:9.755443pt;}
.wsc2{word-spacing:9.819204pt;}
.ws43{word-spacing:9.882965pt;}
.ws94{word-spacing:9.946726pt;}
.ws26{word-spacing:9.951793pt;}
.wsce{word-spacing:10.074249pt;}
.ws14e{word-spacing:10.201771pt;}
.ws8b{word-spacing:10.265532pt;}
.ws129{word-spacing:10.329293pt;}
.wsa{word-spacing:10.396276pt;}
.ws107{word-spacing:10.441987pt;}
.wsc0{word-spacing:10.456815pt;}
.ws5e{word-spacing:10.520576pt;}
.ws11e{word-spacing:10.584337pt;}
.ws2c{word-spacing:10.711859pt;}
.ws57{word-spacing:10.775620pt;}
.wsc3{word-spacing:10.839381pt;}
.ws144{word-spacing:11.221948pt;}
.ws7a{word-spacing:11.285709pt;}
.wsf2{word-spacing:11.413231pt;}
.ws9e{word-spacing:11.732036pt;}
.ws3b{word-spacing:12.178364pt;}
.ws150{word-spacing:12.369647pt;}
.ws11c{word-spacing:12.433408pt;}
.ws9d{word-spacing:12.497169pt;}
.ws117{word-spacing:12.744646pt;}
.ws14f{word-spacing:12.879735pt;}
.ws63{word-spacing:12.943497pt;}
.wsd1{word-spacing:13.198541pt;}
.wsde{word-spacing:13.517346pt;}
.wscc{word-spacing:13.581107pt;}
.wsdf{word-spacing:13.644868pt;}
.ws118{word-spacing:13.684480pt;}
.ws152{word-spacing:13.708629pt;}
.wsd5{word-spacing:13.772390pt;}
.wsc9{word-spacing:13.836151pt;}
.wsa4{word-spacing:13.899913pt;}
.ws126{word-spacing:14.129700pt;}
.ws1d{word-spacing:14.537523pt;}
.wsb5{word-spacing:14.687461pt;}
.ws11a{word-spacing:14.700160pt;}
.ws10c{word-spacing:15.060907pt;}
.wsb2{word-spacing:16.067789pt;}
.wsba{word-spacing:16.575461pt;}
.ws7{word-spacing:16.641638pt;}
.ws155{word-spacing:17.024205pt;}
.ws128{word-spacing:17.151727pt;}
.ws156{word-spacing:17.980621pt;}
.ws52{word-spacing:18.342267pt;}
.wsa1{word-spacing:18.861012pt;}
.wsb7{word-spacing:19.044794pt;}
.wse0{word-spacing:19.316380pt;}
.wsee{word-spacing:19.319603pt;}
.wse1{word-spacing:19.332784pt;}
.wsbd{word-spacing:19.407461pt;}
.ws11b{word-spacing:19.476907pt;}
.ws123{word-spacing:19.539123pt;}
.ws7f{word-spacing:20.471793pt;}
.ws96{word-spacing:20.618013pt;}
.wsa3{word-spacing:20.701904pt;}
.ws125{word-spacing:20.722347pt;}
.ws8a{word-spacing:20.733790pt;}
.ws14a{word-spacing:21.997790pt;}
.ws89{word-spacing:22.177681pt;}
.ws14b{word-spacing:22.208903pt;}
.ws93{word-spacing:22.644680pt;}
.ws7d{word-spacing:22.899238pt;}
.ws91{word-spacing:23.228348pt;}
.ws82{word-spacing:23.551346pt;}
.wsac{word-spacing:23.552125pt;}
.ws74{word-spacing:23.555238pt;}
.ws142{word-spacing:24.042675pt;}
.ws55{word-spacing:24.533891pt;}
.ws8f{word-spacing:26.456457pt;}
.ws8d{word-spacing:26.458013pt;}
.ws51{word-spacing:32.709427pt;}
.ws113{word-spacing:36.654576pt;}
.ws110{word-spacing:36.829122pt;}
.ws10e{word-spacing:36.945485pt;}
.ws112{word-spacing:37.236395pt;}
.ws1c{word-spacing:37.842193pt;}
.wsf{word-spacing:43.835733pt;}
.ws154{word-spacing:44.975276pt;}
.ws136{word-spacing:46.405644pt;}
.ws69{word-spacing:46.418057pt;}
.ws111{word-spacing:47.360039pt;}
.ws10f{word-spacing:47.650949pt;}
.ws5d{word-spacing:52.187754pt;}
.ws137{word-spacing:53.368013pt;}
.ws135{word-spacing:60.381730pt;}
.ws6c{word-spacing:62.039518pt;}
.ws13f{word-spacing:62.166867pt;}
.wsd8{word-spacing:65.610138pt;}
.ws5c{word-spacing:69.582608pt;}
.ws20{word-spacing:74.600067pt;}
.ws6a{word-spacing:77.597218pt;}
.ws68{word-spacing:77.660979pt;}
.ws138{word-spacing:99.658547pt;}
.ws140{word-spacing:105.056000pt;}
.ws139{word-spacing:106.799787pt;}
.ws134{word-spacing:113.839008pt;}
.wsd7{word-spacing:117.511646pt;}
.wsca{word-spacing:157.362313pt;}
.ws13a{word-spacing:175.009524pt;}
.ws133{word-spacing:178.182810pt;}
.wsfc{word-spacing:182.670135pt;}
.wsfa{word-spacing:226.714060pt;}
.wsfb{word-spacing:226.718573pt;}
.ws4c{word-spacing:232.642440pt;}
.wsb{word-spacing:368.281216pt;}
.wsc{word-spacing:374.293885pt;}
.ws9{word-spacing:422.943578pt;}
.wse{word-spacing:457.431939pt;}
.ws104{word-spacing:774.214023pt;}
._35{margin-left:-37.108941pt;}
._32{margin-left:-33.665843pt;}
._2b{margin-left:-31.880533pt;}
._2d{margin-left:-30.222746pt;}
._13{margin-left:-29.266330pt;}
._95{margin-left:-24.472656pt;}
._2c{margin-left:-11.030665pt;}
._7{margin-left:-9.500340pt;}
._77{margin-left:-7.192228pt;}
._f{margin-left:-6.057301pt;}
._c{margin-left:-5.164646pt;}
._1{margin-left:-4.016947pt;}
._1f{margin-left:-3.124292pt;}
._0{margin-left:-1.976593pt;}
._d{margin-left:-0.956416pt;}
._2{width:1.721549pt;}
._3{width:2.846279pt;}
._3e{width:4.208230pt;}
._73{width:5.442655pt;}
._63{width:6.376883pt;}
._36{width:7.842611pt;}
._3d{width:16.514116pt;}
._1d{width:18.171904pt;}
._47{width:19.691148pt;}
._25{width:20.610282pt;}
._26{width:21.616934pt;}
._46{width:22.762701pt;}
._2a{width:24.501639pt;}
._3c{width:25.568188pt;}
._3a{width:27.098453pt;}
._5{width:28.054869pt;}
._1c{width:29.266330pt;}
._43{width:30.605312pt;}
._60{width:32.199339pt;}
._4{width:33.283184pt;}
._31{width:35.053129pt;}
._1e{width:36.535091pt;}
._20{width:37.810313pt;}
._3b{width:38.958012pt;}
._44{width:39.850667pt;}
._62{width:41.444693pt;}
._50{width:42.401109pt;}
._4c{width:43.491182pt;}
._33{width:44.744812pt;}
._5f{width:45.716685pt;}
._42{width:46.991906pt;}
._5e{width:48.075844pt;}
._61{width:49.351066pt;}
._2f{width:51.041700pt;}
._49{width:52.187754pt;}
._37{width:54.131214pt;}
._4f{width:56.428544pt;}
._22{width:57.767526pt;}
._6a{width:58.660274pt;}
._48{width:60.886036pt;}
._27{width:61.784474pt;}
._8{width:64.000654pt;}
._2e{width:64.972527pt;}
._85{width:66.056465pt;}
._10{width:67.641411pt;}
._4b{width:69.582608pt;}
._29{width:71.412395pt;}
._e{width:74.718889pt;}
._7c{width:77.724740pt;}
._55{width:79.079180pt;}
._58{width:80.248454pt;}
._66{width:82.810168pt;}
._69{width:83.830345pt;}
._41{width:86.077200pt;}
._7e{width:88.245316pt;}
._84{width:89.329254pt;}
._7f{width:91.497131pt;}
._91{width:93.665007pt;}
._59{width:94.940228pt;}
._30{width:96.024166pt;}
._94{width:99.403503pt;}
._3f{width:103.292400pt;}
._11{width:106.057453pt;}
._56{width:110.561690pt;}
._88{width:112.028194pt;}
._90{width:113.813504pt;}
._78{width:116.300186pt;}
._52{width:117.320363pt;}
._6e{width:118.531823pt;}
._82{width:119.424478pt;}
._89{width:122.849927pt;}
._6f{width:124.652885pt;}
._57{width:126.183151pt;}
._28{width:127.330850pt;}
._6d{width:128.542310pt;}
._70{width:134.153284pt;}
._9{width:137.874225pt;}
._79{width:139.955541pt;}
._51{width:144.036250pt;}
._81{width:145.438993pt;}
._83{width:147.338107pt;}
._71{width:149.249200pt;}
._6c{width:150.476117pt;}
._4e{width:152.296771pt;}
._80{width:155.130675pt;}
._16{width:156.023330pt;}
._8e{width:159.530189pt;}
._67{width:160.981236pt;}
._19{width:164.312269pt;}
._54{width:166.735189pt;}
._76{width:168.010411pt;}
._5b{width:179.010161pt;}
._5c{width:183.090869pt;}
._1a{width:186.580338pt;}
._8d{width:189.242846pt;}
._65{width:190.390545pt;}
._b{width:193.958460pt;}
._7d{width:197.303553pt;}
._64{width:205.948245pt;}
._87{width:222.334839pt;}
._14{width:225.459132pt;}
._5a{width:229.157274pt;}
._4d{width:236.802327pt;}
._45{width:243.912809pt;}
._53{width:248.285594pt;}
._8b{width:267.413914pt;}
._68{width:277.041835pt;}
._7b{width:291.829784pt;}
._12{width:299.298118pt;}
._7a{width:306.244403pt;}
._86{width:309.368695pt;}
._8c{width:318.932855pt;}
._4a{width:330.169114pt;}
._1b{width:345.217872pt;}
._8a{width:381.609984pt;}
._a{width:396.138426pt;}
._75{width:399.973171pt;}
._74{width:442.055475pt;}
._72{width:498.647455pt;}
._8f{width:536.294332pt;}
._92{width:549.747917pt;}
._5d{width:616.429298pt;}
._6{width:646.688882pt;}
._40{width:647.645298pt;}
._17{width:685.383163pt;}
._93{width:691.425007pt;}
._6b{width:732.805939pt;}
._15{width:820.222362pt;}
._18{width:840.131272pt;}
._23{width:1087.126187pt;}
._34{width:1246.337570pt;}
._38{width:1569.287373pt;}
._24{width:1652.878131pt;}
._21{width:1882.800538pt;}
._39{width:1898.358238pt;}
.fs15{font-size:2.105899pt;}
.fs12{font-size:2.579726pt;}
.fs10{font-size:3.158848pt;}
.fs14{font-size:3.369438pt;}
.fs11{font-size:3.685323pt;}
.fse{font-size:4.512640pt;}
.fs13{font-size:4.813483pt;}
.fsf{font-size:5.264747pt;}
.fsa{font-size:27.350400pt;}
.fs8{font-size:28.799307pt;}
.fs17{font-size:29.249067pt;}
.fs6{font-size:30.084960pt;}
.fsc{font-size:31.880533pt;}
.fs16{font-size:32.173973pt;}
.fsb{font-size:32.820480pt;}
.fs4{font-size:33.427733pt;}
.fs18{font-size:35.098880pt;}
.fs5{font-size:40.113280pt;}
.fs1a{font-size:40.826880pt;}
.fs19{font-size:40.948693pt;}
.fs7{font-size:41.141867pt;}
.fs3{font-size:42.507200pt;}
.fs1b{font-size:42.666667pt;}
.fs9{font-size:49.370240pt;}
.fsd{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y283{bottom:6.536126pt;}
.y1c8{bottom:6.699353pt;}
.y2ae{bottom:6.830664pt;}
.yc4{bottom:8.808966pt;}
.y1e9{bottom:9.681898pt;}
.y77{bottom:11.103231pt;}
.y92{bottom:15.291403pt;}
.y1ea{bottom:18.136706pt;}
.ycc{bottom:19.204254pt;}
.y78{bottom:20.126107pt;}
.y1c7{bottom:20.548682pt;}
.yca{bottom:25.303607pt;}
.yc3{bottom:25.698436pt;}
.yc5{bottom:26.586726pt;}
.y27c{bottom:27.383351pt;}
.y2a7{bottom:28.617331pt;}
.y91{bottom:31.932967pt;}
.y1c9{bottom:32.622627pt;}
.ya4{bottom:33.410693pt;}
.y1ca{bottom:36.941374pt;}
.yc2{bottom:37.749706pt;}
.y7e{bottom:41.132565pt;}
.y273{bottom:41.283628pt;}
.yc6{bottom:41.798518pt;}
.y29f{bottom:43.143997pt;}
.y1eb{bottom:44.133328pt;}
.y79{bottom:47.342657pt;}
.y7f{bottom:48.040092pt;}
.yc1{bottom:49.800976pt;}
.ya3{bottom:51.538828pt;}
.y97{bottom:54.929728pt;}
.y98{bottom:55.123190pt;}
.y1dd{bottom:55.697259pt;}
.yc7{bottom:57.010310pt;}
.y93{bottom:58.127391pt;}
.y1de{bottom:60.016006pt;}
.yc0{bottom:61.852246pt;}
.y274{bottom:66.392159pt;}
.y1cb{bottom:68.813623pt;}
.ya2{bottom:69.666963pt;}
.y1ec{bottom:70.129949pt;}
.y2a0{bottom:71.057331pt;}
.yc8{bottom:72.222102pt;}
.y1cc{bottom:73.132370pt;}
.ybf{bottom:73.903516pt;}
.y7a{bottom:74.559207pt;}
.y1df{bottom:85.627344pt;}
.ycb{bottom:85.835812pt;}
.ybe{bottom:85.954786pt;}
.yc9{bottom:87.433894pt;}
.ya1{bottom:87.795098pt;}
.y1e0{bottom:89.946091pt;}
.y275{bottom:91.507070pt;}
.y86{bottom:92.714952pt;}
.y1ed{bottom:96.126571pt;}
.ybd{bottom:98.006056pt;}
.y215{bottom:98.056000pt;}
.y2a1{bottom:98.977331pt;}
.y2ad{bottom:100.223333pt;}
.y19b{bottom:100.702667pt;}
.y245{bottom:101.253333pt;}
.y7b{bottom:101.775757pt;}
.y282{bottom:102.855031pt;}
.y8f{bottom:103.680000pt;}
.y85{bottom:103.761774pt;}
.y1cd{bottom:104.731605pt;}
.ycf{bottom:105.270408pt;}
.ya0{bottom:105.923233pt;}
.yd7{bottom:105.961333pt;}
.y94{bottom:105.984132pt;}
.yfe{bottom:106.925333pt;}
.y2ed{bottom:107.972000pt;}
.y180{bottom:108.510667pt;}
.y1ce{bottom:109.050352pt;}
.y1f3{bottom:109.866807pt;}
.ybc{bottom:110.057326pt;}
.y29d{bottom:110.166667pt;}
.y1c5{bottom:111.530667pt;}
.y15b{bottom:111.957333pt;}
.yd0{bottom:113.197750pt;}
.y135{bottom:114.102667pt;}
.y84{bottom:114.808595pt;}
.y1e1{bottom:115.284038pt;}
.y11d{bottom:115.880000pt;}
.y276{bottom:116.615601pt;}
.y214{bottom:117.316000pt;}
.y1e2{bottom:119.602785pt;}
.y26c{bottom:120.293333pt;}
.y244{bottom:120.514667pt;}
.y1ee{bottom:122.123192pt;}
.y8e{bottom:122.940000pt;}
.y9f{bottom:124.051368pt;}
.y1dc{bottom:125.076843pt;}
.yd6{bottom:125.222667pt;}
.y83{bottom:125.855416pt;}
.yfd{bottom:126.186667pt;}
.y2a2{bottom:126.890664pt;}
.y17f{bottom:127.770667pt;}
.yb1{bottom:128.193462pt;}
.y7c{bottom:128.992306pt;}
.y29c{bottom:129.426667pt;}
.y1c4{bottom:130.792000pt;}
.y15a{bottom:131.217333pt;}
.y1db{bottom:132.950272pt;}
.yc{bottom:134.585333pt;}
.y11c{bottom:135.140000pt;}
.y213{bottom:136.577333pt;}
.y82{bottom:136.902237pt;}
.yb0{bottom:138.588750pt;}
.yb6{bottom:138.779989pt;}
.y26b{bottom:139.554667pt;}
.y243{bottom:139.776000pt;}
.y1cf{bottom:140.376197pt;}
.y2ec{bottom:140.516000pt;}
.y1da{bottom:140.824076pt;}
.y277{bottom:141.724132pt;}
.y9e{bottom:142.179503pt;}
.y8d{bottom:142.201333pt;}
.y19a{bottom:144.338667pt;}
.yb7{bottom:144.431693pt;}
.yd5{bottom:144.484000pt;}
.y1d0{bottom:144.694944pt;}
.yfc{bottom:145.446667pt;}
.y1e3{bottom:145.487514pt;}
.yb2{bottom:145.971222pt;}
.y17e{bottom:147.032000pt;}
.y81{bottom:147.949059pt;}
.y1ef{bottom:148.119814pt;}
.y30f{bottom:148.198667pt;}
.y1d9{bottom:148.550844pt;}
.y29b{bottom:148.688000pt;}
.y1e4{bottom:149.806261pt;}
.y1c3{bottom:150.053333pt;}
.y159{bottom:150.478667pt;}
.y95{bottom:153.416598pt;}
.yb{bottom:153.846667pt;}
.y11b{bottom:154.401333pt;}
.y2a3{bottom:154.803997pt;}
.y22e{bottom:155.581333pt;}
.y212{bottom:155.838667pt;}
.y7d{bottom:156.208856pt;}
.y1d8{bottom:156.277236pt;}
.y26a{bottom:158.814667pt;}
.y80{bottom:158.995880pt;}
.y242{bottom:159.037333pt;}
.y2eb{bottom:159.777333pt;}
.y1d4{bottom:160.151277pt;}
.y9d{bottom:160.307638pt;}
.y8c{bottom:161.462667pt;}
.y1d3{bottom:161.662835pt;}
.yd4{bottom:163.745333pt;}
.y1d7{bottom:164.004004pt;}
.yfb{bottom:164.708000pt;}
.y17d{bottom:166.293333pt;}
.yb3{bottom:166.410357pt;}
.y278{bottom:166.832663pt;}
.yb9{bottom:167.042846pt;}
.y30e{bottom:167.460000pt;}
.y29a{bottom:167.949333pt;}
.y1c2{bottom:169.314667pt;}
.y158{bottom:169.740000pt;}
.y2ac{bottom:173.177331pt;}
.y1d6{bottom:173.660677pt;}
.y11a{bottom:173.662667pt;}
.y281{bottom:174.053918pt;}
.y1f0{bottom:174.116435pt;}
.y1d2{bottom:174.159125pt;}
.y22d{bottom:174.842667pt;}
.y211{bottom:175.100000pt;}
.y5f{bottom:175.308000pt;}
.y1d5{bottom:175.634957pt;}
.y1d1{bottom:175.670682pt;}
.y199{bottom:176.525333pt;}
.y9a{bottom:177.732694pt;}
.y269{bottom:178.076000pt;}
.y9c{bottom:178.435773pt;}
.y1f8{bottom:179.269333pt;}
.y8b{bottom:180.724000pt;}
.y2a4{bottom:182.717331pt;}
.yd3{bottom:183.006667pt;}
.yfa{bottom:183.969333pt;}
.y17c{bottom:185.554667pt;}
.y30d{bottom:186.721333pt;}
.yb4{bottom:186.849492pt;}
.y2ab{bottom:187.703997pt;}
.y299{bottom:187.741333pt;}
.y280{bottom:187.954195pt;}
.yba{bottom:188.114471pt;}
.y1c1{bottom:188.576000pt;}
.y157{bottom:189.001333pt;}
.y99{bottom:189.242774pt;}
.y279{bottom:191.947574pt;}
.y2ea{bottom:192.322667pt;}
.y119{bottom:192.924000pt;}
.y241{bottom:194.082667pt;}
.y22c{bottom:194.104000pt;}
.y210{bottom:194.361333pt;}
.y5e{bottom:194.569333pt;}
.y9b{bottom:196.563908pt;}
.y268{bottom:197.337333pt;}
.y1f7{bottom:198.530667pt;}
.y8a{bottom:199.985333pt;}
.y1f1{bottom:200.113056pt;}
.y96{bottom:201.273340pt;}
.y27f{bottom:201.854471pt;}
.y2aa{bottom:202.230664pt;}
.yd2{bottom:202.268000pt;}
.yf9{bottom:203.230667pt;}
.yb8{bottom:205.220308pt;}
.y30c{bottom:205.982667pt;}
.yb5{bottom:207.288626pt;}
.y1c0{bottom:207.836000pt;}
.y156{bottom:208.262667pt;}
.y2c6{bottom:209.129333pt;}
.ybb{bottom:209.186095pt;}
.y2a5{bottom:210.637331pt;}
.y2e9{bottom:211.584000pt;}
.y118{bottom:212.185333pt;}
.y22b{bottom:213.364000pt;}
.y5d{bottom:213.830667pt;}
.y17b{bottom:215.110667pt;}
.y27e{bottom:215.754748pt;}
.y267{bottom:216.598667pt;}
.y2a9{bottom:216.757331pt;}
.y27a{bottom:217.056105pt;}
.y1f6{bottom:217.905547pt;}
.y89{bottom:219.245333pt;}
.y298{bottom:220.286667pt;}
.y20f{bottom:220.853333pt;}
.yf8{bottom:222.492000pt;}
.ycd{bottom:224.654904pt;}
.y30b{bottom:225.242667pt;}
.y1e8{bottom:225.296000pt;}
.y1f2{bottom:226.109678pt;}
.y1bf{bottom:227.097333pt;}
.y155{bottom:227.524000pt;}
.y2c5{bottom:228.390667pt;}
.y27d{bottom:229.655025pt;}
.y1f5{bottom:229.708002pt;}
.y2a8{bottom:231.283997pt;}
.y117{bottom:231.446667pt;}
.yce{bottom:232.582246pt;}
.y22a{bottom:232.625333pt;}
.y5c{bottom:233.092000pt;}
.y266{bottom:235.860000pt;}
.y88{bottom:238.506667pt;}
.y2a6{bottom:238.550664pt;}
.y20e{bottom:238.920000pt;}
.yf7{bottom:241.753333pt;}
.y27b{bottom:242.164636pt;}
.yd1{bottom:242.804000pt;}
.y2e8{bottom:244.128000pt;}
.y30a{bottom:244.504000pt;}
.y1be{bottom:246.358667pt;}
.y154{bottom:246.784000pt;}
.y240{bottom:247.328000pt;}
.y1f4{bottom:247.447104pt;}
.y2c4{bottom:247.652000pt;}
.y116{bottom:250.706667pt;}
.y229{bottom:251.886667pt;}
.y5b{bottom:252.352000pt;}
.y265{bottom:255.121333pt;}
.y20d{bottom:256.985333pt;}
.y2b0{bottom:260.337331pt;}
.yf6{bottom:261.013333pt;}
.y17a{bottom:261.326667pt;}
.y284{bottom:263.011862pt;}
.y2e7{bottom:263.389333pt;}
.y297{bottom:263.436000pt;}
.y309{bottom:263.765333pt;}
.y1bd{bottom:265.620000pt;}
.y153{bottom:266.045333pt;}
.y23f{bottom:266.589333pt;}
.y2c3{bottom:266.913333pt;}
.yaf{bottom:269.570667pt;}
.y115{bottom:269.968000pt;}
.y228{bottom:271.148000pt;}
.y264{bottom:274.381333pt;}
.y2af{bottom:274.863997pt;}
.y20c{bottom:275.050667pt;}
.y87{bottom:279.044000pt;}
.yf5{bottom:280.274667pt;}
.y179{bottom:280.586667pt;}
.y2e6{bottom:282.650667pt;}
.y296{bottom:282.697333pt;}
.y308{bottom:283.026667pt;}
.y1bc{bottom:284.881333pt;}
.y152{bottom:285.306667pt;}
.y23e{bottom:285.850667pt;}
.y2c2{bottom:286.174667pt;}
.y134{bottom:286.477333pt;}
.y5a{bottom:287.398667pt;}
.y114{bottom:289.229333pt;}
.y227{bottom:290.409333pt;}
.y20b{bottom:293.116000pt;}
.y263{bottom:293.642667pt;}
.y329{bottom:298.136000pt;}
.yf4{bottom:299.536000pt;}
.y178{bottom:299.848000pt;}
.y2e5{bottom:301.910667pt;}
.y295{bottom:301.957333pt;}
.y307{bottom:302.288000pt;}
.y1bb{bottom:304.141333pt;}
.y23d{bottom:305.110667pt;}
.y2c1{bottom:305.434667pt;}
.y133{bottom:305.738667pt;}
.y76{bottom:305.810667pt;}
.y113{bottom:308.490667pt;}
.y226{bottom:309.669333pt;}
.y262{bottom:312.904000pt;}
.y151{bottom:314.862667pt;}
.y328{bottom:317.397333pt;}
.y20a{bottom:318.413333pt;}
.yf3{bottom:318.797333pt;}
.y177{bottom:319.109333pt;}
.y2e4{bottom:321.172000pt;}
.y294{bottom:321.218667pt;}
.y306{bottom:321.548000pt;}
.y1ba{bottom:323.402667pt;}
.y2c0{bottom:324.696000pt;}
.y132{bottom:325.000000pt;}
.y112{bottom:327.752000pt;}
.y261{bottom:332.165333pt;}
.y327{bottom:336.658667pt;}
.y209{bottom:337.674667pt;}
.yf2{bottom:338.058667pt;}
.y176{bottom:338.370667pt;}
.y2e3{bottom:340.433333pt;}
.y293{bottom:340.480000pt;}
.y59{bottom:340.644000pt;}
.y305{bottom:340.809333pt;}
.y1b9{bottom:342.664000pt;}
.y2bf{bottom:343.957333pt;}
.y131{bottom:344.261333pt;}
.y23c{bottom:345.648000pt;}
.y111{bottom:347.013333pt;}
.y225{bottom:349.321333pt;}
.y260{bottom:351.426667pt;}
.y326{bottom:355.920000pt;}
.y150{bottom:356.429333pt;}
.y208{bottom:356.936000pt;}
.yf1{bottom:357.318667pt;}
.y175{bottom:357.632000pt;}
.y2e2{bottom:359.694667pt;}
.y292{bottom:359.741333pt;}
.y58{bottom:359.905333pt;}
.y304{bottom:360.070667pt;}
.y1b8{bottom:361.925333pt;}
.y2be{bottom:363.218667pt;}
.y130{bottom:363.522667pt;}
.y110{bottom:366.273333pt;}
.y25f{bottom:370.686667pt;}
.y325{bottom:375.181333pt;}
.y14f{bottom:375.689333pt;}
.y207{bottom:376.197333pt;}
.yf0{bottom:376.580000pt;}
.y174{bottom:376.892000pt;}
.y2e1{bottom:378.956000pt;}
.y57{bottom:379.165333pt;}
.y1b7{bottom:381.186667pt;}
.y2bd{bottom:382.480000pt;}
.y12f{bottom:382.782667pt;}
.y10f{bottom:385.534667pt;}
.y291{bottom:389.297333pt;}
.y25e{bottom:389.948000pt;}
.y14e{bottom:394.950667pt;}
.y303{bottom:395.117333pt;}
.y206{bottom:395.457333pt;}
.yef{bottom:395.841333pt;}
.y173{bottom:396.153333pt;}
.y2e0{bottom:398.217333pt;}
.y56{bottom:398.426667pt;}
.y1b6{bottom:400.448000pt;}
.y2bc{bottom:401.741333pt;}
.y12e{bottom:402.044000pt;}
.y10e{bottom:404.796000pt;}
.y324{bottom:407.725333pt;}
.y25d{bottom:409.209333pt;}
.y14d{bottom:414.212000pt;}
.y205{bottom:414.718667pt;}
.yee{bottom:415.102667pt;}
.y172{bottom:415.414667pt;}
.y2df{bottom:417.477333pt;}
.y55{bottom:417.688000pt;}
.y1b5{bottom:419.708000pt;}
.y2bb{bottom:421.001333pt;}
.y12d{bottom:421.305333pt;}
.y10d{bottom:424.057333pt;}
.y25c{bottom:428.470667pt;}
.y14c{bottom:433.473333pt;}
.y204{bottom:433.980000pt;}
.ya{bottom:434.301333pt;}
.yed{bottom:434.364000pt;}
.y171{bottom:434.676000pt;}
.y290{bottom:435.512000pt;}
.y46{bottom:435.953333pt;}
.y54{bottom:436.949333pt;}
.y1b4{bottom:438.969333pt;}
.y2ba{bottom:440.262667pt;}
.y323{bottom:440.270667pt;}
.y12c{bottom:440.566667pt;}
.y10c{bottom:443.318667pt;}
.y2de{bottom:447.033333pt;}
.y25b{bottom:447.732000pt;}
.y302{bottom:448.361333pt;}
.y14b{bottom:452.734667pt;}
.yec{bottom:453.625333pt;}
.y170{bottom:453.937333pt;}
.y28f{bottom:454.773333pt;}
.y53{bottom:456.210667pt;}
.y1b3{bottom:458.230667pt;}
.y198{bottom:459.230667pt;}
.y10b{bottom:462.578667pt;}
.y203{bottom:463.536000pt;}
.y25a{bottom:466.993333pt;}
.y301{bottom:467.622667pt;}
.y2b9{bottom:469.818667pt;}
.y12b{bottom:470.122667pt;}
.y45{bottom:470.822667pt;}
.y14a{bottom:471.996000pt;}
.y322{bottom:472.814667pt;}
.yeb{bottom:472.885333pt;}
.y16f{bottom:473.198667pt;}
.y28e{bottom:474.034667pt;}
.y52{bottom:475.472000pt;}
.y9{bottom:475.480000pt;}
.y1b2{bottom:477.492000pt;}
.y197{bottom:478.492000pt;}
.y10a{bottom:481.840000pt;}
.y300{bottom:486.884000pt;}
.y44{bottom:490.084000pt;}
.y149{bottom:491.256000pt;}
.y321{bottom:492.076000pt;}
.yea{bottom:492.146667pt;}
.y16e{bottom:492.458667pt;}
.y2dd{bottom:493.249333pt;}
.y28d{bottom:493.296000pt;}
.y51{bottom:494.732000pt;}
.y259{bottom:496.548000pt;}
.y1b1{bottom:496.753333pt;}
.y196{bottom:497.753333pt;}
.y109{bottom:501.101333pt;}
.y8{bottom:504.704000pt;}
.y202{bottom:504.721333pt;}
.y2ff{bottom:506.145333pt;}
.y75{bottom:508.016000pt;}
.y43{bottom:509.345333pt;}
.y148{bottom:510.517333pt;}
.ye9{bottom:511.408000pt;}
.y12a{bottom:511.688000pt;}
.y16d{bottom:511.720000pt;}
.y2dc{bottom:512.510667pt;}
.y28c{bottom:512.557333pt;}
.y50{bottom:513.993333pt;}
.y1b0{bottom:516.014667pt;}
.y2b8{bottom:516.034667pt;}
.y195{bottom:517.014667pt;}
.y108{bottom:520.362667pt;}
.y201{bottom:523.982667pt;}
.y320{bottom:524.620000pt;}
.y2fe{bottom:525.406667pt;}
.y74{bottom:527.277333pt;}
.y42{bottom:528.606667pt;}
.y147{bottom:529.778667pt;}
.y2b7{bottom:529.798667pt;}
.ye8{bottom:530.669333pt;}
.y129{bottom:530.949333pt;}
.y16c{bottom:530.981333pt;}
.y2db{bottom:531.772000pt;}
.y21{bottom:532.056000pt;}
.y4f{bottom:533.254667pt;}
.y7{bottom:533.928000pt;}
.y1af{bottom:535.274667pt;}
.y2b6{bottom:535.296000pt;}
.y194{bottom:536.274667pt;}
.yae{bottom:537.418667pt;}
.y107{bottom:539.624000pt;}
.y258{bottom:542.764000pt;}
.y200{bottom:543.242667pt;}
.y31f{bottom:543.881333pt;}
.y2fd{bottom:544.668000pt;}
.y73{bottom:546.538667pt;}
.y146{bottom:549.040000pt;}
.ye7{bottom:549.930667pt;}
.y128{bottom:550.210667pt;}
.y16b{bottom:550.242667pt;}
.y2da{bottom:551.032000pt;}
.y20{bottom:551.317333pt;}
.y4e{bottom:552.516000pt;}
.y1ae{bottom:554.536000pt;}
.y2b5{bottom:554.556000pt;}
.y272{bottom:555.064000pt;}
.y193{bottom:555.536000pt;}
.yad{bottom:556.680000pt;}
.y106{bottom:558.885333pt;}
.y257{bottom:562.025333pt;}
.y1ff{bottom:562.504000pt;}
.y31e{bottom:563.142667pt;}
.y6{bottom:563.150667pt;}
.y41{bottom:563.474667pt;}
.y2fc{bottom:563.928000pt;}
.y72{bottom:565.798667pt;}
.y145{bottom:568.301333pt;}
.ye6{bottom:569.192000pt;}
.y127{bottom:569.472000pt;}
.y16a{bottom:569.504000pt;}
.y2d9{bottom:570.293333pt;}
.y1f{bottom:570.578667pt;}
.y4d{bottom:571.777333pt;}
.y1ad{bottom:573.797333pt;}
.y2b4{bottom:573.817333pt;}
.y192{bottom:574.797333pt;}
.yac{bottom:575.941333pt;}
.y105{bottom:578.145333pt;}
.y256{bottom:581.286667pt;}
.y1fe{bottom:581.765333pt;}
.y40{bottom:582.736000pt;}
.y2fb{bottom:583.189333pt;}
.y71{bottom:585.060000pt;}
.y144{bottom:587.562667pt;}
.y126{bottom:588.733333pt;}
.y169{bottom:588.765333pt;}
.y2d8{bottom:589.554667pt;}
.y1e{bottom:590.370667pt;}
.y4c{bottom:591.037333pt;}
.y1ac{bottom:593.058667pt;}
.y2b3{bottom:593.078667pt;}
.y191{bottom:594.058667pt;}
.yab{bottom:595.202667pt;}
.y31d{bottom:595.686667pt;}
.y104{bottom:597.406667pt;}
.y255{bottom:600.548000pt;}
.y3f{bottom:601.997333pt;}
.y2fa{bottom:602.450667pt;}
.y70{bottom:604.321333pt;}
.y143{bottom:606.822667pt;}
.y125{bottom:607.994667pt;}
.y168{bottom:608.025333pt;}
.y2d7{bottom:608.816000pt;}
.y1d{bottom:610.162667pt;}
.y4b{bottom:610.298667pt;}
.y1ab{bottom:612.320000pt;}
.y190{bottom:613.320000pt;}
.ye5{bottom:613.722667pt;}
.y1fd{bottom:614.382667pt;}
.yaa{bottom:614.462667pt;}
.y31c{bottom:614.948000pt;}
.y103{bottom:616.668000pt;}
.y254{bottom:619.808000pt;}
.y3e{bottom:621.258667pt;}
.y6f{bottom:623.582667pt;}
.y142{bottom:626.084000pt;}
.y124{bottom:627.254667pt;}
.y167{bottom:627.286667pt;}
.y2d6{bottom:628.077333pt;}
.y4a{bottom:629.560000pt;}
.y1c{bottom:629.956000pt;}
.y1aa{bottom:631.581333pt;}
.y224{bottom:632.006667pt;}
.y18f{bottom:632.580000pt;}
.ye4{bottom:632.984000pt;}
.ya9{bottom:633.724000pt;}
.y31b{bottom:634.209333pt;}
.y102{bottom:635.929333pt;}
.y253{bottom:639.069333pt;}
.y3d{bottom:640.520000pt;}
.y2b2{bottom:641.364000pt;}
.y6e{bottom:642.844000pt;}
.y5{bottom:642.852000pt;}
.y141{bottom:645.345333pt;}
.y123{bottom:646.516000pt;}
.y1fc{bottom:647.000000pt;}
.y2d5{bottom:647.338667pt;}
.y49{bottom:648.821333pt;}
.y1b{bottom:649.748000pt;}
.y1a9{bottom:650.841333pt;}
.y223{bottom:651.268000pt;}
.y18e{bottom:651.841333pt;}
.ye3{bottom:652.244000pt;}
.ya8{bottom:652.985333pt;}
.y23b{bottom:654.554667pt;}
.y252{bottom:658.330667pt;}
.y1e7{bottom:658.468000pt;}
.y2b1{bottom:660.625333pt;}
.y6d{bottom:662.105333pt;}
.y140{bottom:664.606667pt;}
.y101{bottom:665.485333pt;}
.y122{bottom:665.777333pt;}
.y1a8{bottom:665.781333pt;}
.y1fb{bottom:666.261333pt;}
.y31a{bottom:666.754667pt;}
.y4{bottom:666.762667pt;}
.y48{bottom:668.082667pt;}
.y1a{bottom:669.540000pt;}
.y1a7{bottom:670.102667pt;}
.y222{bottom:670.529333pt;}
.y18d{bottom:671.102667pt;}
.y166{bottom:671.817333pt;}
.ya7{bottom:672.246667pt;}
.y23a{bottom:673.816000pt;}
.y3c{bottom:675.388000pt;}
.y28b{bottom:676.558667pt;}
.y251{bottom:677.592000pt;}
.y1e6{bottom:677.729333pt;}
.y2f9{bottom:678.222667pt;}
.ye2{bottom:679.492000pt;}
.y6c{bottom:681.365333pt;}
.y2d4{bottom:682.384000pt;}
.y13f{bottom:683.868000pt;}
.y121{bottom:685.038667pt;}
.y1fa{bottom:685.522667pt;}
.y319{bottom:686.014667pt;}
.y47{bottom:687.344000pt;}
.y29e{bottom:687.392000pt;}
.y19{bottom:689.332000pt;}
.y1a6{bottom:689.364000pt;}
.y221{bottom:689.789333pt;}
.y18c{bottom:690.364000pt;}
.y165{bottom:691.078667pt;}
.y239{bottom:693.077333pt;}
.y3b{bottom:694.649333pt;}
.y28a{bottom:695.820000pt;}
.y250{bottom:696.853333pt;}
.y1e5{bottom:696.990667pt;}
.ye1{bottom:698.753333pt;}
.y6b{bottom:700.626667pt;}
.y13e{bottom:703.129333pt;}
.y120{bottom:704.300000pt;}
.y318{bottom:705.276000pt;}
.y30{bottom:706.604000pt;}
.y18{bottom:708.593333pt;}
.y1a5{bottom:708.625333pt;}
.y220{bottom:709.050667pt;}
.y18b{bottom:709.625333pt;}
.y164{bottom:710.340000pt;}
.y2f8{bottom:710.766667pt;}
.y238{bottom:712.337333pt;}
.y3a{bottom:713.910667pt;}
.y1f9{bottom:715.077333pt;}
.y289{bottom:715.080000pt;}
.y24f{bottom:716.114667pt;}
.ye0{bottom:718.014667pt;}
.y6a{bottom:719.888000pt;}
.ya6{bottom:720.532000pt;}
.y13d{bottom:722.389333pt;}
.y1a4{bottom:723.565333pt;}
.y1c6{bottom:723.756000pt;}
.y317{bottom:724.537333pt;}
.y2f{bottom:725.865333pt;}
.y1a3{bottom:727.886667pt;}
.y21f{bottom:728.312000pt;}
.y100{bottom:728.326667pt;}
.y17{bottom:728.386667pt;}
.y18a{bottom:728.886667pt;}
.y163{bottom:729.601333pt;}
.y237{bottom:731.598667pt;}
.y39{bottom:733.172000pt;}
.y288{bottom:734.341333pt;}
.y24e{bottom:735.374667pt;}
.y2d3{bottom:735.629333pt;}
.ydf{bottom:737.276000pt;}
.y69{bottom:739.149333pt;}
.ya5{bottom:739.793333pt;}
.y13c{bottom:741.650667pt;}
.y2f7{bottom:743.312000pt;}
.y2e{bottom:745.126667pt;}
.y1a2{bottom:747.146667pt;}
.y21e{bottom:747.573333pt;}
.yff{bottom:747.588000pt;}
.y16{bottom:747.646667pt;}
.y189{bottom:748.146667pt;}
.y162{bottom:748.862667pt;}
.y236{bottom:750.860000pt;}
.y38{bottom:752.433333pt;}
.y11f{bottom:752.585333pt;}
.y287{bottom:753.602667pt;}
.y24d{bottom:754.636000pt;}
.y2d2{bottom:754.890667pt;}
.yde{bottom:756.536000pt;}
.y316{bottom:757.081333pt;}
.y68{bottom:758.410667pt;}
.y13b{bottom:760.912000pt;}
.y2f6{bottom:762.572000pt;}
.y2d{bottom:764.388000pt;}
.y90{bottom:766.560000pt;}
.y21d{bottom:766.834667pt;}
.y15{bottom:766.908000pt;}
.y188{bottom:767.408000pt;}
.y161{bottom:768.122667pt;}
.y235{bottom:770.121333pt;}
.y37{bottom:771.694667pt;}
.y11e{bottom:771.846667pt;}
.y286{bottom:772.864000pt;}
.y24c{bottom:773.897333pt;}
.y2d1{bottom:774.152000pt;}
.y19f{bottom:775.485333pt;}
.y315{bottom:776.342667pt;}
.y67{bottom:777.672000pt;}
.y19e{bottom:779.806667pt;}
.y13a{bottom:780.173333pt;}
.y1a1{bottom:781.494667pt;}
.y2c{bottom:783.649333pt;}
.ydd{bottom:783.784000pt;}
.y21c{bottom:786.096000pt;}
.y14{bottom:786.169333pt;}
.y187{bottom:786.669333pt;}
.y160{bottom:787.384000pt;}
.y234{bottom:789.382667pt;}
.y36{bottom:790.954667pt;}
.y285{bottom:792.125333pt;}
.y1a0{bottom:792.429333pt;}
.y2d0{bottom:793.412000pt;}
.y2f5{bottom:795.117333pt;}
.y314{bottom:795.604000pt;}
.y66{bottom:796.932000pt;}
.y19d{bottom:798.890667pt;}
.y139{bottom:799.434667pt;}
.y2b{bottom:802.910667pt;}
.y19c{bottom:803.213333pt;}
.y24b{bottom:803.453333pt;}
.y21b{bottom:805.356000pt;}
.y13{bottom:805.961333pt;}
.y23{bottom:807.024000pt;}
.y233{bottom:808.642667pt;}
.y35{bottom:810.216000pt;}
.y2f4{bottom:814.378667pt;}
.y15f{bottom:814.632000pt;}
.y313{bottom:814.865333pt;}
.y65{bottom:816.193333pt;}
.y138{bottom:818.696000pt;}
.y2cf{bottom:820.090667pt;}
.ydc{bottom:822.038667pt;}
.y2a{bottom:822.170667pt;}
.y21a{bottom:824.617333pt;}
.y12{bottom:825.754667pt;}
.y22{bottom:826.285333pt;}
.y34{bottom:829.477333pt;}
.y2f3{bottom:833.640000pt;}
.y312{bottom:834.126667pt;}
.y64{bottom:835.454667pt;}
.y137{bottom:837.956000pt;}
.y232{bottom:838.198667pt;}
.y2ce{bottom:839.352000pt;}
.ydb{bottom:841.300000pt;}
.y29{bottom:841.432000pt;}
.y15e{bottom:841.568000pt;}
.y186{bottom:842.629333pt;}
.y219{bottom:843.878667pt;}
.y11{bottom:845.546667pt;}
.y33{bottom:848.738667pt;}
.y24a{bottom:849.669333pt;}
.y63{bottom:854.716000pt;}
.y136{bottom:857.217333pt;}
.y2cd{bottom:858.612000pt;}
.y28{bottom:860.693333pt;}
.y185{bottom:861.890667pt;}
.y218{bottom:863.140000pt;}
.y10{bottom:864.808000pt;}
.y271{bottom:865.121333pt;}
.y2f2{bottom:866.184000pt;}
.y311{bottom:866.670667pt;}
.y32{bottom:868.000000pt;}
.y249{bottom:868.929333pt;}
.y62{bottom:873.977333pt;}
.yda{bottom:876.478667pt;}
.y2cc{bottom:877.873333pt;}
.y15d{bottom:879.821333pt;}
.y27{bottom:879.954667pt;}
.y217{bottom:882.401333pt;}
.yf{bottom:884.069333pt;}
.y270{bottom:884.382667pt;}
.y2f1{bottom:885.445333pt;}
.y310{bottom:885.932000pt;}
.y248{bottom:888.190667pt;}
.y184{bottom:888.826667pt;}
.y231{bottom:890.478667pt;}
.yd9{bottom:895.740000pt;}
.y2cb{bottom:897.134667pt;}
.y15c{bottom:899.082667pt;}
.y26{bottom:899.216000pt;}
.y31{bottom:902.869333pt;}
.y61{bottom:903.533333pt;}
.y26f{bottom:903.644000pt;}
.ye{bottom:903.861333pt;}
.y2f0{bottom:904.706667pt;}
.y230{bottom:909.740000pt;}
.y216{bottom:911.957333pt;}
.yd8{bottom:915.001333pt;}
.y183{bottom:915.761333pt;}
.y2ca{bottom:916.396000pt;}
.y25{bottom:918.477333pt;}
.y247{bottom:919.629333pt;}
.y26e{bottom:922.905333pt;}
.y2ef{bottom:923.966667pt;}
.y246{bottom:930.562667pt;}
.y60{bottom:933.088000pt;}
.y3{bottom:934.261333pt;}
.y2c9{bottom:935.657333pt;}
.y22f{bottom:936.988000pt;}
.y24{bottom:937.737333pt;}
.y26d{bottom:942.697333pt;}
.y2ee{bottom:943.228000pt;}
.y2{bottom:953.522667pt;}
.y2c8{bottom:954.917333pt;}
.y182{bottom:955.980000pt;}
.y1{bottom:972.784000pt;}
.y2c7{bottom:974.710667pt;}
.y181{bottom:975.241333pt;}
.yd{bottom:1015.450667pt;}
.h22{height:2.000604pt;}
.h1f{height:2.450740pt;}
.h1d{height:3.000906pt;}
.h21{height:3.200966pt;}
.h1e{height:3.501057pt;}
.h1b{height:4.287008pt;}
.h20{height:4.572809pt;}
.h1c{height:5.001509pt;}
.h10{height:25.408522pt;}
.h25{height:27.172383pt;}
.h9{height:27.948928pt;}
.h24{height:29.889621pt;}
.h11{height:30.490226pt;}
.h7{height:31.054364pt;}
.h2e{height:31.232563pt;}
.h14{height:31.880400pt;}
.h26{height:32.606860pt;}
.h30{height:32.640000pt;}
.h28{height:35.898212pt;}
.h8{height:37.265237pt;}
.h27{height:38.041336pt;}
.he{height:38.220794pt;}
.hd{height:42.504177pt;}
.hb{height:42.864168pt;}
.h12{height:44.420400pt;}
.h2a{height:44.887791pt;}
.hc{height:45.864953pt;}
.h2{height:47.820800pt;}
.h5{height:49.223543pt;}
.h2b{height:51.833693pt;}
.h31{height:53.796360pt;}
.h2c{height:55.021733pt;}
.h3{height:57.384800pt;}
.h18{height:62.109733pt;}
.h17{height:65.106133pt;}
.h4{height:68.861600pt;}
.h32{height:69.810133pt;}
.h13{height:71.080400pt;}
.h19{height:79.395067pt;}
.h29{height:88.023791pt;}
.h16{height:88.365733pt;}
.h15{height:97.958443pt;}
.h6{height:180.509760pt;}
.h1a{height:189.530880pt;}
.ha{height:222.166080pt;}
.hf{height:246.153600pt;}
.h23{height:263.241600pt;}
.h2d{height:288.339840pt;}
.h2f{height:301.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:300.849600pt;}
.w7{width:361.062720pt;}
.w8{width:377.333333pt;}
.w6{width:421.186560pt;}
.w3{width:481.359840pt;}
.w5{width:541.516800pt;}
.w4{width:541.537920pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x54{left:6.652331pt;}
.x56{left:7.589076pt;}
.x23{left:12.471270pt;}
.x57{left:13.797340pt;}
.x17{left:15.242420pt;}
.x58{left:17.040800pt;}
.x72{left:18.736769pt;}
.x1d{left:19.923164pt;}
.x24{left:21.667842pt;}
.x55{left:24.449051pt;}
.x18{left:26.482495pt;}
.x84{left:27.666667pt;}
.x52{left:28.668614pt;}
.x22{left:30.460568pt;}
.x16{left:31.914502pt;}
.x83{left:33.766667pt;}
.x15{left:37.228989pt;}
.x59{left:38.811656pt;}
.x1b{left:39.979824pt;}
.x53{left:43.131964pt;}
.x1c{left:46.642128pt;}
.x37{left:52.809092pt;}
.x71{left:61.572132pt;}
.x50{left:63.989235pt;}
.x1e{left:69.096476pt;}
.x7c{left:70.662398pt;}
.x7d{left:73.092874pt;}
.x30{left:76.790906pt;}
.x14{left:81.658145pt;}
.x5a{left:82.888924pt;}
.x85{left:86.930000pt;}
.x7f{left:89.509745pt;}
.x7e{left:92.855635pt;}
.xd{left:96.000000pt;}
.x75{left:97.145333pt;}
.x7{left:99.506667pt;}
.x25{left:103.879999pt;}
.x86{left:105.170000pt;}
.x7b{left:107.645810pt;}
.x81{left:111.184000pt;}
.x1f{left:112.251204pt;}
.x82{left:115.502667pt;}
.x73{left:116.931827pt;}
.x3a{left:118.113333pt;}
.x11{left:119.412000pt;}
.xe{left:120.613333pt;}
.x21{left:126.086667pt;}
.x8a{left:127.382667pt;}
.x51{left:128.987798pt;}
.x41{left:133.046667pt;}
.x7a{left:134.168000pt;}
.x8{left:140.488000pt;}
.x10{left:141.757333pt;}
.x43{left:144.362667pt;}
.x42{left:149.241333pt;}
.x12{left:155.310667pt;}
.x44{left:158.541333pt;}
.xa{left:160.384000pt;}
.x40{left:162.126667pt;}
.x8b{left:166.228000pt;}
.x77{left:169.752000pt;}
.x89{left:180.969333pt;}
.x70{left:186.256000pt;}
.x28{left:189.060837pt;}
.x3{left:194.281333pt;}
.xc{left:196.685333pt;}
.x29{left:198.257409pt;}
.x33{left:200.436894pt;}
.x4{left:202.642667pt;}
.x32{left:204.881334pt;}
.x1{left:206.616000pt;}
.x5b{left:208.130553pt;}
.x31{left:209.229620pt;}
.x38{left:210.456371pt;}
.x19{left:212.610830pt;}
.x26{left:216.190083pt;}
.x3b{left:218.793333pt;}
.x3c{left:222.377333pt;}
.x2{left:223.878667pt;}
.x9{left:225.369333pt;}
.x3d{left:227.053333pt;}
.x3e{left:228.077333pt;}
.xb{left:231.038667pt;}
.x78{left:232.097333pt;}
.x1a{left:234.833333pt;}
.x13{left:246.425333pt;}
.x27{left:248.164666pt;}
.x61{left:269.171831pt;}
.x62{left:275.380095pt;}
.x68{left:276.316995pt;}
.x63{left:280.418608pt;}
.x69{left:282.525259pt;}
.x76{left:284.290667pt;}
.x6a{left:285.768719pt;}
.x4c{left:287.050667pt;}
.x64{left:289.933359pt;}
.x79{left:290.880000pt;}
.x65{left:293.176819pt;}
.xf{left:295.134667pt;}
.x5e{left:297.396514pt;}
.x6b{left:301.243314pt;}
.x20{left:303.995174pt;}
.x6c{left:307.539725pt;}
.x66{left:308.651565pt;}
.x5f{left:311.859864pt;}
.x67{left:314.947826pt;}
.x3f{left:316.829333pt;}
.x60{left:318.628824pt;}
.x74{left:319.644000pt;}
.x5c{left:332.716947pt;}
.x45{left:340.129333pt;}
.x47{left:344.649333pt;}
.x6d{left:350.864529pt;}
.x46{left:352.628000pt;}
.x5{left:354.709333pt;}
.x48{left:357.148000pt;}
.x6{left:364.000000pt;}
.x2d{left:367.829889pt;}
.x88{left:373.193333pt;}
.x2e{left:377.026461pt;}
.x36{left:379.205946pt;}
.x2c{left:381.470901pt;}
.x35{left:383.650386pt;}
.x49{left:384.613333pt;}
.x34{left:387.998672pt;}
.x39{left:389.225423pt;}
.x2a{left:394.959135pt;}
.x5d{left:397.714005pt;}
.x87{left:413.993333pt;}
.x4a{left:418.973333pt;}
.x2b{left:426.933718pt;}
.x2f{left:454.730075pt;}
.x80{left:469.052000pt;}
.x6e{left:470.417900pt;}
.x6f{left:477.763726pt;}
.x4e{left:517.468000pt;}
.x4f{left:562.866667pt;}
.x4d{left:572.692000pt;}
.x4b{left:677.757333pt;}
}




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