
    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_fc5d78e26849213b59ae2c23.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_da7bdbfbbe7dfa29cc708048.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_18ce3e8434471ee5135326cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ce2448c146a61742f9a47642.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_e21f4c985b43acfe465aca45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d4590db8d0fd7c1d947f8be5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239258;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;}
.m4{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);}
.m5{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m6{transform:matrix(0.244535,0.000000,-0.051988,0.244535,0,0);-ms-transform:matrix(0.244535,0.000000,-0.051988,0.244535,0,0);-webkit-transform:matrix(0.244535,0.000000,-0.051988,0.244535,0,0);}
.m3{transform:matrix(0.244535,0.000000,-0.051986,0.244535,0,0);-ms-transform:matrix(0.244535,0.000000,-0.051986,0.244535,0,0);-webkit-transform:matrix(0.244535,0.000000,-0.051986,0.244535,0,0);}
.m2{transform:matrix(0.244536,0.000000,-0.051984,0.244536,0,0);-ms-transform:matrix(0.244536,0.000000,-0.051984,0.244536,0,0);-webkit-transform:matrix(0.244536,0.000000,-0.051984,0.244536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.030000px;}
.v9{vertical-align:-12.270000px;}
.v7{vertical-align:-10.830000px;}
.v6{vertical-align:-7.200000px;}
.v8{vertical-align:-5.760000px;}
.v2{vertical-align:-1.572000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.572000px;}
.v5{vertical-align:10.830000px;}
.v3{vertical-align:18.030000px;}
.vb{vertical-align:35.280000px;}
.va{vertical-align:83.520000px;}
.ls3f{letter-spacing:-2.096640px;}
.ls3d{letter-spacing:-1.339200px;}
.ls11{letter-spacing:-1.188000px;}
.ls34{letter-spacing:-1.126080px;}
.ls3e{letter-spacing:-0.936000px;}
.ls49{letter-spacing:-0.736089px;}
.ls4d{letter-spacing:-0.648000px;}
.ls40{letter-spacing:-0.636430px;}
.ls37{letter-spacing:-0.522720px;}
.ls52{letter-spacing:-0.494654px;}
.lsf{letter-spacing:-0.483840px;}
.ls4c{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.336960px;}
.ls36{letter-spacing:-0.334080px;}
.ls2a{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.239040px;}
.ls16{letter-spacing:-0.237600px;}
.ls4e{letter-spacing:-0.216000px;}
.ls38{letter-spacing:-0.207360px;}
.ls25{letter-spacing:-0.167040px;}
.ls7{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.142560px;}
.ls26{letter-spacing:-0.125280px;}
.ls41{letter-spacing:-0.074880px;}
.ls3a{letter-spacing:-0.072000px;}
.ls35{letter-spacing:-0.066240px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.020160px;}
.ls1a{letter-spacing:0.047520px;}
.ls21{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.095040px;}
.ls29{letter-spacing:0.144000px;}
.ls51{letter-spacing:0.147218px;}
.ls5{letter-spacing:0.168480px;}
.ls15{letter-spacing:0.190080px;}
.ls4a{letter-spacing:0.207360px;}
.ls3{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.220827px;}
.lse{letter-spacing:0.237600px;}
.ls2f{letter-spacing:0.264960px;}
.ls2{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.294436px;}
.ls2b{letter-spacing:0.298080px;}
.ls1e{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.368045px;}
.ls45{letter-spacing:0.393120px;}
.ls3c{letter-spacing:0.432000px;}
.ls3b{letter-spacing:0.441654px;}
.ls44{letter-spacing:0.453623px;}
.ls28{letter-spacing:0.463680px;}
.ls27{letter-spacing:0.474042px;}
.ls39{letter-spacing:0.483840px;}
.ls2e{letter-spacing:0.496800px;}
.ls23{letter-spacing:0.501120px;}
.ls22{letter-spacing:0.504000px;}
.ls4f{letter-spacing:0.515262px;}
.lsc{letter-spacing:0.544320px;}
.ls32{letter-spacing:0.563040px;}
.ls33{letter-spacing:0.576000px;}
.ls50{letter-spacing:0.588871px;}
.ls2d{letter-spacing:0.604800px;}
.ls20{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.725760px;}
.ls31{letter-spacing:0.861120px;}
.lsd{letter-spacing:0.933120px;}
.ls9{letter-spacing:0.973440px;}
.ls14{letter-spacing:1.045440px;}
.ls13{letter-spacing:1.092960px;}
.ls17{letter-spacing:1.188000px;}
.ls30{letter-spacing:1.357920px;}
.ls18{letter-spacing:1.710720px;}
.ls2c{letter-spacing:1.755360px;}
.ls42{letter-spacing:1.905120px;}
.ls48{letter-spacing:4.302720px;}
.ls43{letter-spacing:4.468320px;}
.ls47{letter-spacing:5.091840px;}
.lsb{letter-spacing:12.216960px;}
.ls46{letter-spacing:15.984000px;}
.ls1f{letter-spacing:82.224000px;}
.ls10{letter-spacing:90.720000px;}
.ls12{letter-spacing:92.171520px;}
.ls24{letter-spacing:116.784000px;}
.ls4b{letter-spacing:415.653120px;}
.ls53{letter-spacing:867.024000px;}
.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;}
}
.ws1d{word-spacing:-27.336960px;}
.ws6b{word-spacing:-20.757716px;}
.ws6a{word-spacing:-20.684108px;}
.ws41{word-spacing:-20.664000px;}
.ws7f{word-spacing:-20.592000px;}
.ws86{word-spacing:-20.520000px;}
.wsb2{word-spacing:-20.376000px;}
.ws52{word-spacing:-20.304000px;}
.wsc6{word-spacing:-20.232000px;}
.ws73{word-spacing:-20.160000px;}
.wsee{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.872000px;}
.wsc4{word-spacing:-19.368000px;}
.ws5a{word-spacing:-18.000000px;}
.ws42{word-spacing:-16.813440px;}
.wsf0{word-spacing:-16.694558px;}
.wsc9{word-spacing:-16.329600px;}
.ws17{word-spacing:-15.845760px;}
.ws1a{word-spacing:-15.120000px;}
.ws8a{word-spacing:-14.398560px;}
.ws20{word-spacing:-12.117600px;}
.ws1b{word-spacing:-11.975040px;}
.ws18{word-spacing:-11.880000px;}
.ws22{word-spacing:-11.737440px;}
.ws1c{word-spacing:-11.642400px;}
.ws59{word-spacing:-11.484000px;}
.ws79{word-spacing:-10.962720px;}
.ws77{word-spacing:-10.565280px;}
.ws8d{word-spacing:-10.091520px;}
.ws78{word-spacing:-10.068480px;}
.ws76{word-spacing:-9.704160px;}
.ws74{word-spacing:-9.505440px;}
.wsa9{word-spacing:-9.472320px;}
.ws8c{word-spacing:-9.123840px;}
.wsaa{word-spacing:-8.311680px;}
.wsb9{word-spacing:-3.132000px;}
.wsc3{word-spacing:-2.877120px;}
.wsc1{word-spacing:-2.545920px;}
.ws24{word-spacing:-1.874880px;}
.wsad{word-spacing:-1.800000px;}
.wsd6{word-spacing:-1.728000px;}
.wsbb{word-spacing:-1.663200px;}
.wsab{word-spacing:-1.584000px;}
.ws28{word-spacing:-1.568160px;}
.ws49{word-spacing:-1.512000px;}
.ws23{word-spacing:-1.473120px;}
.ws2e{word-spacing:-1.451520px;}
.ws25{word-spacing:-1.425600px;}
.wsc2{word-spacing:-1.085760px;}
.wsae{word-spacing:-0.967680px;}
.ws21{word-spacing:-0.861120px;}
.ws2c{word-spacing:-0.617760px;}
.ws27{word-spacing:-0.570240px;}
.wse1{word-spacing:-0.441654px;}
.wsde{word-spacing:-0.368045px;}
.ws62{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.294436px;}
.ws7c{word-spacing:-0.282240px;}
.wsba{word-spacing:-0.241920px;}
.ws5{word-spacing:-0.220827px;}
.ws16{word-spacing:-0.217728px;}
.ws82{word-spacing:-0.216000px;}
.wsce{word-spacing:-0.181440px;}
.ws3c{word-spacing:-0.147218px;}
.wse{word-spacing:-0.144000px;}
.ws63{word-spacing:-0.135441px;}
.ws64{word-spacing:-0.132480px;}
.ws33{word-spacing:-0.073609px;}
.ws15{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.060480px;}
.wsa6{word-spacing:0.072000px;}
.wsa{word-spacing:0.119520px;}
.ws2b{word-spacing:0.142560px;}
.ws35{word-spacing:0.144000px;}
.ws2a{word-spacing:0.181440px;}
.ws95{word-spacing:0.216000px;}
.ws5b{word-spacing:0.288000px;}
.ws7e{word-spacing:0.298080px;}
.wsd9{word-spacing:0.360000px;}
.ws6c{word-spacing:0.432000px;}
.wsb0{word-spacing:0.446400px;}
.ws83{word-spacing:0.483840px;}
.wsca{word-spacing:0.504000px;}
.ws7d{word-spacing:0.563040px;}
.ws2d{word-spacing:0.725760px;}
.wscd{word-spacing:0.792000px;}
.wsbe{word-spacing:0.883307px;}
.ws51{word-spacing:0.967680px;}
.ws9{word-spacing:1.010880px;}
.ws1e{word-spacing:1.111680px;}
.ws26{word-spacing:1.209600px;}
.ws7{word-spacing:1.251352px;}
.ws47{word-spacing:1.296000px;}
.ws90{word-spacing:1.330560px;}
.ws34{word-spacing:1.368000px;}
.ws4d{word-spacing:1.440000px;}
.ws61{word-spacing:1.512000px;}
.wsa5{word-spacing:1.584000px;}
.ws8f{word-spacing:1.710720px;}
.wsb1{word-spacing:1.759680px;}
.ws4f{word-spacing:2.419200px;}
.wsdb{word-spacing:2.664000px;}
.wsb{word-spacing:2.736000px;}
.ws14{word-spacing:2.808000px;}
.ws3b{word-spacing:2.870748px;}
.wsa2{word-spacing:2.880000px;}
.ws4e{word-spacing:3.810240px;}
.ws48{word-spacing:4.104000px;}
.ws4b{word-spacing:4.176000px;}
.wsc{word-spacing:4.248000px;}
.ws9d{word-spacing:4.320000px;}
.wsb5{word-spacing:4.392000px;}
.wse5{word-spacing:4.464000px;}
.ws19{word-spacing:5.145120px;}
.ws7b{word-spacing:5.261760px;}
.ws6{word-spacing:5.594278px;}
.wsf{word-spacing:5.616000px;}
.ws32{word-spacing:5.688000px;}
.ws3e{word-spacing:5.741496px;}
.ws9b{word-spacing:5.760000px;}
.ws45{word-spacing:5.815105px;}
.wsd3{word-spacing:5.904000px;}
.ws7a{word-spacing:6.713280px;}
.wsdd{word-spacing:6.984000px;}
.ws11{word-spacing:7.056000px;}
.ws10{word-spacing:7.128000px;}
.ws96{word-spacing:7.200000px;}
.wse6{word-spacing:7.344000px;}
.wsf3{word-spacing:8.164800px;}
.wsf2{word-spacing:8.347279px;}
.ws12{word-spacing:8.496000px;}
.ws38{word-spacing:8.568000px;}
.ws3{word-spacing:8.612244px;}
.ws6e{word-spacing:8.640000px;}
.ws3f{word-spacing:8.759462px;}
.ws8e{word-spacing:8.928000px;}
.wscf{word-spacing:9.616320px;}
.ws72{word-spacing:9.936000px;}
.ws66{word-spacing:10.008000px;}
.ws4{word-spacing:10.010814px;}
.ws9e{word-spacing:10.080000px;}
.wsd5{word-spacing:10.224000px;}
.ws3a{word-spacing:10.231640px;}
.wsd1{word-spacing:11.007360px;}
.ws39{word-spacing:11.376000px;}
.ws4a{word-spacing:11.448000px;}
.wsa4{word-spacing:11.520000px;}
.wse4{word-spacing:11.592000px;}
.wsa7{word-spacing:11.736000px;}
.ws5d{word-spacing:12.816000px;}
.ws31{word-spacing:12.888000px;}
.ws9a{word-spacing:12.960000px;}
.wse3{word-spacing:13.104000px;}
.wsbf{word-spacing:14.040000px;}
.ws94{word-spacing:14.184000px;}
.ws70{word-spacing:14.256000px;}
.ws5f{word-spacing:14.328000px;}
.ws9c{word-spacing:14.400000px;}
.wsd0{word-spacing:15.361920px;}
.wsd7{word-spacing:15.624000px;}
.ws81{word-spacing:15.696000px;}
.ws5e{word-spacing:15.768000px;}
.ws46{word-spacing:16.120354px;}
.ws44{word-spacing:16.193963px;}
.wsb8{word-spacing:16.992000px;}
.wsc0{word-spacing:17.064000px;}
.ws91{word-spacing:17.136000px;}
.wsd{word-spacing:17.208000px;}
.wsa1{word-spacing:17.280000px;}
.wsdf{word-spacing:17.424000px;}
.ws43{word-spacing:17.518924px;}
.ws53{word-spacing:18.576000px;}
.ws4c{word-spacing:18.648000px;}
.wsf8{word-spacing:18.991102px;}
.wsd8{word-spacing:19.293120px;}
.wsf4{word-spacing:19.656000px;}
.wsaf{word-spacing:20.016000px;}
.wsb6{word-spacing:20.088000px;}
.wsf5{word-spacing:20.095301px;}
.wsf9{word-spacing:20.160000px;}
.ws50{word-spacing:21.107520px;}
.ws37{word-spacing:21.456000px;}
.ws99{word-spacing:21.528000px;}
.wsbd{word-spacing:21.600000px;}
.wscc{word-spacing:21.744000px;}
.ws2{word-spacing:21.861850px;}
.wsb7{word-spacing:22.896000px;}
.wsa8{word-spacing:22.968000px;}
.ws69{word-spacing:23.040000px;}
.wscb{word-spacing:24.264000px;}
.ws80{word-spacing:24.336000px;}
.ws6d{word-spacing:24.408000px;}
.ws93{word-spacing:25.776000px;}
.ws36{word-spacing:25.848000px;}
.ws3d{word-spacing:26.425604px;}
.wse0{word-spacing:27.216000px;}
.ws13{word-spacing:27.288000px;}
.wsa3{word-spacing:27.360000px;}
.wsac{word-spacing:28.656000px;}
.ws5c{word-spacing:28.728000px;}
.wsd4{word-spacing:28.800000px;}
.wsf6{word-spacing:30.024000px;}
.ws65{word-spacing:30.096000px;}
.wse7{word-spacing:30.168000px;}
.ws9f{word-spacing:30.240000px;}
.ws60{word-spacing:31.536000px;}
.ws92{word-spacing:31.608000px;}
.wsf7{word-spacing:32.314317px;}
.wsd2{word-spacing:33.048000px;}
.wse2{word-spacing:33.264000px;}
.ws6f{word-spacing:34.416000px;}
.ws67{word-spacing:34.488000px;}
.ws68{word-spacing:35.928000px;}
.ws40{word-spacing:36.730853px;}
.ws71{word-spacing:37.368000px;}
.ws75{word-spacing:40.903200px;}
.wsda{word-spacing:44.568000px;}
.wsf1{word-spacing:45.936000px;}
.ws84{word-spacing:47.160000px;}
.wsbc{word-spacing:76.334400px;}
.ws1f{word-spacing:84.490560px;}
.wsa0{word-spacing:84.744000px;}
.ws30{word-spacing:84.888000px;}
.ws2f{word-spacing:89.568000px;}
.wsdc{word-spacing:89.712000px;}
.ws98{word-spacing:93.600000px;}
.ws97{word-spacing:94.896000px;}
.ws8b{word-spacing:193.916160px;}
.ws58{word-spacing:242.049600px;}
.wsed{word-spacing:264.960000px;}
.wsef{word-spacing:266.256000px;}
.ws85{word-spacing:266.889600px;}
.ws54{word-spacing:272.233440px;}
.wse8{word-spacing:280.656000px;}
.wseb{word-spacing:306.576000px;}
.wsea{word-spacing:306.720000px;}
.wsc8{word-spacing:437.224320px;}
.wsec{word-spacing:441.432000px;}
.wsc7{word-spacing:477.544320px;}
.wse9{word-spacing:553.608000px;}
.wsb4{word-spacing:561.744000px;}
.wsb3{word-spacing:561.888000px;}
.ws89{word-spacing:950.256000px;}
.ws87{word-spacing:976.320000px;}
.ws88{word-spacing:1071.216000px;}
.wsc5{word-spacing:1090.008000px;}
.ws55{word-spacing:2252.212848px;}
.ws57{word-spacing:2259.520848px;}
.ws56{word-spacing:2274.930288px;}
._c{margin-left:-12.948768px;}
._9{margin-left:-3.437989px;}
._0{margin-left:-1.766614px;}
._1{width:1.177743px;}
._2{width:2.281877px;}
._5{width:3.810024px;}
._7{width:5.019242px;}
._a{width:6.897370px;}
._b{width:8.738443px;}
._4{width:10.647714px;}
._8{width:11.723660px;}
._11{width:34.560000px;}
._18{width:49.230897px;}
._38{width:86.417280px;}
._d{width:88.663680px;}
._10{width:92.171520px;}
._e{width:93.623040px;}
._f{width:95.800320px;}
._3{width:99.610560px;}
._40{width:102.978884px;}
._6{width:105.840000px;}
._3f{width:107.469028px;}
._13{width:110.160000px;}
._27{width:113.832000px;}
._41{width:123.662992px;}
._12{width:128.226745px;}
._1d{width:147.965583px;}
._2a{width:154.080000px;}
._1c{width:159.719217px;}
._19{width:179.330223px;}
._21{width:204.456960px;}
._42{width:206.475486px;}
._1a{width:214.948800px;}
._1b{width:230.827857px;}
._4d{width:264.960000px;}
._4e{width:266.400000px;}
._14{width:281.278434px;}
._16{width:283.375074px;}
._15{width:285.579714px;}
._4b{width:287.110257px;}
._22{width:292.320000px;}
._43{width:305.280000px;}
._44{width:306.720000px;}
._17{width:313.400514px;}
._4a{width:320.582614px;}
._46{width:325.512000px;}
._47{width:326.952000px;}
._45{width:331.886614px;}
._24{width:338.472000px;}
._37{width:343.843843px;}
._26{width:358.632000px;}
._25{width:369.691843px;}
._4c{width:372.278614px;}
._29{width:398.880000px;}
._2d{width:401.875843px;}
._2c{width:419.112000px;}
._3e{width:451.728000px;}
._32{width:471.960000px;}
._3a{width:485.179843px;}
._39{width:545.400000px;}
._31{width:562.469228px;}
._35{width:566.974257px;}
._28{width:576.509228px;}
._36{width:581.760000px;}
._2b{width:589.325228px;}
._3c{width:601.637228px;}
._2e{width:608.222614px;}
._49{width:634.070614px;}
._30{width:644.400000px;}
._48{width:648.360000px;}
._3b{width:663.269228px;}
._1f{width:709.670614px;}
._20{width:769.934614px;}
._1e{width:799.565228px;}
._2f{width:835.724514px;}
._3d{width:926.357228px;}
._33{width:953.136000px;}
._34{width:960.624000px;}
._23{width:997.344000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:25.920000px;}
.fs15{font-size:30.240000px;}
.fs16{font-size:30.241543px;}
.fsf{font-size:33.120000px;}
.fs12{font-size:34.560000px;}
.fs19{font-size:36.000000px;}
.fs14{font-size:37.437061px;}
.fs10{font-size:37.440000px;}
.fse{font-size:40.320000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs13{font-size:44.640000px;}
.fsa{font-size:47.520000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.480000px;}
.fs18{font-size:61.831695px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.240000px;}
.fsc{font-size:67.720310px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:73.608924px;}
.fs11{font-size:83.520000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:119.520000px;}
.fs7{font-size:155.520000px;}
.fs6{font-size:168.480000px;}
.y0{bottom:0.000000px;}
.y1f7{bottom:1.533000px;}
.y121{bottom:1.576500px;}
.y167{bottom:1.599000px;}
.y206{bottom:1.815000px;}
.y156{bottom:2.275500px;}
.y1f2{bottom:53.305500px;}
.y54{bottom:57.360000px;}
.y29{bottom:57.720000px;}
.y6{bottom:66.525004px;}
.y28{bottom:79.320000px;}
.y5{bottom:97.125005px;}
.y27{bottom:100.560000px;}
.y26{bottom:122.160000px;}
.y10c{bottom:130.985556px;}
.y182{bottom:130.987356px;}
.y2f3{bottom:130.987500px;}
.y2db{bottom:131.347500px;}
.y2da{bottom:131.514000px;}
.y2f2{bottom:131.516496px;}
.y234{bottom:136.026996px;}
.yff{bottom:136.027212px;}
.y153{bottom:136.027500px;}
.y1bd{bottom:136.560000px;}
.y22{bottom:139.264499px;}
.y1b4{bottom:140.880000px;}
.y2f5{bottom:143.040000px;}
.y25{bottom:143.400000px;}
.yc5{bottom:144.282000px;}
.y9f{bottom:148.265556px;}
.y10b{bottom:148.266204px;}
.y2f1{bottom:149.157000px;}
.y233{bottom:152.946276px;}
.y181{bottom:153.307500px;}
.y19e{bottom:153.667500px;}
.y152{bottom:153.840000px;}
.y75{bottom:157.080000px;}
.y1bc{bottom:157.440000px;}
.yfe{bottom:157.987500px;}
.y204{bottom:158.347500px;}
.y1b3{bottom:161.760000px;}
.y24{bottom:165.000000px;}
.yc4{bottom:165.162000px;}
.y9e{bottom:165.546204px;}
.y10a{bottom:165.546852px;}
.y2be{bottom:168.240000px;}
.y180{bottom:171.120000px;}
.y19d{bottom:171.840000px;}
.y232{bottom:175.266420px;}
.yfd{bottom:175.440000px;}
.y74{bottom:177.960000px;}
.y1bb{bottom:178.320000px;}
.y1b2{bottom:182.640000px;}
.y9d{bottom:183.186708px;}
.y109{bottom:183.187356px;}
.y151{bottom:184.080000px;}
.y2f4{bottom:184.800000px;}
.yc3{bottom:186.042000px;}
.y23{bottom:186.240000px;}
.y2d9{bottom:186.600000px;}
.y2bd{bottom:189.120000px;}
.y19{bottom:196.933500px;}
.y231{bottom:197.226708px;}
.y73{bottom:198.840000px;}
.y1ba{bottom:199.200000px;}
.y9c{bottom:200.467356px;}
.yfc{bottom:202.080000px;}
.y237{bottom:203.520000px;}
.y212{bottom:204.268140px;}
.y150{bottom:204.960000px;}
.y108{bottom:205.507500px;}
.y294{bottom:205.680000px;}
.yc2{bottom:206.562000px;}
.y2d8{bottom:207.120000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y2bc{bottom:210.000000px;}
.y1e6{bottom:211.987500px;}
.y207{bottom:213.628500px;}
.y230{bottom:213.786132px;}
.y72{bottom:219.720000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y9b{bottom:222.787500px;}
.yfb{bottom:222.960000px;}
.y1b1{bottom:224.040000px;}
.y14f{bottom:225.480000px;}
.y293{bottom:226.560000px;}
.yc1{bottom:227.280000px;}
.y2b1{bottom:228.000000px;}
.y22f{bottom:231.066780px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1ef{bottom:237.015000px;}
.y208{bottom:237.028428px;}
.y19c{bottom:239.520000px;}
.y9a{bottom:240.240000px;}
.y1b9{bottom:240.600000px;}
.yfa{bottom:243.840000px;}
.y1b0{bottom:244.920000px;}
.y292{bottom:247.080000px;}
.y14e{bottom:248.160000px;}
.y2d7{bottom:248.520000px;}
.y22e{bottom:248.707284px;}
.y2b0{bottom:248.880000px;}
.y2bb{bottom:251.760000px;}
.y1e8{bottom:257.973000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y19b{bottom:260.040000px;}
.y209{bottom:260.788644px;}
.y71{bottom:261.120000px;}
.y1b8{bottom:261.480000px;}
.y99{bottom:263.280000px;}
.y1af{bottom:265.800000px;}
.y22d{bottom:265.987932px;}
.yf9{bottom:266.160000px;}
.y291{bottom:267.960000px;}
.y14d{bottom:269.040000px;}
.y2d6{bottom:269.400000px;}
.y2af{bottom:269.760000px;}
.yc0{bottom:270.282000px;}
.y2ba{bottom:272.280000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y19a{bottom:280.920000px;}
.y1b7{bottom:282.360000px;}
.y98{bottom:284.160000px;}
.y20a{bottom:284.188572px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1ae{bottom:286.680000px;}
.yf8{bottom:287.040000px;}
.y22c{bottom:288.308076px;}
.y14c{bottom:289.920000px;}
.y2ae{bottom:290.280000px;}
.y2b9{bottom:293.160000px;}
.y1e9{bottom:300.452640px;}
.y199{bottom:301.800000px;}
.y70{bottom:302.880000px;}
.y1b6{bottom:303.240000px;}
.y258{bottom:303.960000px;}
.y97{bottom:305.040000px;}
.y22b{bottom:305.227356px;}
.y213{bottom:306.840000px;}
.y1ad{bottom:307.200000px;}
.y236{bottom:307.560000px;}
.y20b{bottom:307.588500px;}
.yf7{bottom:307.920000px;}
.y290{bottom:309.720000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y14b{bottom:310.440000px;}
.y2d5{bottom:310.800000px;}
.y2ad{bottom:311.160000px;}
.ybf{bottom:312.303000px;}
.y2b8{bottom:314.040000px;}
.y217{bottom:316.228500px;}
.y198{bottom:322.680000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y6f{bottom:323.760000px;}
.y257{bottom:324.840000px;}
.y96{bottom:325.920000px;}
.y216{bottom:325.948500px;}
.y22a{bottom:327.547500px;}
.y1ac{bottom:328.080000px;}
.yf6{bottom:328.800000px;}
.y28f{bottom:330.600000px;}
.y20c{bottom:330.988428px;}
.ybe{bottom:331.317000px;}
.y14a{bottom:331.320000px;}
.y2b7{bottom:334.920000px;}
.y215{bottom:335.668500px;}
.y1ea{bottom:343.292892px;}
.y197{bottom:343.560000px;}
.y6e{bottom:344.280000px;}
.y107{bottom:344.640000px;}
.y229{bottom:345.000000px;}
.y214{bottom:345.388500px;}
.y256{bottom:345.720000px;}
.y95{bottom:346.440000px;}
.y17f{bottom:347.160000px;}
.y10{bottom:348.133500px;}
.y1ab{bottom:348.960000px;}
.yf5{bottom:349.680000px;}
.y273{bottom:350.400000px;}
.y28e{bottom:351.120000px;}
.y2d4{bottom:352.200000px;}
.y2ac{bottom:353.280000px;}
.y20d{bottom:354.388356px;}
.y2b6{bottom:355.800000px;}
.y1f1{bottom:360.480000px;}
.y1f0{bottom:361.560000px;}
.y106{bottom:365.520000px;}
.y255{bottom:366.600000px;}
.y1f9{bottom:367.320000px;}
.y1f8{bottom:368.853000px;}
.y94{bottom:369.120000px;}
.y17e{bottom:369.840000px;}
.yf4{bottom:370.200000px;}
.y272{bottom:371.280000px;}
.y28d{bottom:372.000000px;}
.y2d3{bottom:372.720000px;}
.y149{bottom:373.440000px;}
.y2b5{bottom:376.320000px;}
.y20e{bottom:378.148572px;}
.y1f6{bottom:378.480000px;}
.y1f5{bottom:380.013000px;}
.y196{bottom:384.960000px;}
.y1b5{bottom:385.507500px;}
.y1eb{bottom:385.773288px;}
.y6d{bottom:386.040000px;}
.yf{bottom:386.785499px;}
.y254{bottom:388.920000px;}
.y93{bottom:390.000000px;}
.y17d{bottom:390.720000px;}
.y1f4{bottom:390.813000px;}
.y271{bottom:392.160000px;}
.y28c{bottom:392.880000px;}
.y2d2{bottom:393.600000px;}
.y148{bottom:395.040000px;}
.y228{bottom:399.000000px;}
.y20f{bottom:401.548500px;}
.y1f3{bottom:401.973000px;}
.ybd{bottom:404.760000px;}
.y6c{bottom:406.920000px;}
.y195{bottom:407.640000px;}
.ye{bottom:408.044999px;}
.y253{bottom:409.800000px;}
.y92{bottom:410.880000px;}
.y1aa{bottom:411.240000px;}
.y17c{bottom:411.600000px;}
.yf3{bottom:411.960000px;}
.y270{bottom:413.040000px;}
.y28b{bottom:413.760000px;}
.y1bf{bottom:415.041000px;}
.y2b4{bottom:415.560000px;}
.y2ab{bottom:415.920000px;}
.y147{bottom:416.640000px;}
.y210{bottom:424.948428px;}
.y6b{bottom:427.800000px;}
.y3c{bottom:427.890000px;}
.y194{bottom:428.160000px;}
.y1ec{bottom:428.253684px;}
.y17b{bottom:432.120000px;}
.yb3{bottom:432.480000px;}
.yf2{bottom:432.840000px;}
.y26f{bottom:433.560000px;}
.y2f0{bottom:433.920000px;}
.y28a{bottom:434.640000px;}
.y2d1{bottom:435.000000px;}
.y2aa{bottom:436.800000px;}
.y12b{bottom:437.520000px;}
.y146{bottom:438.240000px;}
.y227{bottom:440.760000px;}
.ybc{bottom:443.638956px;}
.y6a{bottom:448.320000px;}
.y211{bottom:448.348356px;}
.y105{bottom:448.680000px;}
.y3b{bottom:448.770000px;}
.y193{bottom:449.040000px;}
.y1c0{bottom:449.961288px;}
.y252{bottom:451.200000px;}
.y91{bottom:452.280000px;}
.y17a{bottom:453.000000px;}
.yf1{bottom:453.720000px;}
.y26e{bottom:454.440000px;}
.y2d0{bottom:455.520000px;}
.y2a9{bottom:457.320000px;}
.y12a{bottom:458.400000px;}
.y145{bottom:459.480000px;}
.y226{bottom:461.640000px;}
.y282{bottom:466.680000px;}
.y104{bottom:469.560000px;}
.y3a{bottom:469.650000px;}
.y192{bottom:469.920000px;}
.ybb{bottom:470.638884px;}
.y1ed{bottom:471.093936px;}
.y205{bottom:471.735000px;}
.y251{bottom:472.080000px;}
.y90{bottom:473.160000px;}
.y179{bottom:473.880000px;}
.yf0{bottom:474.240000px;}
.y26d{bottom:475.320000px;}
.y289{bottom:476.040000px;}
.y2cf{bottom:476.400000px;}
.y2a8{bottom:478.200000px;}
.y129{bottom:479.280000px;}
.y144{bottom:481.080000px;}
.y225{bottom:482.520000px;}
.y1c1{bottom:484.881576px;}
.y281{bottom:487.560000px;}
.y69{bottom:490.080000px;}
.y39{bottom:490.530000px;}
.y191{bottom:490.800000px;}
.y250{bottom:492.960000px;}
.y1ca{bottom:493.578000px;}
.y8f{bottom:494.040000px;}
.y178{bottom:494.760000px;}
.yef{bottom:495.120000px;}
.y2ef{bottom:495.840000px;}
.y288{bottom:496.920000px;}
.yba{bottom:498.359172px;}
.y2a7{bottom:499.080000px;}
.yd{bottom:502.864502px;}
.y143{bottom:503.040000px;}
.y280{bottom:508.440000px;}
.y103{bottom:510.960000px;}
.y38{bottom:511.410000px;}
.y190{bottom:511.680000px;}
.y1ee{bottom:513.573576px;}
.y24f{bottom:513.840000px;}
.y8e{bottom:514.920000px;}
.y235{bottom:515.640000px;}
.yee{bottom:516.000000px;}
.y26c{bottom:516.360000px;}
.y203{bottom:516.720000px;}
.y287{bottom:517.800000px;}
.y128{bottom:518.520000px;}
.y1c2{bottom:519.801864px;}
.y2a6{bottom:519.960000px;}
.yc{bottom:520.864502px;}
.y224{bottom:523.920000px;}
.y142{bottom:524.640000px;}
.yb9{bottom:525.359100px;}
.y68{bottom:531.840000px;}
.y37{bottom:531.930000px;}
.y18f{bottom:532.200000px;}
.y1a9{bottom:533.640000px;}
.y24e{bottom:534.720000px;}
.ydc{bottom:535.080000px;}
.y8d{bottom:535.440000px;}
.y177{bottom:536.160000px;}
.yed{bottom:536.880000px;}
.y2ee{bottom:537.240000px;}
.y202{bottom:538.320000px;}
.y286{bottom:538.680000px;}
.yb{bottom:538.864499px;}
.y127{bottom:539.400000px;}
.y1e7{bottom:540.177000px;}
.y141{bottom:543.172500px;}
.y223{bottom:544.800000px;}
.y27f{bottom:551.280000px;}
.y67{bottom:552.360000px;}
.y36{bottom:552.810000px;}
.yb8{bottom:553.079388px;}
.y18e{bottom:553.080000px;}
.y1c3{bottom:554.722152px;}
.y24d{bottom:555.240000px;}
.ydb{bottom:555.600000px;}
.y8c{bottom:556.320000px;}
.ya{bottom:556.864499px;}
.y176{bottom:557.040000px;}
.y26b{bottom:558.120000px;}
.y285{bottom:559.200000px;}
.y2a5{bottom:561.360000px;}
.y222{bottom:565.680000px;}
.y1cf{bottom:568.401000px;}
.y27e{bottom:572.160000px;}
.y66{bottom:573.240000px;}
.y102{bottom:573.600000px;}
.y35{bottom:573.690000px;}
.y1a8{bottom:575.760000px;}
.y1cb{bottom:576.120000px;}
.yda{bottom:576.480000px;}
.y175{bottom:577.920000px;}
.y2ed{bottom:578.106996px;}
.yec{bottom:578.280000px;}
.y26a{bottom:579.360000px;}
.y2ce{bottom:579.720000px;}
.yb7{bottom:580.079316px;}
.y201{bottom:580.080000px;}
.y53{bottom:581.906832px;}
.y2a4{bottom:582.240000px;}
.y1ce{bottom:582.441000px;}
.y221{bottom:586.560000px;}
.y1e5{bottom:588.720000px;}
.y140{bottom:589.800000px;}
.y1c4{bottom:590.001864px;}
.y27d{bottom:593.040000px;}
.y18d{bottom:593.947500px;}
.y65{bottom:594.120000px;}
.y34{bottom:594.570000px;}
.y2ec{bottom:595.747500px;}
.y1cd{bottom:596.121000px;}
.y2eb{bottom:596.276352px;}
.y1a7{bottom:596.280000px;}
.y24c{bottom:597.000000px;}
.yd9{bottom:597.360000px;}
.y8b{bottom:598.080000px;}
.y52{bottom:598.794360px;}
.y174{bottom:598.800000px;}
.yeb{bottom:599.160000px;}
.y269{bottom:600.240000px;}
.y2cd{bottom:600.600000px;}
.y200{bottom:600.960000px;}
.y126{bottom:602.587500px;}
.y2a3{bottom:603.120000px;}
.y220{bottom:607.080000px;}
.yb6{bottom:608.159784px;}
.y1e4{bottom:609.960000px;}
.y1cc{bottom:610.161000px;}
.y18c{bottom:612.480000px;}
.y2e9{bottom:613.027500px;}
.y2ea{bottom:613.557000px;}
.y64{bottom:615.000000px;}
.y33{bottom:615.450000px;}
.y51{bottom:616.075008px;}
.y1a6{bottom:617.160000px;}
.y24b{bottom:617.880000px;}
.yd8{bottom:618.240000px;}
.y8a{bottom:618.960000px;}
.y173{bottom:619.680000px;}
.yea{bottom:620.040000px;}
.y2cc{bottom:621.120000px;}
.y1ff{bottom:621.840000px;}
.y2b3{bottom:624.000000px;}
.y1c5{bottom:624.561792px;}
.y134{bottom:628.816716px;}
.y13f{bottom:631.560000px;}
.y50{bottom:632.994288px;}
.y18b{bottom:634.080000px;}
.yb5{bottom:635.159712px;}
.y27c{bottom:635.880000px;}
.y32{bottom:635.970000px;}
.y1a5{bottom:638.040000px;}
.y89{bottom:639.480000px;}
.y12d{bottom:639.976500px;}
.ye9{bottom:640.920000px;}
.y268{bottom:641.640000px;}
.y1fe{bottom:642.720000px;}
.y2a2{bottom:644.880000px;}
.y9{bottom:645.510000px;}
.y4f{bottom:650.274936px;}
.y21f{bottom:651.000000px;}
.y1e3{bottom:652.080000px;}
.y13e{bottom:652.440000px;}
.y63{bottom:653.880000px;}
.y18a{bottom:655.680000px;}
.y101{bottom:655.867188px;}
.y27b{bottom:656.760000px;}
.y31{bottom:656.850000px;}
.y1a4{bottom:658.920000px;}
.y24a{bottom:659.280000px;}
.yd7{bottom:659.640000px;}
.y1c6{bottom:659.841504px;}
.y88{bottom:660.360000px;}
.y172{bottom:661.080000px;}
.y2e8{bottom:661.440000px;}
.ye8{bottom:661.800000px;}
.y2cb{bottom:662.520000px;}
.yb4{bottom:662.880000px;}
.y1fd{bottom:663.240000px;}
.y267{bottom:664.320000px;}
.y2a1{bottom:665.400000px;}
.y8{bottom:666.771000px;}
.y4e{bottom:667.555584px;}
.y13d{bottom:672.427500px;}
.y21e{bottom:672.600000px;}
.y1e2{bottom:672.960000px;}
.y100{bottom:674.400000px;}
.y189{bottom:677.280000px;}
.y1a3{bottom:679.800000px;}
.y249{bottom:680.160000px;}
.yd6{bottom:680.520000px;}
.y87{bottom:681.240000px;}
.y171{bottom:681.960000px;}
.ye7{bottom:682.320000px;}
.y2ca{bottom:683.400000px;}
.y1fc{bottom:684.120000px;}
.y4d{bottom:684.836232px;}
.y266{bottom:685.200000px;}
.y2a0{bottom:686.280000px;}
.y12e{bottom:686.416536px;}
.y2e7{bottom:691.320000px;}
.y1e1{bottom:693.480000px;}
.y1c7{bottom:694.761792px;}
.y30{bottom:695.532000px;}
.y21d{bottom:695.640000px;}
.y188{bottom:698.880000px;}
.y27a{bottom:699.600000px;}
.y62{bottom:700.320000px;}
.y248{bottom:701.040000px;}
.yd5{bottom:701.400000px;}
.y4c{bottom:702.510360px;}
.y170{bottom:702.840000px;}
.ye6{bottom:703.200000px;}
.y2c9{bottom:703.920000px;}
.y2b2{bottom:704.640000px;}
.y1fb{bottom:705.000000px;}
.y265{bottom:705.720000px;}
.yb2{bottom:705.907500px;}
.y11a{bottom:707.133492px;}
.y29f{bottom:707.160000px;}
.y1e0{bottom:714.360000px;}
.y21c{bottom:719.040000px;}
.y86{bottom:720.480000px;}
.y61{bottom:721.200000px;}
.y160{bottom:721.359576px;}
.y119{bottom:721.698840px;}
.y247{bottom:721.920000px;}
.yd4{bottom:722.280000px;}
.y16f{bottom:723.720000px;}
.yb1{bottom:724.080000px;}
.y2c8{bottom:724.800000px;}
.y284{bottom:725.880000px;}
.y7{bottom:726.298500px;}
.y264{bottom:726.600000px;}
.y4b{bottom:728.034432px;}
.y29e{bottom:728.040000px;}
.y1c8{bottom:729.682080px;}
.y12f{bottom:732.856572px;}
.y10e{bottom:733.576500px;}
.y157{bottom:733.599000px;}
.y1df{bottom:735.240000px;}
.y187{bottom:741.720000px;}
.y60{bottom:742.080000px;}
.y21b{bottom:742.440000px;}
.y246{bottom:742.800000px;}
.yd3{bottom:743.160000px;}
.y16e{bottom:744.240000px;}
.y2c7{bottom:745.320000px;}
.y283{bottom:746.760000px;}
.y4{bottom:752.599495px;}
.y1de{bottom:756.120000px;}
.y85{bottom:759.720000px;}
.y10f{bottom:762.016644px;}
.y5f{bottom:762.960000px;}
.y4a{bottom:763.313928px;}
.y186{bottom:763.320000px;}
.y21a{bottom:764.400000px;}
.y1c9{bottom:764.602368px;}
.y16d{bottom:765.120000px;}
.y2f{bottom:765.622500px;}
.ye5{bottom:765.840000px;}
.y2c6{bottom:766.200000px;}
.yb0{bottom:767.280000px;}
.y139{bottom:767.611044px;}
.y263{bottom:768.000000px;}
.y29d{bottom:769.440000px;}
.y158{bottom:771.759288px;}
.y13b{bottom:773.536500px;}
.y138{bottom:777.330936px;}
.y130{bottom:779.656788px;}
.y2e6{bottom:780.600000px;}
.y84{bottom:780.960000px;}
.y1a2{bottom:783.840000px;}
.y245{bottom:784.200000px;}
.yd2{bottom:784.560000px;}
.y185{bottom:784.920000px;}
.y13a{bottom:785.056500px;}
.y219{bottom:785.640000px;}
.y16c{bottom:786.000000px;}
.y137{bottom:786.331296px;}
.ye4{bottom:786.360000px;}
.y2c5{bottom:786.720000px;}
.yaf{bottom:788.160000px;}
.y262{bottom:788.880000px;}
.y49{bottom:789.957000px;}
.y29c{bottom:790.320000px;}
.y110{bottom:790.456788px;}
.y136{bottom:796.051188px;}
.y1be{bottom:797.247000px;}
.y1dd{bottom:797.520000px;}
.y2e5{bottom:801.480000px;}
.y2e{bottom:802.210092px;}
.y5e{bottom:804.360000px;}
.y244{bottom:805.080000px;}
.y135{bottom:805.410900px;}
.yd1{bottom:805.440000px;}
.y184{bottom:806.520000px;}
.y1fa{bottom:806.880000px;}
.ye3{bottom:807.240000px;}
.y2c4{bottom:807.600000px;}
.yae{bottom:809.040000px;}
.y159{bottom:809.559288px;}
.y261{bottom:809.760000px;}
.y29b{bottom:811.200000px;}
.y48{bottom:815.872488px;}
.y1dc{bottom:818.400000px;}
.y111{bottom:819.257112px;}
.y5d{bottom:825.240000px;}
.y243{bottom:825.960000px;}
.y131{bottom:826.096824px;}
.yd0{bottom:826.320000px;}
.y83{bottom:827.760000px;}
.ye2{bottom:828.120000px;}
.y218{bottom:829.560000px;}
.yad{bottom:829.920000px;}
.y260{bottom:830.640000px;}
.y2e4{bottom:831.360000px;}
.y29a{bottom:832.080000px;}
.y125{bottom:838.696500px;}
.y1db{bottom:839.280000px;}
.y47{bottom:842.515440px;}
.y1a1{bottom:846.120000px;}
.y242{bottom:846.840000px;}
.y16b{bottom:846.999000px;}
.ycf{bottom:847.200000px;}
.y15a{bottom:847.359288px;}
.y112{bottom:847.697256px;}
.y82{bottom:848.280000px;}
.ye1{bottom:849.000000px;}
.y2c3{bottom:850.440000px;}
.yac{bottom:850.800000px;}
.y124{bottom:850.936500px;}
.y25f{bottom:851.520000px;}
.y299{bottom:852.960000px;}
.y16a{bottom:859.599000px;}
.y46{bottom:859.796088px;}
.y1da{bottom:860.160000px;}
.y2e3{bottom:860.880000px;}
.y123{bottom:861.960000px;}
.y11b{bottom:863.040000px;}
.y122{bottom:863.536500px;}
.y5c{bottom:867.000000px;}
.y241{bottom:867.360000px;}
.yce{bottom:868.080000px;}
.y2d{bottom:868.683228px;}
.y279{bottom:868.800000px;}
.y81{bottom:869.160000px;}
.ye0{bottom:869.880000px;}
.y169{bottom:870.600000px;}
.yab{bottom:871.320000px;}
.y25e{bottom:872.040000px;}
.y168{bottom:872.199000px;}
.y132{bottom:872.897040px;}
.y161{bottom:873.120000px;}
.y298{bottom:873.480000px;}
.y120{bottom:874.200000px;}
.y11f{bottom:875.776500px;}
.y113{bottom:876.137400px;}
.y45{bottom:876.717000px;}
.y3{bottom:879.369000px;}
.y1d9{bottom:881.040000px;}
.y166{bottom:883.200000px;}
.y165{bottom:884.799000px;}
.y15b{bottom:885.159288px;}
.y1a0{bottom:887.880000px;}
.y11e{bottom:888.016500px;}
.y240{bottom:888.240000px;}
.ycd{bottom:888.600000px;}
.y278{bottom:889.680000px;}
.y80{bottom:890.040000px;}
.ydf{bottom:890.400000px;}
.y2e2{bottom:890.760000px;}
.y183{bottom:891.840000px;}
.yaa{bottom:892.200000px;}
.y25d{bottom:892.920000px;}
.y297{bottom:894.360000px;}
.y164{bottom:897.399000px;}
.y11d{bottom:900.616500px;}
.y44{bottom:902.633928px;}
.y114{bottom:904.937724px;}
.y5b{bottom:908.400000px;}
.y23f{bottom:909.120000px;}
.y277{bottom:910.200000px;}
.y163{bottom:910.359000px;}
.y7f{bottom:910.920000px;}
.yde{bottom:911.280000px;}
.y2c2{bottom:912.720000px;}
.y11c{bottom:912.856500px;}
.ya9{bottom:913.080000px;}
.y2c{bottom:915.121500px;}
.y296{bottom:915.240000px;}
.y133{bottom:919.337076px;}
.y2e1{bottom:920.640000px;}
.y1d8{bottom:922.800000px;}
.y162{bottom:922.959000px;}
.y15c{bottom:923.319576px;}
.y43{bottom:929.277000px;}
.y23e{bottom:930.000000px;}
.ycc{bottom:930.360000px;}
.y7e{bottom:931.800000px;}
.y2c1{bottom:933.240000px;}
.y115{bottom:933.377868px;}
.ya8{bottom:933.960000px;}
.y2e0{bottom:941.520000px;}
.y1d7{bottom:944.400000px;}
.y2{bottom:945.126001px;}
.y12c{bottom:946.575000px;}
.y19f{bottom:947.280000px;}
.y5a{bottom:950.160000px;}
.y23d{bottom:950.880000px;}
.ycb{bottom:951.240000px;}
.y7d{bottom:952.320000px;}
.y276{bottom:953.400000px;}
.y2c0{bottom:954.120000px;}
.y295{bottom:954.480000px;}
.ya7{bottom:954.840000px;}
.y42{bottom:955.193784px;}
.y15d{bottom:961.119576px;}
.y116{bottom:961.818012px;}
.y1d6{bottom:966.000000px;}
.y1{bottom:966.726000px;}
.y2df{bottom:971.400000px;}
.yca{bottom:972.120000px;}
.y7c{bottom:973.200000px;}
.y275{bottom:974.280000px;}
.ya6{bottom:975.360000px;}
.y1d5{bottom:987.600000px;}
.y117{bottom:990.258156px;}
.y41{bottom:990.473280px;}
.y59{bottom:991.920000px;}
.y23c{bottom:992.280000px;}
.yc9{bottom:992.640000px;}
.y2bf{bottom:993.720000px;}
.ya0{bottom:994.080000px;}
.y274{bottom:994.800000px;}
.ydd{bottom:996.240000px;}
.y15e{bottom:999.279864px;}
.y1d4{bottom:1009.560000px;}
.y58{bottom:1012.440000px;}
.y23b{bottom:1013.160000px;}
.yc8{bottom:1013.520000px;}
.y7b{bottom:1014.960000px;}
.y25c{bottom:1016.760000px;}
.y40{bottom:1017.116232px;}
.ya5{bottom:1017.120000px;}
.y118{bottom:1019.058480px;}
.y2b{bottom:1024.310844px;}
.y1d3{bottom:1032.600000px;}
.y57{bottom:1033.320000px;}
.y23a{bottom:1034.040000px;}
.y3f{bottom:1034.397000px;}
.yc7{bottom:1034.400000px;}
.y2de{bottom:1035.120000px;}
.y7a{bottom:1035.840000px;}
.y15f{bottom:1037.079864px;}
.y25b{bottom:1037.640000px;}
.ya4{bottom:1038.000000px;}
.y10d{bottom:1047.763500px;}
.y3e{bottom:1051.677000px;}
.y1d2{bottom:1053.840000px;}
.y56{bottom:1054.200000px;}
.y239{bottom:1054.920000px;}
.yc6{bottom:1055.280000px;}
.y79{bottom:1056.360000px;}
.y25a{bottom:1058.160000px;}
.ya3{bottom:1058.880000px;}
.y155{bottom:1065.360000px;}
.y154{bottom:1067.635500px;}
.y1d1{bottom:1075.440000px;}
.y78{bottom:1077.240000px;}
.y3d{bottom:1077.594000px;}
.y2dd{bottom:1077.600000px;}
.y259{bottom:1079.040000px;}
.ya2{bottom:1079.400000px;}
.y55{bottom:1093.080000px;}
.y2a{bottom:1095.232500px;}
.y238{bottom:1096.320000px;}
.y1d0{bottom:1097.760000px;}
.y77{bottom:1098.120000px;}
.y2dc{bottom:1098.480000px;}
.ya1{bottom:1118.280000px;}
.y13c{bottom:1118.640000px;}
.y76{bottom:1119.000000px;}
.h27{height:8.640000px;}
.h1b{height:9.360000px;}
.h21{height:9.720000px;}
.h28{height:10.800000px;}
.h1f{height:13.680000px;}
.h29{height:27.033750px;}
.h24{height:31.539375px;}
.h25{height:31.540984px;}
.h7{height:32.130000px;}
.h1a{height:34.543125px;}
.h20{height:36.045000px;}
.h23{height:39.045685px;}
.h1c{height:39.048750px;}
.h19{height:42.052500px;}
.h14{height:43.554375px;}
.h6{height:45.900000px;}
.h22{height:46.558125px;}
.h3{height:48.195000px;}
.h1e{height:49.561875px;}
.h2{height:55.080000px;}
.h26{height:56.160000px;}
.hf{height:59.328281px;}
.h10{height:59.357813px;}
.h11{height:59.370484px;}
.he{height:60.929812px;}
.hd{height:60.952500px;}
.h13{height:63.078750px;}
.h2c{height:64.488526px;}
.h16{height:69.086250px;}
.h15{height:70.630167px;}
.hc{height:75.093750px;}
.h2a{height:75.348750px;}
.h17{height:75.741750px;}
.h2b{height:76.533750px;}
.h8{height:76.771807px;}
.h5{height:78.030000px;}
.h12{height:81.108750px;}
.h18{height:81.336750px;}
.h1d{height:87.108750px;}
.h4{height:119.055004px;}
.hb{height:124.655625px;}
.h2d{height:158.613750px;}
.ha{height:162.202500px;}
.h9{height:175.719375px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:14.760000px;}
.w6{width:73.080000px;}
.w4{width:73.800000px;}
.w8{width:98.640000px;}
.w9{width:217.440000px;}
.w5{width:273.600000px;}
.w2{width:637.794021px;}
.w3{width:892.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6f{left:9.057000px;}
.x28{left:20.161500px;}
.x35{left:42.477000px;}
.x72{left:45.006000px;}
.x29{left:48.604500px;}
.x74{left:68.049000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x37{left:140.748000px;}
.x78{left:144.724500px;}
.x5{left:149.040000px;}
.x81{left:153.720000px;}
.x1e{left:157.320000px;}
.x6e{left:159.120000px;}
.x2d{left:161.280540px;}
.x84{left:162.360000px;}
.x6{left:164.520000px;}
.xc{left:167.040000px;}
.x6d{left:168.177000px;}
.x1a{left:169.560000px;}
.x1c{left:172.798488px;}
.x24{left:175.680072px;}
.x1b{left:178.199100px;}
.x7a{left:179.640144px;}
.x23{left:180.720108px;}
.xf{left:185.040000px;}
.x5b{left:186.465000px;}
.x40{left:188.382000px;}
.x22{left:190.440000px;}
.x14{left:191.880000px;}
.x82{left:196.200000px;}
.x88{left:201.600000px;}
.x4{left:203.484001px;}
.x7b{left:206.280072px;}
.x2c{left:208.800288px;}
.x10{left:212.040000px;}
.xd{left:213.120000px;}
.x12{left:215.280000px;}
.xe{left:216.360000px;}
.x5c{left:218.866037px;}
.x8{left:219.960000px;}
.x9{left:226.441296px;}
.x83{left:228.600000px;}
.x32{left:231.480000px;}
.x13{left:234.000000px;}
.x41{left:235.896593px;}
.x57{left:237.240000px;}
.x5d{left:250.907822px;}
.x19{left:252.000000px;}
.x7d{left:264.960000px;}
.x42{left:267.572988px;}
.x1d{left:273.960000px;}
.x17{left:275.040000px;}
.x30{left:277.200000px;}
.xb{left:279.720000px;}
.x43{left:283.411186px;}
.x85{left:289.080000px;}
.xa{left:290.519424px;}
.x21{left:292.320000px;}
.x44{left:299.249383px;}
.x45{left:314.727562px;}
.x87{left:319.320000px;}
.x34{left:326.520000px;}
.x33{left:328.320000px;}
.x46{left:330.565759px;}
.x47{left:346.403957px;}
.x77{left:348.840000px;}
.x76{left:350.640000px;}
.x48{left:362.242154px;}
.x5e{left:363.592949px;}
.x86{left:368.280000px;}
.x36{left:376.195500px;}
.x49{left:378.080352px;}
.x5f{left:379.793467px;}
.x5a{left:389.520000px;}
.x4a{left:393.918550px;}
.x60{left:395.634734px;}
.x89{left:397.800000px;}
.x4b{left:409.756747px;}
.x61{left:411.835253px;}
.x3f{left:417.240000px;}
.x2b{left:425.520000px;}
.x7{left:426.961296px;}
.x18{left:438.480000px;}
.x58{left:439.560000px;}
.x25{left:441.359604px;}
.x62{left:443.877038px;}
.x3{left:454.959000px;}
.x4c{left:457.271340px;}
.x3c{left:459.360000px;}
.x3e{left:467.280000px;}
.x4d{left:472.749518px;}
.x38{left:474.828000px;}
.x63{left:475.918824px;}
.x4e{left:488.587716px;}
.x64{left:492.119342px;}
.x7e{left:493.200000px;}
.x79{left:497.524500px;}
.x4f{left:504.425914px;}
.x7f{left:505.440000px;}
.x65{left:508.319861px;}
.x50{left:520.264111px;}
.x66{left:524.161128px;}
.x31{left:533.520000px;}
.x51{left:536.102309px;}
.x67{left:540.361646px;}
.x52{left:551.940506px;}
.x68{left:556.562165px;}
.x53{left:567.778704px;}
.x69{left:572.403432px;}
.x54{left:583.616902px;}
.x59{left:585.000000px;}
.x6a{left:588.603950px;}
.x55{left:599.455099px;}
.x6b{left:604.804469px;}
.x15{left:612.720000px;}
.x3d{left:615.600000px;}
.x6c{left:620.645736px;}
.x80{left:639.360000px;}
.x1f{left:641.160000px;}
.x16{left:642.960000px;}
.x71{left:666.360000px;}
.x56{left:668.880000px;}
.x7c{left:670.320000px;}
.x70{left:674.280000px;}
.x3a{left:698.400000px;}
.x39{left:707.400000px;}
.x27{left:708.480000px;}
.x73{left:716.046000px;}
.x26{left:717.120000px;}
.x20{left:724.320000px;}
.x75{left:739.090500px;}
.x2e{left:749.520000px;}
.x3b{left:751.324500px;}
.x2a{left:761.764500px;}
.x2f{left:766.800000px;}
.x11{left:776.520000px;}
@media print{
.v4{vertical-align:-16.026667pt;}
.v9{vertical-align:-10.906667pt;}
.v7{vertical-align:-9.626667pt;}
.v6{vertical-align:-6.400000pt;}
.v8{vertical-align:-5.120000pt;}
.v2{vertical-align:-1.397333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.397333pt;}
.v5{vertical-align:9.626667pt;}
.v3{vertical-align:16.026667pt;}
.vb{vertical-align:31.360000pt;}
.va{vertical-align:74.240000pt;}
.ls3f{letter-spacing:-1.863680pt;}
.ls3d{letter-spacing:-1.190400pt;}
.ls11{letter-spacing:-1.056000pt;}
.ls34{letter-spacing:-1.000960pt;}
.ls3e{letter-spacing:-0.832000pt;}
.ls49{letter-spacing:-0.654302pt;}
.ls4d{letter-spacing:-0.576000pt;}
.ls40{letter-spacing:-0.565716pt;}
.ls37{letter-spacing:-0.464640pt;}
.ls52{letter-spacing:-0.439692pt;}
.lsf{letter-spacing:-0.430080pt;}
.ls4c{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.299520pt;}
.ls36{letter-spacing:-0.296960pt;}
.ls2a{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.212480pt;}
.ls16{letter-spacing:-0.211200pt;}
.ls4e{letter-spacing:-0.192000pt;}
.ls38{letter-spacing:-0.184320pt;}
.ls25{letter-spacing:-0.148480pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.126720pt;}
.ls26{letter-spacing:-0.111360pt;}
.ls41{letter-spacing:-0.066560pt;}
.ls3a{letter-spacing:-0.064000pt;}
.ls35{letter-spacing:-0.058880pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.017920pt;}
.ls1a{letter-spacing:0.042240pt;}
.ls21{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.084480pt;}
.ls29{letter-spacing:0.128000pt;}
.ls51{letter-spacing:0.130860pt;}
.ls5{letter-spacing:0.149760pt;}
.ls15{letter-spacing:0.168960pt;}
.ls4a{letter-spacing:0.184320pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.196290pt;}
.lse{letter-spacing:0.211200pt;}
.ls2f{letter-spacing:0.235520pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.261721pt;}
.ls2b{letter-spacing:0.264960pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.327151pt;}
.ls45{letter-spacing:0.349440pt;}
.ls3c{letter-spacing:0.384000pt;}
.ls3b{letter-spacing:0.392581pt;}
.ls44{letter-spacing:0.403221pt;}
.ls28{letter-spacing:0.412160pt;}
.ls27{letter-spacing:0.421371pt;}
.ls39{letter-spacing:0.430080pt;}
.ls2e{letter-spacing:0.441600pt;}
.ls23{letter-spacing:0.445440pt;}
.ls22{letter-spacing:0.448000pt;}
.ls4f{letter-spacing:0.458011pt;}
.lsc{letter-spacing:0.483840pt;}
.ls32{letter-spacing:0.500480pt;}
.ls33{letter-spacing:0.512000pt;}
.ls50{letter-spacing:0.523441pt;}
.ls2d{letter-spacing:0.537600pt;}
.ls20{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.645120pt;}
.ls31{letter-spacing:0.765440pt;}
.lsd{letter-spacing:0.829440pt;}
.ls9{letter-spacing:0.865280pt;}
.ls14{letter-spacing:0.929280pt;}
.ls13{letter-spacing:0.971520pt;}
.ls17{letter-spacing:1.056000pt;}
.ls30{letter-spacing:1.207040pt;}
.ls18{letter-spacing:1.520640pt;}
.ls2c{letter-spacing:1.560320pt;}
.ls42{letter-spacing:1.693440pt;}
.ls48{letter-spacing:3.824640pt;}
.ls43{letter-spacing:3.971840pt;}
.ls47{letter-spacing:4.526080pt;}
.lsb{letter-spacing:10.859520pt;}
.ls46{letter-spacing:14.208000pt;}
.ls1f{letter-spacing:73.088000pt;}
.ls10{letter-spacing:80.640000pt;}
.ls12{letter-spacing:81.930240pt;}
.ls24{letter-spacing:103.808000pt;}
.ls4b{letter-spacing:369.469440pt;}
.ls53{letter-spacing:770.688000pt;}
.ws1d{word-spacing:-24.299520pt;}
.ws6b{word-spacing:-18.451304pt;}
.ws6a{word-spacing:-18.385873pt;}
.ws41{word-spacing:-18.368000pt;}
.ws7f{word-spacing:-18.304000pt;}
.ws86{word-spacing:-18.240000pt;}
.wsb2{word-spacing:-18.112000pt;}
.ws52{word-spacing:-18.048000pt;}
.wsc6{word-spacing:-17.984000pt;}
.ws73{word-spacing:-17.920000pt;}
.wsee{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.664000pt;}
.wsc4{word-spacing:-17.216000pt;}
.ws5a{word-spacing:-16.000000pt;}
.ws42{word-spacing:-14.945280pt;}
.wsf0{word-spacing:-14.839607pt;}
.wsc9{word-spacing:-14.515200pt;}
.ws17{word-spacing:-14.085120pt;}
.ws1a{word-spacing:-13.440000pt;}
.ws8a{word-spacing:-12.798720pt;}
.ws20{word-spacing:-10.771200pt;}
.ws1b{word-spacing:-10.644480pt;}
.ws18{word-spacing:-10.560000pt;}
.ws22{word-spacing:-10.433280pt;}
.ws1c{word-spacing:-10.348800pt;}
.ws59{word-spacing:-10.208000pt;}
.ws79{word-spacing:-9.744640pt;}
.ws77{word-spacing:-9.391360pt;}
.ws8d{word-spacing:-8.970240pt;}
.ws78{word-spacing:-8.949760pt;}
.ws76{word-spacing:-8.625920pt;}
.ws74{word-spacing:-8.449280pt;}
.wsa9{word-spacing:-8.419840pt;}
.ws8c{word-spacing:-8.110080pt;}
.wsaa{word-spacing:-7.388160pt;}
.wsb9{word-spacing:-2.784000pt;}
.wsc3{word-spacing:-2.557440pt;}
.wsc1{word-spacing:-2.263040pt;}
.ws24{word-spacing:-1.666560pt;}
.wsad{word-spacing:-1.600000pt;}
.wsd6{word-spacing:-1.536000pt;}
.wsbb{word-spacing:-1.478400pt;}
.wsab{word-spacing:-1.408000pt;}
.ws28{word-spacing:-1.393920pt;}
.ws49{word-spacing:-1.344000pt;}
.ws23{word-spacing:-1.309440pt;}
.ws2e{word-spacing:-1.290240pt;}
.ws25{word-spacing:-1.267200pt;}
.wsc2{word-spacing:-0.965120pt;}
.wsae{word-spacing:-0.860160pt;}
.ws21{word-spacing:-0.765440pt;}
.ws2c{word-spacing:-0.549120pt;}
.ws27{word-spacing:-0.506880pt;}
.wse1{word-spacing:-0.392581pt;}
.wsde{word-spacing:-0.327151pt;}
.ws62{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.261721pt;}
.ws7c{word-spacing:-0.250880pt;}
.wsba{word-spacing:-0.215040pt;}
.ws5{word-spacing:-0.196290pt;}
.ws16{word-spacing:-0.193536pt;}
.ws82{word-spacing:-0.192000pt;}
.wsce{word-spacing:-0.161280pt;}
.ws3c{word-spacing:-0.130860pt;}
.wse{word-spacing:-0.128000pt;}
.ws63{word-spacing:-0.120392pt;}
.ws64{word-spacing:-0.117760pt;}
.ws33{word-spacing:-0.065430pt;}
.ws15{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.053760pt;}
.wsa6{word-spacing:0.064000pt;}
.wsa{word-spacing:0.106240pt;}
.ws2b{word-spacing:0.126720pt;}
.ws35{word-spacing:0.128000pt;}
.ws2a{word-spacing:0.161280pt;}
.ws95{word-spacing:0.192000pt;}
.ws5b{word-spacing:0.256000pt;}
.ws7e{word-spacing:0.264960pt;}
.wsd9{word-spacing:0.320000pt;}
.ws6c{word-spacing:0.384000pt;}
.wsb0{word-spacing:0.396800pt;}
.ws83{word-spacing:0.430080pt;}
.wsca{word-spacing:0.448000pt;}
.ws7d{word-spacing:0.500480pt;}
.ws2d{word-spacing:0.645120pt;}
.wscd{word-spacing:0.704000pt;}
.wsbe{word-spacing:0.785162pt;}
.ws51{word-spacing:0.860160pt;}
.ws9{word-spacing:0.898560pt;}
.ws1e{word-spacing:0.988160pt;}
.ws26{word-spacing:1.075200pt;}
.ws7{word-spacing:1.112313pt;}
.ws47{word-spacing:1.152000pt;}
.ws90{word-spacing:1.182720pt;}
.ws34{word-spacing:1.216000pt;}
.ws4d{word-spacing:1.280000pt;}
.ws61{word-spacing:1.344000pt;}
.wsa5{word-spacing:1.408000pt;}
.ws8f{word-spacing:1.520640pt;}
.wsb1{word-spacing:1.564160pt;}
.ws4f{word-spacing:2.150400pt;}
.wsdb{word-spacing:2.368000pt;}
.wsb{word-spacing:2.432000pt;}
.ws14{word-spacing:2.496000pt;}
.ws3b{word-spacing:2.551776pt;}
.wsa2{word-spacing:2.560000pt;}
.ws4e{word-spacing:3.386880pt;}
.ws48{word-spacing:3.648000pt;}
.ws4b{word-spacing:3.712000pt;}
.wsc{word-spacing:3.776000pt;}
.ws9d{word-spacing:3.840000pt;}
.wsb5{word-spacing:3.904000pt;}
.wse5{word-spacing:3.968000pt;}
.ws19{word-spacing:4.573440pt;}
.ws7b{word-spacing:4.677120pt;}
.ws6{word-spacing:4.972692pt;}
.wsf{word-spacing:4.992000pt;}
.ws32{word-spacing:5.056000pt;}
.ws3e{word-spacing:5.103552pt;}
.ws9b{word-spacing:5.120000pt;}
.ws45{word-spacing:5.168982pt;}
.wsd3{word-spacing:5.248000pt;}
.ws7a{word-spacing:5.967360pt;}
.wsdd{word-spacing:6.208000pt;}
.ws11{word-spacing:6.272000pt;}
.ws10{word-spacing:6.336000pt;}
.ws96{word-spacing:6.400000pt;}
.wse6{word-spacing:6.528000pt;}
.wsf3{word-spacing:7.257600pt;}
.wsf2{word-spacing:7.419803pt;}
.ws12{word-spacing:7.552000pt;}
.ws38{word-spacing:7.616000pt;}
.ws3{word-spacing:7.655328pt;}
.ws6e{word-spacing:7.680000pt;}
.ws3f{word-spacing:7.786188pt;}
.ws8e{word-spacing:7.936000pt;}
.wscf{word-spacing:8.547840pt;}
.ws72{word-spacing:8.832000pt;}
.ws66{word-spacing:8.896000pt;}
.ws4{word-spacing:8.898501pt;}
.ws9e{word-spacing:8.960000pt;}
.wsd5{word-spacing:9.088000pt;}
.ws3a{word-spacing:9.094791pt;}
.wsd1{word-spacing:9.784320pt;}
.ws39{word-spacing:10.112000pt;}
.ws4a{word-spacing:10.176000pt;}
.wsa4{word-spacing:10.240000pt;}
.wse4{word-spacing:10.304000pt;}
.wsa7{word-spacing:10.432000pt;}
.ws5d{word-spacing:11.392000pt;}
.ws31{word-spacing:11.456000pt;}
.ws9a{word-spacing:11.520000pt;}
.wse3{word-spacing:11.648000pt;}
.wsbf{word-spacing:12.480000pt;}
.ws94{word-spacing:12.608000pt;}
.ws70{word-spacing:12.672000pt;}
.ws5f{word-spacing:12.736000pt;}
.ws9c{word-spacing:12.800000pt;}
.wsd0{word-spacing:13.655040pt;}
.wsd7{word-spacing:13.888000pt;}
.ws81{word-spacing:13.952000pt;}
.ws5e{word-spacing:14.016000pt;}
.ws46{word-spacing:14.329204pt;}
.ws44{word-spacing:14.394634pt;}
.wsb8{word-spacing:15.104000pt;}
.wsc0{word-spacing:15.168000pt;}
.ws91{word-spacing:15.232000pt;}
.wsd{word-spacing:15.296000pt;}
.wsa1{word-spacing:15.360000pt;}
.wsdf{word-spacing:15.488000pt;}
.ws43{word-spacing:15.572377pt;}
.ws53{word-spacing:16.512000pt;}
.ws4c{word-spacing:16.576000pt;}
.wsf8{word-spacing:16.880980pt;}
.wsd8{word-spacing:17.149440pt;}
.wsf4{word-spacing:17.472000pt;}
.wsaf{word-spacing:17.792000pt;}
.wsb6{word-spacing:17.856000pt;}
.wsf5{word-spacing:17.862490pt;}
.wsf9{word-spacing:17.920000pt;}
.ws50{word-spacing:18.762240pt;}
.ws37{word-spacing:19.072000pt;}
.ws99{word-spacing:19.136000pt;}
.wsbd{word-spacing:19.200000pt;}
.wscc{word-spacing:19.328000pt;}
.ws2{word-spacing:19.432756pt;}
.wsb7{word-spacing:20.352000pt;}
.wsa8{word-spacing:20.416000pt;}
.ws69{word-spacing:20.480000pt;}
.wscb{word-spacing:21.568000pt;}
.ws80{word-spacing:21.632000pt;}
.ws6d{word-spacing:21.696000pt;}
.ws93{word-spacing:22.912000pt;}
.ws36{word-spacing:22.976000pt;}
.ws3d{word-spacing:23.489425pt;}
.wse0{word-spacing:24.192000pt;}
.ws13{word-spacing:24.256000pt;}
.wsa3{word-spacing:24.320000pt;}
.wsac{word-spacing:25.472000pt;}
.ws5c{word-spacing:25.536000pt;}
.wsd4{word-spacing:25.600000pt;}
.wsf6{word-spacing:26.688000pt;}
.ws65{word-spacing:26.752000pt;}
.wse7{word-spacing:26.816000pt;}
.ws9f{word-spacing:26.880000pt;}
.ws60{word-spacing:28.032000pt;}
.ws92{word-spacing:28.096000pt;}
.wsf7{word-spacing:28.723838pt;}
.wsd2{word-spacing:29.376000pt;}
.wse2{word-spacing:29.568000pt;}
.ws6f{word-spacing:30.592000pt;}
.ws67{word-spacing:30.656000pt;}
.ws68{word-spacing:31.936000pt;}
.ws40{word-spacing:32.649647pt;}
.ws71{word-spacing:33.216000pt;}
.ws75{word-spacing:36.358400pt;}
.wsda{word-spacing:39.616000pt;}
.wsf1{word-spacing:40.832000pt;}
.ws84{word-spacing:41.920000pt;}
.wsbc{word-spacing:67.852800pt;}
.ws1f{word-spacing:75.102720pt;}
.wsa0{word-spacing:75.328000pt;}
.ws30{word-spacing:75.456000pt;}
.ws2f{word-spacing:79.616000pt;}
.wsdc{word-spacing:79.744000pt;}
.ws98{word-spacing:83.200000pt;}
.ws97{word-spacing:84.352000pt;}
.ws8b{word-spacing:172.369920pt;}
.ws58{word-spacing:215.155200pt;}
.wsed{word-spacing:235.520000pt;}
.wsef{word-spacing:236.672000pt;}
.ws85{word-spacing:237.235200pt;}
.ws54{word-spacing:241.985280pt;}
.wse8{word-spacing:249.472000pt;}
.wseb{word-spacing:272.512000pt;}
.wsea{word-spacing:272.640000pt;}
.wsc8{word-spacing:388.643840pt;}
.wsec{word-spacing:392.384000pt;}
.wsc7{word-spacing:424.483840pt;}
.wse9{word-spacing:492.096000pt;}
.wsb4{word-spacing:499.328000pt;}
.wsb3{word-spacing:499.456000pt;}
.ws89{word-spacing:844.672000pt;}
.ws87{word-spacing:867.840000pt;}
.ws88{word-spacing:952.192000pt;}
.wsc5{word-spacing:968.896000pt;}
.ws55{word-spacing:2001.966976pt;}
.ws57{word-spacing:2008.462976pt;}
.ws56{word-spacing:2022.160256pt;}
._c{margin-left:-11.510016pt;}
._9{margin-left:-3.055990pt;}
._0{margin-left:-1.570324pt;}
._1{width:1.046882pt;}
._2{width:2.028335pt;}
._5{width:3.386688pt;}
._7{width:4.461548pt;}
._a{width:6.130996pt;}
._b{width:7.767505pt;}
._4{width:9.464635pt;}
._8{width:10.421031pt;}
._11{width:30.720000pt;}
._18{width:43.760798pt;}
._38{width:76.815360pt;}
._d{width:78.812160pt;}
._10{width:81.930240pt;}
._e{width:83.220480pt;}
._f{width:85.155840pt;}
._3{width:88.542720pt;}
._40{width:91.536786pt;}
._6{width:94.080000pt;}
._3f{width:95.528025pt;}
._13{width:97.920000pt;}
._27{width:101.184000pt;}
._41{width:109.922659pt;}
._12{width:113.979329pt;}
._1d{width:131.524962pt;}
._2a{width:136.960000pt;}
._1c{width:141.972638pt;}
._19{width:159.404642pt;}
._21{width:181.739520pt;}
._42{width:183.533765pt;}
._1a{width:191.065600pt;}
._1b{width:205.180318pt;}
._4d{width:235.520000pt;}
._4e{width:236.800000pt;}
._14{width:250.025275pt;}
._16{width:251.888955pt;}
._15{width:253.848635pt;}
._4b{width:255.209118pt;}
._22{width:259.840000pt;}
._43{width:271.360000pt;}
._44{width:272.640000pt;}
._17{width:278.578235pt;}
._4a{width:284.962324pt;}
._46{width:289.344000pt;}
._47{width:290.624000pt;}
._45{width:295.010324pt;}
._24{width:300.864000pt;}
._37{width:305.638971pt;}
._26{width:318.784000pt;}
._25{width:328.614971pt;}
._4c{width:330.914324pt;}
._29{width:354.560000pt;}
._2d{width:357.222971pt;}
._2c{width:372.544000pt;}
._3e{width:401.536000pt;}
._32{width:419.520000pt;}
._3a{width:431.270971pt;}
._39{width:484.800000pt;}
._31{width:499.972647pt;}
._35{width:503.977118pt;}
._28{width:512.452647pt;}
._36{width:517.120000pt;}
._2b{width:523.844647pt;}
._3c{width:534.788647pt;}
._2e{width:540.642324pt;}
._49{width:563.618324pt;}
._30{width:572.800000pt;}
._48{width:576.320000pt;}
._3b{width:589.572647pt;}
._1f{width:630.818324pt;}
._20{width:684.386324pt;}
._1e{width:710.724647pt;}
._2f{width:742.866235pt;}
._3d{width:823.428647pt;}
._33{width:847.232000pt;}
._34{width:853.888000pt;}
._23{width:886.528000pt;}
.fs17{font-size:23.040000pt;}
.fs15{font-size:26.880000pt;}
.fs16{font-size:26.881371pt;}
.fsf{font-size:29.440000pt;}
.fs12{font-size:30.720000pt;}
.fs19{font-size:32.000000pt;}
.fs14{font-size:33.277388pt;}
.fs10{font-size:33.280000pt;}
.fse{font-size:35.840000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs13{font-size:39.680000pt;}
.fsa{font-size:42.240000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:53.760000pt;}
.fs18{font-size:54.961507pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.880000pt;}
.fsc{font-size:60.195831pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:65.430154pt;}
.fs11{font-size:74.240000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:106.240000pt;}
.fs7{font-size:138.240000pt;}
.fs6{font-size:149.760000pt;}
.y0{bottom:0.000000pt;}
.y1f7{bottom:1.362667pt;}
.y121{bottom:1.401333pt;}
.y167{bottom:1.421333pt;}
.y206{bottom:1.613333pt;}
.y156{bottom:2.022667pt;}
.y1f2{bottom:47.382667pt;}
.y54{bottom:50.986667pt;}
.y29{bottom:51.306667pt;}
.y6{bottom:59.133337pt;}
.y28{bottom:70.506667pt;}
.y5{bottom:86.333337pt;}
.y27{bottom:89.386667pt;}
.y26{bottom:108.586667pt;}
.y10c{bottom:116.431605pt;}
.y182{bottom:116.433205pt;}
.y2f3{bottom:116.433333pt;}
.y2db{bottom:116.753333pt;}
.y2da{bottom:116.901333pt;}
.y2f2{bottom:116.903552pt;}
.y234{bottom:120.912885pt;}
.yff{bottom:120.913077pt;}
.y153{bottom:120.913333pt;}
.y1bd{bottom:121.386667pt;}
.y22{bottom:123.790666pt;}
.y1b4{bottom:125.226667pt;}
.y2f5{bottom:127.146667pt;}
.y25{bottom:127.466667pt;}
.yc5{bottom:128.250667pt;}
.y9f{bottom:131.791605pt;}
.y10b{bottom:131.792181pt;}
.y2f1{bottom:132.584000pt;}
.y233{bottom:135.952245pt;}
.y181{bottom:136.273333pt;}
.y19e{bottom:136.593333pt;}
.y152{bottom:136.746667pt;}
.y75{bottom:139.626667pt;}
.y1bc{bottom:139.946667pt;}
.yfe{bottom:140.433333pt;}
.y204{bottom:140.753333pt;}
.y1b3{bottom:143.786667pt;}
.y24{bottom:146.666667pt;}
.yc4{bottom:146.810667pt;}
.y9e{bottom:147.152181pt;}
.y10a{bottom:147.152757pt;}
.y2be{bottom:149.546667pt;}
.y180{bottom:152.106667pt;}
.y19d{bottom:152.746667pt;}
.y232{bottom:155.792373pt;}
.yfd{bottom:155.946667pt;}
.y74{bottom:158.186667pt;}
.y1bb{bottom:158.506667pt;}
.y1b2{bottom:162.346667pt;}
.y9d{bottom:162.832629pt;}
.y109{bottom:162.833205pt;}
.y151{bottom:163.626667pt;}
.y2f4{bottom:164.266667pt;}
.yc3{bottom:165.370667pt;}
.y23{bottom:165.546667pt;}
.y2d9{bottom:165.866667pt;}
.y2bd{bottom:168.106667pt;}
.y19{bottom:175.052000pt;}
.y231{bottom:175.312629pt;}
.y73{bottom:176.746667pt;}
.y1ba{bottom:177.066667pt;}
.y9c{bottom:178.193205pt;}
.yfc{bottom:179.626667pt;}
.y237{bottom:180.906667pt;}
.y212{bottom:181.571680pt;}
.y150{bottom:182.186667pt;}
.y108{bottom:182.673333pt;}
.y294{bottom:182.826667pt;}
.yc2{bottom:183.610667pt;}
.y2d8{bottom:184.106667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y2bc{bottom:186.666667pt;}
.y1e6{bottom:188.433333pt;}
.y207{bottom:189.892000pt;}
.y230{bottom:190.032117pt;}
.y72{bottom:195.306667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y9b{bottom:198.033333pt;}
.yfb{bottom:198.186667pt;}
.y1b1{bottom:199.146667pt;}
.y14f{bottom:200.426667pt;}
.y293{bottom:201.386667pt;}
.yc1{bottom:202.026667pt;}
.y2b1{bottom:202.666667pt;}
.y22f{bottom:205.392693pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1ef{bottom:210.680000pt;}
.y208{bottom:210.691936pt;}
.y19c{bottom:212.906667pt;}
.y9a{bottom:213.546667pt;}
.y1b9{bottom:213.866667pt;}
.yfa{bottom:216.746667pt;}
.y1b0{bottom:217.706667pt;}
.y292{bottom:219.626667pt;}
.y14e{bottom:220.586667pt;}
.y2d7{bottom:220.906667pt;}
.y22e{bottom:221.073141pt;}
.y2b0{bottom:221.226667pt;}
.y2bb{bottom:223.786667pt;}
.y1e8{bottom:229.309333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y19b{bottom:231.146667pt;}
.y209{bottom:231.812128pt;}
.y71{bottom:232.106667pt;}
.y1b8{bottom:232.426667pt;}
.y99{bottom:234.026667pt;}
.y1af{bottom:236.266667pt;}
.y22d{bottom:236.433717pt;}
.yf9{bottom:236.586667pt;}
.y291{bottom:238.186667pt;}
.y14d{bottom:239.146667pt;}
.y2d6{bottom:239.466667pt;}
.y2af{bottom:239.786667pt;}
.yc0{bottom:240.250667pt;}
.y2ba{bottom:242.026667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y19a{bottom:249.706667pt;}
.y1b7{bottom:250.986667pt;}
.y98{bottom:252.586667pt;}
.y20a{bottom:252.612064pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1ae{bottom:254.826667pt;}
.yf8{bottom:255.146667pt;}
.y22c{bottom:256.273845pt;}
.y14c{bottom:257.706667pt;}
.y2ae{bottom:258.026667pt;}
.y2b9{bottom:260.586667pt;}
.y1e9{bottom:267.069013pt;}
.y199{bottom:268.266667pt;}
.y70{bottom:269.226667pt;}
.y1b6{bottom:269.546667pt;}
.y258{bottom:270.186667pt;}
.y97{bottom:271.146667pt;}
.y22b{bottom:271.313205pt;}
.y213{bottom:272.746667pt;}
.y1ad{bottom:273.066667pt;}
.y236{bottom:273.386667pt;}
.y20b{bottom:273.412000pt;}
.yf7{bottom:273.706667pt;}
.y290{bottom:275.306667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y14b{bottom:275.946667pt;}
.y2d5{bottom:276.266667pt;}
.y2ad{bottom:276.586667pt;}
.ybf{bottom:277.602667pt;}
.y2b8{bottom:279.146667pt;}
.y217{bottom:281.092000pt;}
.y198{bottom:286.826667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y6f{bottom:287.786667pt;}
.y257{bottom:288.746667pt;}
.y96{bottom:289.706667pt;}
.y216{bottom:289.732000pt;}
.y22a{bottom:291.153333pt;}
.y1ac{bottom:291.626667pt;}
.yf6{bottom:292.266667pt;}
.y28f{bottom:293.866667pt;}
.y20c{bottom:294.211936pt;}
.ybe{bottom:294.504000pt;}
.y14a{bottom:294.506667pt;}
.y2b7{bottom:297.706667pt;}
.y215{bottom:298.372000pt;}
.y1ea{bottom:305.149237pt;}
.y197{bottom:305.386667pt;}
.y6e{bottom:306.026667pt;}
.y107{bottom:306.346667pt;}
.y229{bottom:306.666667pt;}
.y214{bottom:307.012000pt;}
.y256{bottom:307.306667pt;}
.y95{bottom:307.946667pt;}
.y17f{bottom:308.586667pt;}
.y10{bottom:309.452000pt;}
.y1ab{bottom:310.186667pt;}
.yf5{bottom:310.826667pt;}
.y273{bottom:311.466667pt;}
.y28e{bottom:312.106667pt;}
.y2d4{bottom:313.066667pt;}
.y2ac{bottom:314.026667pt;}
.y20d{bottom:315.011872pt;}
.y2b6{bottom:316.266667pt;}
.y1f1{bottom:320.426667pt;}
.y1f0{bottom:321.386667pt;}
.y106{bottom:324.906667pt;}
.y255{bottom:325.866667pt;}
.y1f9{bottom:326.506667pt;}
.y1f8{bottom:327.869333pt;}
.y94{bottom:328.106667pt;}
.y17e{bottom:328.746667pt;}
.yf4{bottom:329.066667pt;}
.y272{bottom:330.026667pt;}
.y28d{bottom:330.666667pt;}
.y2d3{bottom:331.306667pt;}
.y149{bottom:331.946667pt;}
.y2b5{bottom:334.506667pt;}
.y20e{bottom:336.132064pt;}
.y1f6{bottom:336.426667pt;}
.y1f5{bottom:337.789333pt;}
.y196{bottom:342.186667pt;}
.y1b5{bottom:342.673333pt;}
.y1eb{bottom:342.909589pt;}
.y6d{bottom:343.146667pt;}
.yf{bottom:343.809333pt;}
.y254{bottom:345.706667pt;}
.y93{bottom:346.666667pt;}
.y17d{bottom:347.306667pt;}
.y1f4{bottom:347.389333pt;}
.y271{bottom:348.586667pt;}
.y28c{bottom:349.226667pt;}
.y2d2{bottom:349.866667pt;}
.y148{bottom:351.146667pt;}
.y228{bottom:354.666667pt;}
.y20f{bottom:356.932000pt;}
.y1f3{bottom:357.309333pt;}
.ybd{bottom:359.786667pt;}
.y6c{bottom:361.706667pt;}
.y195{bottom:362.346667pt;}
.ye{bottom:362.706666pt;}
.y253{bottom:364.266667pt;}
.y92{bottom:365.226667pt;}
.y1aa{bottom:365.546667pt;}
.y17c{bottom:365.866667pt;}
.yf3{bottom:366.186667pt;}
.y270{bottom:367.146667pt;}
.y28b{bottom:367.786667pt;}
.y1bf{bottom:368.925333pt;}
.y2b4{bottom:369.386667pt;}
.y2ab{bottom:369.706667pt;}
.y147{bottom:370.346667pt;}
.y210{bottom:377.731936pt;}
.y6b{bottom:380.266667pt;}
.y3c{bottom:380.346667pt;}
.y194{bottom:380.586667pt;}
.y1ec{bottom:380.669941pt;}
.y17b{bottom:384.106667pt;}
.yb3{bottom:384.426667pt;}
.yf2{bottom:384.746667pt;}
.y26f{bottom:385.386667pt;}
.y2f0{bottom:385.706667pt;}
.y28a{bottom:386.346667pt;}
.y2d1{bottom:386.666667pt;}
.y2aa{bottom:388.266667pt;}
.y12b{bottom:388.906667pt;}
.y146{bottom:389.546667pt;}
.y227{bottom:391.786667pt;}
.ybc{bottom:394.345739pt;}
.y6a{bottom:398.506667pt;}
.y211{bottom:398.531872pt;}
.y105{bottom:398.826667pt;}
.y3b{bottom:398.906667pt;}
.y193{bottom:399.146667pt;}
.y1c0{bottom:399.965589pt;}
.y252{bottom:401.066667pt;}
.y91{bottom:402.026667pt;}
.y17a{bottom:402.666667pt;}
.yf1{bottom:403.306667pt;}
.y26e{bottom:403.946667pt;}
.y2d0{bottom:404.906667pt;}
.y2a9{bottom:406.506667pt;}
.y12a{bottom:407.466667pt;}
.y145{bottom:408.426667pt;}
.y226{bottom:410.346667pt;}
.y282{bottom:414.826667pt;}
.y104{bottom:417.386667pt;}
.y3a{bottom:417.466667pt;}
.y192{bottom:417.706667pt;}
.ybb{bottom:418.345675pt;}
.y1ed{bottom:418.750165pt;}
.y205{bottom:419.320000pt;}
.y251{bottom:419.626667pt;}
.y90{bottom:420.586667pt;}
.y179{bottom:421.226667pt;}
.yf0{bottom:421.546667pt;}
.y26d{bottom:422.506667pt;}
.y289{bottom:423.146667pt;}
.y2cf{bottom:423.466667pt;}
.y2a8{bottom:425.066667pt;}
.y129{bottom:426.026667pt;}
.y144{bottom:427.626667pt;}
.y225{bottom:428.906667pt;}
.y1c1{bottom:431.005845pt;}
.y281{bottom:433.386667pt;}
.y69{bottom:435.626667pt;}
.y39{bottom:436.026667pt;}
.y191{bottom:436.266667pt;}
.y250{bottom:438.186667pt;}
.y1ca{bottom:438.736000pt;}
.y8f{bottom:439.146667pt;}
.y178{bottom:439.786667pt;}
.yef{bottom:440.106667pt;}
.y2ef{bottom:440.746667pt;}
.y288{bottom:441.706667pt;}
.yba{bottom:442.985931pt;}
.y2a7{bottom:443.626667pt;}
.yd{bottom:446.990669pt;}
.y143{bottom:447.146667pt;}
.y280{bottom:451.946667pt;}
.y103{bottom:454.186667pt;}
.y38{bottom:454.586667pt;}
.y190{bottom:454.826667pt;}
.y1ee{bottom:456.509845pt;}
.y24f{bottom:456.746667pt;}
.y8e{bottom:457.706667pt;}
.y235{bottom:458.346667pt;}
.yee{bottom:458.666667pt;}
.y26c{bottom:458.986667pt;}
.y203{bottom:459.306667pt;}
.y287{bottom:460.266667pt;}
.y128{bottom:460.906667pt;}
.y1c2{bottom:462.046101pt;}
.y2a6{bottom:462.186667pt;}
.yc{bottom:462.990669pt;}
.y224{bottom:465.706667pt;}
.y142{bottom:466.346667pt;}
.yb9{bottom:466.985867pt;}
.y68{bottom:472.746667pt;}
.y37{bottom:472.826667pt;}
.y18f{bottom:473.066667pt;}
.y1a9{bottom:474.346667pt;}
.y24e{bottom:475.306667pt;}
.ydc{bottom:475.626667pt;}
.y8d{bottom:475.946667pt;}
.y177{bottom:476.586667pt;}
.yed{bottom:477.226667pt;}
.y2ee{bottom:477.546667pt;}
.y202{bottom:478.506667pt;}
.y286{bottom:478.826667pt;}
.yb{bottom:478.990666pt;}
.y127{bottom:479.466667pt;}
.y1e7{bottom:480.157333pt;}
.y141{bottom:482.820000pt;}
.y223{bottom:484.266667pt;}
.y27f{bottom:490.026667pt;}
.y67{bottom:490.986667pt;}
.y36{bottom:491.386667pt;}
.yb8{bottom:491.626123pt;}
.y18e{bottom:491.626667pt;}
.y1c3{bottom:493.086357pt;}
.y24d{bottom:493.546667pt;}
.ydb{bottom:493.866667pt;}
.y8c{bottom:494.506667pt;}
.ya{bottom:494.990666pt;}
.y176{bottom:495.146667pt;}
.y26b{bottom:496.106667pt;}
.y285{bottom:497.066667pt;}
.y2a5{bottom:498.986667pt;}
.y222{bottom:502.826667pt;}
.y1cf{bottom:505.245333pt;}
.y27e{bottom:508.586667pt;}
.y66{bottom:509.546667pt;}
.y102{bottom:509.866667pt;}
.y35{bottom:509.946667pt;}
.y1a8{bottom:511.786667pt;}
.y1cb{bottom:512.106667pt;}
.yda{bottom:512.426667pt;}
.y175{bottom:513.706667pt;}
.y2ed{bottom:513.872885pt;}
.yec{bottom:514.026667pt;}
.y26a{bottom:514.986667pt;}
.y2ce{bottom:515.306667pt;}
.yb7{bottom:515.626059pt;}
.y201{bottom:515.626667pt;}
.y53{bottom:517.250517pt;}
.y2a4{bottom:517.546667pt;}
.y1ce{bottom:517.725333pt;}
.y221{bottom:521.386667pt;}
.y1e5{bottom:523.306667pt;}
.y140{bottom:524.266667pt;}
.y1c4{bottom:524.446101pt;}
.y27d{bottom:527.146667pt;}
.y18d{bottom:527.953333pt;}
.y65{bottom:528.106667pt;}
.y34{bottom:528.506667pt;}
.y2ec{bottom:529.553333pt;}
.y1cd{bottom:529.885333pt;}
.y2eb{bottom:530.023424pt;}
.y1a7{bottom:530.026667pt;}
.y24c{bottom:530.666667pt;}
.yd9{bottom:530.986667pt;}
.y8b{bottom:531.626667pt;}
.y52{bottom:532.261653pt;}
.y174{bottom:532.266667pt;}
.yeb{bottom:532.586667pt;}
.y269{bottom:533.546667pt;}
.y2cd{bottom:533.866667pt;}
.y200{bottom:534.186667pt;}
.y126{bottom:535.633333pt;}
.y2a3{bottom:536.106667pt;}
.y220{bottom:539.626667pt;}
.yb6{bottom:540.586475pt;}
.y1e4{bottom:542.186667pt;}
.y1cc{bottom:542.365333pt;}
.y18c{bottom:544.426667pt;}
.y2e9{bottom:544.913333pt;}
.y2ea{bottom:545.384000pt;}
.y64{bottom:546.666667pt;}
.y33{bottom:547.066667pt;}
.y51{bottom:547.622229pt;}
.y1a6{bottom:548.586667pt;}
.y24b{bottom:549.226667pt;}
.yd8{bottom:549.546667pt;}
.y8a{bottom:550.186667pt;}
.y173{bottom:550.826667pt;}
.yea{bottom:551.146667pt;}
.y2cc{bottom:552.106667pt;}
.y1ff{bottom:552.746667pt;}
.y2b3{bottom:554.666667pt;}
.y1c5{bottom:555.166037pt;}
.y134{bottom:558.948192pt;}
.y13f{bottom:561.386667pt;}
.y50{bottom:562.661589pt;}
.y18b{bottom:563.626667pt;}
.yb5{bottom:564.586411pt;}
.y27c{bottom:565.226667pt;}
.y32{bottom:565.306667pt;}
.y1a5{bottom:567.146667pt;}
.y89{bottom:568.426667pt;}
.y12d{bottom:568.868000pt;}
.ye9{bottom:569.706667pt;}
.y268{bottom:570.346667pt;}
.y1fe{bottom:571.306667pt;}
.y2a2{bottom:573.226667pt;}
.y9{bottom:573.786667pt;}
.y4f{bottom:578.022165pt;}
.y21f{bottom:578.666667pt;}
.y1e3{bottom:579.626667pt;}
.y13e{bottom:579.946667pt;}
.y63{bottom:581.226667pt;}
.y18a{bottom:582.826667pt;}
.y101{bottom:582.993056pt;}
.y27b{bottom:583.786667pt;}
.y31{bottom:583.866667pt;}
.y1a4{bottom:585.706667pt;}
.y24a{bottom:586.026667pt;}
.yd7{bottom:586.346667pt;}
.y1c6{bottom:586.525781pt;}
.y88{bottom:586.986667pt;}
.y172{bottom:587.626667pt;}
.y2e8{bottom:587.946667pt;}
.ye8{bottom:588.266667pt;}
.y2cb{bottom:588.906667pt;}
.yb4{bottom:589.226667pt;}
.y1fd{bottom:589.546667pt;}
.y267{bottom:590.506667pt;}
.y2a1{bottom:591.466667pt;}
.y8{bottom:592.685334pt;}
.y4e{bottom:593.382741pt;}
.y13d{bottom:597.713333pt;}
.y21e{bottom:597.866667pt;}
.y1e2{bottom:598.186667pt;}
.y100{bottom:599.466667pt;}
.y189{bottom:602.026667pt;}
.y1a3{bottom:604.266667pt;}
.y249{bottom:604.586667pt;}
.yd6{bottom:604.906667pt;}
.y87{bottom:605.546667pt;}
.y171{bottom:606.186667pt;}
.ye7{bottom:606.506667pt;}
.y2ca{bottom:607.466667pt;}
.y1fc{bottom:608.106667pt;}
.y4d{bottom:608.743317pt;}
.y266{bottom:609.066667pt;}
.y2a0{bottom:610.026667pt;}
.y12e{bottom:610.148032pt;}
.y2e7{bottom:614.506667pt;}
.y1e1{bottom:616.426667pt;}
.y1c7{bottom:617.566037pt;}
.y30{bottom:618.250667pt;}
.y21d{bottom:618.346667pt;}
.y188{bottom:621.226667pt;}
.y27a{bottom:621.866667pt;}
.y62{bottom:622.506667pt;}
.y248{bottom:623.146667pt;}
.yd5{bottom:623.466667pt;}
.y4c{bottom:624.453653pt;}
.y170{bottom:624.746667pt;}
.ye6{bottom:625.066667pt;}
.y2c9{bottom:625.706667pt;}
.y2b2{bottom:626.346667pt;}
.y1fb{bottom:626.666667pt;}
.y265{bottom:627.306667pt;}
.yb2{bottom:627.473333pt;}
.y11a{bottom:628.563104pt;}
.y29f{bottom:628.586667pt;}
.y1e0{bottom:634.986667pt;}
.y21c{bottom:639.146667pt;}
.y86{bottom:640.426667pt;}
.y61{bottom:641.066667pt;}
.y160{bottom:641.208512pt;}
.y119{bottom:641.510080pt;}
.y247{bottom:641.706667pt;}
.yd4{bottom:642.026667pt;}
.y16f{bottom:643.306667pt;}
.yb1{bottom:643.626667pt;}
.y2c8{bottom:644.266667pt;}
.y284{bottom:645.226667pt;}
.y7{bottom:645.598667pt;}
.y264{bottom:645.866667pt;}
.y4b{bottom:647.141717pt;}
.y29e{bottom:647.146667pt;}
.y1c8{bottom:648.606293pt;}
.y12f{bottom:651.428064pt;}
.y10e{bottom:652.068000pt;}
.y157{bottom:652.088000pt;}
.y1df{bottom:653.546667pt;}
.y187{bottom:659.306667pt;}
.y60{bottom:659.626667pt;}
.y21b{bottom:659.946667pt;}
.y246{bottom:660.266667pt;}
.yd3{bottom:660.586667pt;}
.y16e{bottom:661.546667pt;}
.y2c7{bottom:662.506667pt;}
.y283{bottom:663.786667pt;}
.y4{bottom:668.977329pt;}
.y1de{bottom:672.106667pt;}
.y85{bottom:675.306667pt;}
.y10f{bottom:677.348128pt;}
.y5f{bottom:678.186667pt;}
.y4a{bottom:678.501269pt;}
.y186{bottom:678.506667pt;}
.y21a{bottom:679.466667pt;}
.y1c9{bottom:679.646549pt;}
.y16d{bottom:680.106667pt;}
.y2f{bottom:680.553333pt;}
.ye5{bottom:680.746667pt;}
.y2c6{bottom:681.066667pt;}
.yb0{bottom:682.026667pt;}
.y139{bottom:682.320928pt;}
.y263{bottom:682.666667pt;}
.y29d{bottom:683.946667pt;}
.y158{bottom:686.008256pt;}
.y13b{bottom:687.588000pt;}
.y138{bottom:690.960832pt;}
.y130{bottom:693.028256pt;}
.y2e6{bottom:693.866667pt;}
.y84{bottom:694.186667pt;}
.y1a2{bottom:696.746667pt;}
.y245{bottom:697.066667pt;}
.yd2{bottom:697.386667pt;}
.y185{bottom:697.706667pt;}
.y13a{bottom:697.828000pt;}
.y219{bottom:698.346667pt;}
.y16c{bottom:698.666667pt;}
.y137{bottom:698.961152pt;}
.ye4{bottom:698.986667pt;}
.y2c5{bottom:699.306667pt;}
.yaf{bottom:700.586667pt;}
.y262{bottom:701.226667pt;}
.y49{bottom:702.184000pt;}
.y29c{bottom:702.506667pt;}
.y110{bottom:702.628256pt;}
.y136{bottom:707.601056pt;}
.y1be{bottom:708.664000pt;}
.y1dd{bottom:708.906667pt;}
.y2e5{bottom:712.426667pt;}
.y2e{bottom:713.075637pt;}
.y5e{bottom:714.986667pt;}
.y244{bottom:715.626667pt;}
.y135{bottom:715.920800pt;}
.yd1{bottom:715.946667pt;}
.y184{bottom:716.906667pt;}
.y1fa{bottom:717.226667pt;}
.ye3{bottom:717.546667pt;}
.y2c4{bottom:717.866667pt;}
.yae{bottom:719.146667pt;}
.y159{bottom:719.608256pt;}
.y261{bottom:719.786667pt;}
.y29b{bottom:721.066667pt;}
.y48{bottom:725.219989pt;}
.y1dc{bottom:727.466667pt;}
.y111{bottom:728.228544pt;}
.y5d{bottom:733.546667pt;}
.y243{bottom:734.186667pt;}
.y131{bottom:734.308288pt;}
.yd0{bottom:734.506667pt;}
.y83{bottom:735.786667pt;}
.ye2{bottom:736.106667pt;}
.y218{bottom:737.386667pt;}
.yad{bottom:737.706667pt;}
.y260{bottom:738.346667pt;}
.y2e4{bottom:738.986667pt;}
.y29a{bottom:739.626667pt;}
.y125{bottom:745.508000pt;}
.y1db{bottom:746.026667pt;}
.y47{bottom:748.902613pt;}
.y1a1{bottom:752.106667pt;}
.y242{bottom:752.746667pt;}
.y16b{bottom:752.888000pt;}
.ycf{bottom:753.066667pt;}
.y15a{bottom:753.208256pt;}
.y112{bottom:753.508672pt;}
.y82{bottom:754.026667pt;}
.ye1{bottom:754.666667pt;}
.y2c3{bottom:755.946667pt;}
.yac{bottom:756.266667pt;}
.y124{bottom:756.388000pt;}
.y25f{bottom:756.906667pt;}
.y299{bottom:758.186667pt;}
.y16a{bottom:764.088000pt;}
.y46{bottom:764.263189pt;}
.y1da{bottom:764.586667pt;}
.y2e3{bottom:765.226667pt;}
.y123{bottom:766.186667pt;}
.y11b{bottom:767.146667pt;}
.y122{bottom:767.588000pt;}
.y5c{bottom:770.666667pt;}
.y241{bottom:770.986667pt;}
.yce{bottom:771.626667pt;}
.y2d{bottom:772.162869pt;}
.y279{bottom:772.266667pt;}
.y81{bottom:772.586667pt;}
.ye0{bottom:773.226667pt;}
.y169{bottom:773.866667pt;}
.yab{bottom:774.506667pt;}
.y25e{bottom:775.146667pt;}
.y168{bottom:775.288000pt;}
.y132{bottom:775.908480pt;}
.y161{bottom:776.106667pt;}
.y298{bottom:776.426667pt;}
.y120{bottom:777.066667pt;}
.y11f{bottom:778.468000pt;}
.y113{bottom:778.788800pt;}
.y45{bottom:779.304000pt;}
.y3{bottom:781.661334pt;}
.y1d9{bottom:783.146667pt;}
.y166{bottom:785.066667pt;}
.y165{bottom:786.488000pt;}
.y15b{bottom:786.808256pt;}
.y1a0{bottom:789.226667pt;}
.y11e{bottom:789.348000pt;}
.y240{bottom:789.546667pt;}
.ycd{bottom:789.866667pt;}
.y278{bottom:790.826667pt;}
.y80{bottom:791.146667pt;}
.ydf{bottom:791.466667pt;}
.y2e2{bottom:791.786667pt;}
.y183{bottom:792.746667pt;}
.yaa{bottom:793.066667pt;}
.y25d{bottom:793.706667pt;}
.y297{bottom:794.986667pt;}
.y164{bottom:797.688000pt;}
.y11d{bottom:800.548000pt;}
.y44{bottom:802.341269pt;}
.y114{bottom:804.389088pt;}
.y5b{bottom:807.466667pt;}
.y23f{bottom:808.106667pt;}
.y277{bottom:809.066667pt;}
.y163{bottom:809.208000pt;}
.y7f{bottom:809.706667pt;}
.yde{bottom:810.026667pt;}
.y2c2{bottom:811.306667pt;}
.y11c{bottom:811.428000pt;}
.ya9{bottom:811.626667pt;}
.y2c{bottom:813.441333pt;}
.y296{bottom:813.546667pt;}
.y133{bottom:817.188512pt;}
.y2e1{bottom:818.346667pt;}
.y1d8{bottom:820.266667pt;}
.y162{bottom:820.408000pt;}
.y15c{bottom:820.728512pt;}
.y43{bottom:826.024000pt;}
.y23e{bottom:826.666667pt;}
.ycc{bottom:826.986667pt;}
.y7e{bottom:828.266667pt;}
.y2c1{bottom:829.546667pt;}
.y115{bottom:829.669216pt;}
.ya8{bottom:830.186667pt;}
.y2e0{bottom:836.906667pt;}
.y1d7{bottom:839.466667pt;}
.y2{bottom:840.112001pt;}
.y12c{bottom:841.400000pt;}
.y19f{bottom:842.026667pt;}
.y5a{bottom:844.586667pt;}
.y23d{bottom:845.226667pt;}
.ycb{bottom:845.546667pt;}
.y7d{bottom:846.506667pt;}
.y276{bottom:847.466667pt;}
.y2c0{bottom:848.106667pt;}
.y295{bottom:848.426667pt;}
.ya7{bottom:848.746667pt;}
.y42{bottom:849.061141pt;}
.y15d{bottom:854.328512pt;}
.y116{bottom:854.949344pt;}
.y1d6{bottom:858.666667pt;}
.y1{bottom:859.312000pt;}
.y2df{bottom:863.466667pt;}
.yca{bottom:864.106667pt;}
.y7c{bottom:865.066667pt;}
.y275{bottom:866.026667pt;}
.ya6{bottom:866.986667pt;}
.y1d5{bottom:877.866667pt;}
.y117{bottom:880.229472pt;}
.y41{bottom:880.420693pt;}
.y59{bottom:881.706667pt;}
.y23c{bottom:882.026667pt;}
.yc9{bottom:882.346667pt;}
.y2bf{bottom:883.306667pt;}
.ya0{bottom:883.626667pt;}
.y274{bottom:884.266667pt;}
.ydd{bottom:885.546667pt;}
.y15e{bottom:888.248768pt;}
.y1d4{bottom:897.386667pt;}
.y58{bottom:899.946667pt;}
.y23b{bottom:900.586667pt;}
.yc8{bottom:900.906667pt;}
.y7b{bottom:902.186667pt;}
.y25c{bottom:903.786667pt;}
.y40{bottom:904.103317pt;}
.ya5{bottom:904.106667pt;}
.y118{bottom:905.829760pt;}
.y2b{bottom:910.498528pt;}
.y1d3{bottom:917.866667pt;}
.y57{bottom:918.506667pt;}
.y23a{bottom:919.146667pt;}
.y3f{bottom:919.464000pt;}
.yc7{bottom:919.466667pt;}
.y2de{bottom:920.106667pt;}
.y7a{bottom:920.746667pt;}
.y15f{bottom:921.848768pt;}
.y25b{bottom:922.346667pt;}
.ya4{bottom:922.666667pt;}
.y10d{bottom:931.345333pt;}
.y3e{bottom:934.824000pt;}
.y1d2{bottom:936.746667pt;}
.y56{bottom:937.066667pt;}
.y239{bottom:937.706667pt;}
.yc6{bottom:938.026667pt;}
.y79{bottom:938.986667pt;}
.y25a{bottom:940.586667pt;}
.ya3{bottom:941.226667pt;}
.y155{bottom:946.986667pt;}
.y154{bottom:949.009333pt;}
.y1d1{bottom:955.946667pt;}
.y78{bottom:957.546667pt;}
.y3d{bottom:957.861333pt;}
.y2dd{bottom:957.866667pt;}
.y259{bottom:959.146667pt;}
.ya2{bottom:959.466667pt;}
.y55{bottom:971.626667pt;}
.y2a{bottom:973.540000pt;}
.y238{bottom:974.506667pt;}
.y1d0{bottom:975.786667pt;}
.y77{bottom:976.106667pt;}
.y2dc{bottom:976.426667pt;}
.ya1{bottom:994.026667pt;}
.y13c{bottom:994.346667pt;}
.y76{bottom:994.666667pt;}
.h27{height:7.680000pt;}
.h1b{height:8.320000pt;}
.h21{height:8.640000pt;}
.h28{height:9.600000pt;}
.h1f{height:12.160000pt;}
.h29{height:24.030000pt;}
.h24{height:28.035000pt;}
.h25{height:28.036430pt;}
.h7{height:28.560000pt;}
.h1a{height:30.705000pt;}
.h20{height:32.040000pt;}
.h23{height:34.707276pt;}
.h1c{height:34.710000pt;}
.h19{height:37.380000pt;}
.h14{height:38.715000pt;}
.h6{height:40.800000pt;}
.h22{height:41.385000pt;}
.h3{height:42.840000pt;}
.h1e{height:44.055000pt;}
.h2{height:48.960000pt;}
.h26{height:49.920000pt;}
.hf{height:52.736250pt;}
.h10{height:52.762500pt;}
.h11{height:52.773764pt;}
.he{height:54.159833pt;}
.hd{height:54.180000pt;}
.h13{height:56.070000pt;}
.h2c{height:57.323134pt;}
.h16{height:61.410000pt;}
.h15{height:62.782370pt;}
.hc{height:66.750000pt;}
.h2a{height:66.976667pt;}
.h17{height:67.326000pt;}
.h2b{height:68.030000pt;}
.h8{height:68.241606pt;}
.h5{height:69.360000pt;}
.h12{height:72.096667pt;}
.h18{height:72.299333pt;}
.h1d{height:77.430000pt;}
.h4{height:105.826671pt;}
.hb{height:110.805000pt;}
.h2d{height:140.990000pt;}
.ha{height:144.180000pt;}
.h9{height:156.195000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:13.120000pt;}
.w6{width:64.960000pt;}
.w4{width:65.600000pt;}
.w8{width:87.680000pt;}
.w9{width:193.280000pt;}
.w5{width:243.200000pt;}
.w2{width:566.928019pt;}
.w3{width:793.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6f{left:8.050667pt;}
.x28{left:17.921333pt;}
.x35{left:37.757333pt;}
.x72{left:40.005333pt;}
.x29{left:43.204000pt;}
.x74{left:60.488000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x37{left:125.109333pt;}
.x78{left:128.644000pt;}
.x5{left:132.480000pt;}
.x81{left:136.640000pt;}
.x1e{left:139.840000pt;}
.x6e{left:141.440000pt;}
.x2d{left:143.360480pt;}
.x84{left:144.320000pt;}
.x6{left:146.240000pt;}
.xc{left:148.480000pt;}
.x6d{left:149.490667pt;}
.x1a{left:150.720000pt;}
.x1c{left:153.598656pt;}
.x24{left:156.160064pt;}
.x1b{left:158.399200pt;}
.x7a{left:159.680128pt;}
.x23{left:160.640096pt;}
.xf{left:164.480000pt;}
.x5b{left:165.746667pt;}
.x40{left:167.450667pt;}
.x22{left:169.280000pt;}
.x14{left:170.560000pt;}
.x82{left:174.400000pt;}
.x88{left:179.200000pt;}
.x4{left:180.874667pt;}
.x7b{left:183.360064pt;}
.x2c{left:185.600256pt;}
.x10{left:188.480000pt;}
.xd{left:189.440000pt;}
.x12{left:191.360000pt;}
.xe{left:192.320000pt;}
.x5c{left:194.547588pt;}
.x8{left:195.520000pt;}
.x9{left:201.281152pt;}
.x83{left:203.200000pt;}
.x32{left:205.760000pt;}
.x13{left:208.000000pt;}
.x41{left:209.685860pt;}
.x57{left:210.880000pt;}
.x5d{left:223.029175pt;}
.x19{left:224.000000pt;}
.x7d{left:235.520000pt;}
.x42{left:237.842656pt;}
.x1d{left:243.520000pt;}
.x17{left:244.480000pt;}
.x30{left:246.400000pt;}
.xb{left:248.640000pt;}
.x43{left:251.921054pt;}
.x85{left:256.960000pt;}
.xa{left:258.239488pt;}
.x21{left:259.840000pt;}
.x44{left:265.999452pt;}
.x45{left:279.757833pt;}
.x87{left:283.840000pt;}
.x34{left:290.240000pt;}
.x33{left:291.840000pt;}
.x46{left:293.836230pt;}
.x47{left:307.914628pt;}
.x77{left:310.080000pt;}
.x76{left:311.680000pt;}
.x48{left:321.993026pt;}
.x5e{left:323.193732pt;}
.x86{left:327.360000pt;}
.x36{left:334.396000pt;}
.x49{left:336.071424pt;}
.x5f{left:337.594193pt;}
.x5a{left:346.240000pt;}
.x4a{left:350.149822pt;}
.x60{left:351.675319pt;}
.x89{left:353.600000pt;}
.x4b{left:364.228220pt;}
.x61{left:366.075780pt;}
.x3f{left:370.880000pt;}
.x2b{left:378.240000pt;}
.x7{left:379.521152pt;}
.x18{left:389.760000pt;}
.x58{left:390.720000pt;}
.x25{left:392.319648pt;}
.x62{left:394.557367pt;}
.x3{left:404.408000pt;}
.x4c{left:406.463413pt;}
.x3c{left:408.320000pt;}
.x3e{left:415.360000pt;}
.x4d{left:420.221794pt;}
.x38{left:422.069333pt;}
.x63{left:423.038955pt;}
.x4e{left:434.300192pt;}
.x64{left:437.439415pt;}
.x7e{left:438.400000pt;}
.x79{left:442.244000pt;}
.x4f{left:448.378590pt;}
.x7f{left:449.280000pt;}
.x65{left:451.839876pt;}
.x50{left:462.456988pt;}
.x66{left:465.921003pt;}
.x31{left:474.240000pt;}
.x51{left:476.535386pt;}
.x67{left:480.321463pt;}
.x52{left:490.613783pt;}
.x68{left:494.721924pt;}
.x53{left:504.692181pt;}
.x69{left:508.803051pt;}
.x54{left:518.770579pt;}
.x59{left:520.000000pt;}
.x6a{left:523.203511pt;}
.x55{left:532.848977pt;}
.x6b{left:537.603972pt;}
.x15{left:544.640000pt;}
.x3d{left:547.200000pt;}
.x6c{left:551.685099pt;}
.x80{left:568.320000pt;}
.x1f{left:569.920000pt;}
.x16{left:571.520000pt;}
.x71{left:592.320000pt;}
.x56{left:594.560000pt;}
.x7c{left:595.840000pt;}
.x70{left:599.360000pt;}
.x3a{left:620.800000pt;}
.x39{left:628.800000pt;}
.x27{left:629.760000pt;}
.x73{left:636.485333pt;}
.x26{left:637.440000pt;}
.x20{left:643.840000pt;}
.x75{left:656.969333pt;}
.x2e{left:666.240000pt;}
.x3b{left:667.844000pt;}
.x2a{left:677.124000pt;}
.x2f{left:681.600000pt;}
.x11{left:690.240000pt;}
}




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