
    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_669b2023f6ea0a0e8bb3b83f.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_f8c7337f10cd528dba83a2cd.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_2e19c2c7b779600d75abc6f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_95df23ed5df58c14a570411b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5e0533a1db7e96081621315.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_e8768327ff9bd6be2ca63a7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_db166e12d667998f8908d81a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-2.509920px;}
.ls6d{letter-spacing:-2.407680px;}
.ls6e{letter-spacing:-2.154240px;}
.ls6c{letter-spacing:-2.090880px;}
.ls8c{letter-spacing:-1.837440px;}
.ls23{letter-spacing:-1.792800px;}
.ls3d{letter-spacing:-1.774080px;}
.ls61{letter-spacing:-1.647360px;}
.ls24{letter-spacing:-1.553760px;}
.ls44{letter-spacing:-1.457280px;}
.lsac{letter-spacing:-1.422000px;}
.ls3c{letter-spacing:-1.393920px;}
.lsbc{letter-spacing:-1.365120px;}
.lsaa{letter-spacing:-1.308240px;}
.lsc7{letter-spacing:-1.296000px;}
.ls7e{letter-spacing:-1.267200px;}
.ls42{letter-spacing:-1.203840px;}
.lsbf{letter-spacing:-1.194480px;}
.ls41{letter-spacing:-1.140480px;}
.lsbb{letter-spacing:-1.137600px;}
.ls57{letter-spacing:-1.095120px;}
.lsaf{letter-spacing:-1.080720px;}
.ls1a{letter-spacing:-1.015920px;}
.ls3f{letter-spacing:-1.013760px;}
.ls3a{letter-spacing:-1.010880px;}
.ls1d{letter-spacing:-0.956160px;}
.ls3e{letter-spacing:-0.950400px;}
.ls58{letter-spacing:-0.910080px;}
.ls9f{letter-spacing:-0.887040px;}
.lsc4{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.836640px;}
.lsca{letter-spacing:-0.810000px;}
.ls1c{letter-spacing:-0.776880px;}
.ls18{letter-spacing:-0.758160px;}
.lsc8{letter-spacing:-0.756000px;}
.lsbe{letter-spacing:-0.739440px;}
.lsc9{letter-spacing:-0.702000px;}
.ls3b{letter-spacing:-0.696960px;}
.ls17{letter-spacing:-0.682560px;}
.ls56{letter-spacing:-0.673920px;}
.ls27{letter-spacing:-0.670320px;}
.lsc5{letter-spacing:-0.594000px;}
.ls9e{letter-spacing:-0.570240px;}
.ls14{letter-spacing:-0.568800px;}
.lsad{letter-spacing:-0.511920px;}
.ls45{letter-spacing:-0.506880px;}
.lsc6{letter-spacing:-0.486000px;}
.ls26{letter-spacing:-0.478080px;}
.ls16{letter-spacing:-0.455040px;}
.lsae{letter-spacing:-0.398160px;}
.ls40{letter-spacing:-0.380160px;}
.ls1e{letter-spacing:-0.358560px;}
.ls15{letter-spacing:-0.341280px;}
.ls62{letter-spacing:-0.336960px;}
.ls7c{letter-spacing:-0.331200px;}
.ls43{letter-spacing:-0.316800px;}
.ls20{letter-spacing:-0.298800px;}
.ls21{letter-spacing:-0.239040px;}
.ls8d{letter-spacing:-0.190080px;}
.ls7d{letter-spacing:-0.132480px;}
.ls1f{letter-spacing:-0.119520px;}
.ls7b{letter-spacing:-0.072000px;}
.ls22{letter-spacing:-0.059760px;}
.lsbd{letter-spacing:-0.056880px;}
.ls0{letter-spacing:0.000000px;}
.ls5f{letter-spacing:0.012672px;}
.ls75{letter-spacing:0.031680px;}
.lsab{letter-spacing:0.056880px;}
.lsb2{letter-spacing:0.062568px;}
.ls2b{letter-spacing:0.063360px;}
.lsb0{letter-spacing:0.216144px;}
.ls1b{letter-spacing:0.239040px;}
.ls8b{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.358560px;}
.ls2a{letter-spacing:0.380160px;}
.ls5{letter-spacing:0.388440px;}
.ls6a{letter-spacing:0.411840px;}
.ls90{letter-spacing:0.430848px;}
.ls9d{letter-spacing:0.475200px;}
.lsa{letter-spacing:0.597600px;}
.ls70{letter-spacing:0.671616px;}
.ls3{letter-spacing:0.682560px;}
.lsa6{letter-spacing:0.739440px;}
.ls4{letter-spacing:0.796320px;}
.ls39{letter-spacing:0.966960px;}
.ls2{letter-spacing:1.023840px;}
.ls1{letter-spacing:1.026720px;}
.ls6b{letter-spacing:1.077120px;}
.ls4e{letter-spacing:1.153152px;}
.ls4f{letter-spacing:1.172160px;}
.ls4d{letter-spacing:1.241856px;}
.ls5a{letter-spacing:1.248192px;}
.lsa7{letter-spacing:1.666584px;}
.ls2c{letter-spacing:1.837440px;}
.ls79{letter-spacing:1.970496px;}
.ls7a{letter-spacing:2.071872px;}
.ls7{letter-spacing:2.091600px;}
.ls2d{letter-spacing:2.534400px;}
.ls8f{letter-spacing:2.553408px;}
.ls81{letter-spacing:2.623104px;}
.ls65{letter-spacing:2.661120px;}
.ls36{letter-spacing:3.294720px;}
.ls7f{letter-spacing:3.339072px;}
.lsa4{letter-spacing:3.594816px;}
.lsb3{letter-spacing:3.634632px;}
.ls74{letter-spacing:3.643200px;}
.lsc1{letter-spacing:3.726000px;}
.lsc2{letter-spacing:3.882600px;}
.ls31{letter-spacing:3.966336px;}
.ls38{letter-spacing:3.991680px;}
.ls94{letter-spacing:4.055040px;}
.ls9b{letter-spacing:4.061376px;}
.ls37{letter-spacing:4.112064px;}
.ls48{letter-spacing:4.188096px;}
.ls6f{letter-spacing:4.194432px;}
.lsc{letter-spacing:4.242960px;}
.lsb4{letter-spacing:4.322880px;}
.ls93{letter-spacing:4.340160px;}
.ls67{letter-spacing:4.688640px;}
.ls53{letter-spacing:4.885056px;}
.lsb{letter-spacing:4.960080px;}
.ls33{letter-spacing:5.024448px;}
.ls55{letter-spacing:5.448960px;}
.ls78{letter-spacing:5.474304px;}
.ls54{letter-spacing:5.512320px;}
.lsc0{letter-spacing:5.886000px;}
.ls29{letter-spacing:6.145920px;}
.ls5e{letter-spacing:6.196608px;}
.ls92{letter-spacing:6.297984px;}
.ls11{letter-spacing:6.454080px;}
.lsa9{letter-spacing:6.546888px;}
.ls82{letter-spacing:6.842880px;}
.lse{letter-spacing:7.171200px;}
.ls5c{letter-spacing:7.603200px;}
.ls68{letter-spacing:7.717248px;}
.ls5d{letter-spacing:7.761600px;}
.ls85{letter-spacing:7.767936px;}
.ls52{letter-spacing:8.300160px;}
.ls69{letter-spacing:8.369856px;}
.ls87{letter-spacing:8.534592px;}
.lsd{letter-spacing:8.605440px;}
.ls47{letter-spacing:8.997120px;}
.ls9a{letter-spacing:9.130176px;}
.ls6{letter-spacing:9.322560px;}
.lsa5{letter-spacing:9.544464px;}
.ls2f{letter-spacing:9.561024px;}
.ls59{letter-spacing:9.757440px;}
.ls9{letter-spacing:10.039680px;}
.lsa1{letter-spacing:10.454400px;}
.ls88{letter-spacing:10.555776px;}
.ls12{letter-spacing:10.756800px;}
.ls4c{letter-spacing:11.214720px;}
.ls2e{letter-spacing:11.290752px;}
.ls35{letter-spacing:11.911680px;}
.ls80{letter-spacing:11.956032px;}
.ls34{letter-spacing:12.019392px;}
.ls64{letter-spacing:12.608640px;}
.ls95{letter-spacing:12.925440px;}
.ls84{letter-spacing:13.368960px;}
.ls73{letter-spacing:13.394304px;}
.ls8e{letter-spacing:14.065920px;}
.ls71{letter-spacing:14.408064px;}
.ls5b{letter-spacing:14.762880px;}
.ls50{letter-spacing:14.940288px;}
.ls51{letter-spacing:14.959296px;}
.ls72{letter-spacing:15.086016px;}
.ls97{letter-spacing:15.611904px;}
.ls63{letter-spacing:16.220160px;}
.lsc3{letter-spacing:16.686000px;}
.ls30{letter-spacing:16.917120px;}
.ls32{letter-spacing:18.374400px;}
.ls83{letter-spacing:19.134720px;}
.ls46{letter-spacing:20.528640px;}
.ls8a{letter-spacing:21.352320px;}
.ls89{letter-spacing:21.447360px;}
.ls9c{letter-spacing:21.985920px;}
.ls4a{letter-spacing:22.023936px;}
.ls4b{letter-spacing:22.049280px;}
.ls91{letter-spacing:23.443200px;}
.ls96{letter-spacing:23.519232px;}
.ls86{letter-spacing:23.607936px;}
.ls49{letter-spacing:24.837120px;}
.lsf{letter-spacing:25.158960px;}
.ls98{letter-spacing:25.755840px;}
.ls99{letter-spacing:26.294400px;}
.ls66{letter-spacing:26.414784px;}
.lsa8{letter-spacing:27.393408px;}
.lsa2{letter-spacing:27.764352px;}
.lsa3{letter-spacing:27.910080px;}
.ls60{letter-spacing:28.714752px;}
.ls28{letter-spacing:28.816128px;}
.lsb5{letter-spacing:29.577600px;}
.lsb6{letter-spacing:33.161040px;}
.lsb9{letter-spacing:35.322480px;}
.lsba{letter-spacing:35.339544px;}
.lsb8{letter-spacing:36.039168px;}
.ls13{letter-spacing:37.409760px;}
.ls76{letter-spacing:37.958976px;}
.ls77{letter-spacing:37.984320px;}
.lsb7{letter-spacing:42.534864px;}
.ls10{letter-spacing:49.600800px;}
.lsb1{letter-spacing:169.957440px;}
.lsa0{letter-spacing:1355.052240px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws2{word-spacing:-31.625280px;}
.ws1{word-spacing:-31.056480px;}
.wsc{word-spacing:-25.950960px;}
.ws9c{word-spacing:-23.418720px;}
.wsbc{word-spacing:-23.081760px;}
.ws9e{word-spacing:-22.744800px;}
.ws3{word-spacing:-22.660560px;}
.ws9d{word-spacing:-22.407840px;}
.ws104{word-spacing:-20.304000px;}
.wsee{word-spacing:-19.944000px;}
.wsd0{word-spacing:-18.083520px;}
.ws5b{word-spacing:-17.677440px;}
.ws58{word-spacing:-17.614080px;}
.wse0{word-spacing:-17.424000px;}
.wsed{word-spacing:-17.297280px;}
.ws5a{word-spacing:-17.233920px;}
.wsba{word-spacing:-17.107200px;}
.wsec{word-spacing:-17.043840px;}
.ws54{word-spacing:-16.917120px;}
.wseb{word-spacing:-16.727040px;}
.ws57{word-spacing:-16.663680px;}
.ws5{word-spacing:-16.613280px;}
.ws53{word-spacing:-16.608960px;}
.ws59{word-spacing:-16.600320px;}
.ws8{word-spacing:-16.493760px;}
.ws5c{word-spacing:-16.473600px;}
.ws5d{word-spacing:-16.410240px;}
.wsd1{word-spacing:-16.346880px;}
.ws7{word-spacing:-16.314480px;}
.ws55{word-spacing:-16.220160px;}
.ws9f{word-spacing:-16.156800px;}
.wsbb{word-spacing:-15.966720px;}
.ws106{word-spacing:-15.869520px;}
.ws56{word-spacing:-15.840000px;}
.wsa2{word-spacing:-15.812640px;}
.ws4{word-spacing:-15.776640px;}
.ws11c{word-spacing:-15.755760px;}
.ws6{word-spacing:-15.657120px;}
.ws9{word-spacing:-15.597360px;}
.wsc3{word-spacing:-15.523200px;}
.ws11a{word-spacing:-15.471360px;}
.wsc5{word-spacing:-15.459840px;}
.ws107{word-spacing:-15.414480px;}
.ws109{word-spacing:-15.300720px;}
.wsc4{word-spacing:-15.206400px;}
.wsa1{word-spacing:-15.130080px;}
.ws11b{word-spacing:-15.073200px;}
.wsb{word-spacing:-15.059520px;}
.ws13d{word-spacing:-15.012000px;}
.wsa0{word-spacing:-14.902560px;}
.ws108{word-spacing:-14.731920px;}
.ws11d{word-spacing:-14.618160px;}
.ws13e{word-spacing:-14.526000px;}
.ws105{word-spacing:-14.504400px;}
.ws119{word-spacing:-14.447520px;}
.ws140{word-spacing:-14.418000px;}
.ws13f{word-spacing:-14.310000px;}
.ws141{word-spacing:-14.202000px;}
.wsda{word-spacing:-6.082560px;}
.wsbe{word-spacing:-4.688640px;}
.wsf6{word-spacing:-4.371840px;}
.ws138{word-spacing:-4.322880px;}
.ws99{word-spacing:-3.928320px;}
.ws139{word-spacing:-3.754080px;}
.ws127{word-spacing:-3.583440px;}
.ws100{word-spacing:-3.548160px;}
.ws4b{word-spacing:-3.525840px;}
.wsa3{word-spacing:-3.484800px;}
.ws71{word-spacing:-3.231360px;}
.ws146{word-spacing:-2.970000px;}
.wsb6{word-spacing:-2.900880px;}
.ws51{word-spacing:-2.808720px;}
.ws14f{word-spacing:-2.700000px;}
.ws62{word-spacing:-2.534400px;}
.wsde{word-spacing:-2.471040px;}
.ws137{word-spacing:-2.388960px;}
.ws144{word-spacing:-2.268000px;}
.wscc{word-spacing:-2.217600px;}
.wsad{word-spacing:-2.161440px;}
.ws143{word-spacing:-2.160000px;}
.wsb1{word-spacing:-2.151360px;}
.ws25{word-spacing:-2.091600px;}
.wsf4{word-spacing:-1.900800px;}
.wsc2{word-spacing:-1.837440px;}
.ws6e{word-spacing:-1.774080px;}
.wsd3{word-spacing:-1.457280px;}
.ws12a{word-spacing:-1.422000px;}
.ws26{word-spacing:-1.374480px;}
.wsb3{word-spacing:-1.195200px;}
.ws13b{word-spacing:-1.194480px;}
.ws67{word-spacing:-1.077120px;}
.wsd{word-spacing:-1.023840px;}
.ws5e{word-spacing:-0.910080px;}
.ws10a{word-spacing:-0.796320px;}
.ws121{word-spacing:-0.739440px;}
.ws23{word-spacing:-0.657360px;}
.ws126{word-spacing:-0.511920px;}
.wse6{word-spacing:-0.506880px;}
.ws21{word-spacing:-0.478080px;}
.ws78{word-spacing:-0.380160px;}
.ws30{word-spacing:-0.358560px;}
.ws70{word-spacing:-0.316800px;}
.ws120{word-spacing:-0.284400px;}
.wse4{word-spacing:-0.264960px;}
.wse1{word-spacing:-0.144000px;}
.ws147{word-spacing:-0.108000px;}
.ws77{word-spacing:-0.063360px;}
.ws115{word-spacing:-0.056880px;}
.ws0{word-spacing:0.000000px;}
.ws128{word-spacing:0.056880px;}
.ws2d{word-spacing:0.059760px;}
.ws150{word-spacing:0.108000px;}
.ws122{word-spacing:0.113760px;}
.ws31{word-spacing:0.119520px;}
.wsd7{word-spacing:0.132480px;}
.wsd2{word-spacing:0.216000px;}
.ws32{word-spacing:0.298800px;}
.ws81{word-spacing:0.316800px;}
.wse{word-spacing:0.341280px;}
.ws2a{word-spacing:0.358560px;}
.ws61{word-spacing:0.380160px;}
.ws114{word-spacing:0.398160px;}
.ws11{word-spacing:0.421200px;}
.wsf{word-spacing:0.455040px;}
.wsdf{word-spacing:0.463680px;}
.ws4f{word-spacing:0.478080px;}
.ws145{word-spacing:0.486000px;}
.ws9a{word-spacing:0.506880px;}
.ws113{word-spacing:0.511920px;}
.wsf0{word-spacing:0.570240px;}
.ws155{word-spacing:0.594000px;}
.wsc1{word-spacing:0.673920px;}
.ws10{word-spacing:0.682560px;}
.ws69{word-spacing:0.696960px;}
.ws11f{word-spacing:0.739440px;}
.wse7{word-spacing:0.758160px;}
.ws22{word-spacing:0.776880px;}
.wsf5{word-spacing:0.823680px;}
.ws16{word-spacing:0.836640px;}
.ws142{word-spacing:0.864000px;}
.ws123{word-spacing:0.910080px;}
.ws88{word-spacing:0.950400px;}
.ws4e{word-spacing:0.956160px;}
.ws5f{word-spacing:1.010880px;}
.ws8c{word-spacing:1.013760px;}
.ws3a{word-spacing:1.015920px;}
.ws63{word-spacing:1.077120px;}
.wsab{word-spacing:1.095120px;}
.ws76{word-spacing:1.140480px;}
.ws7d{word-spacing:1.203840px;}
.ws14c{word-spacing:1.296000px;}
.ws131{word-spacing:1.308240px;}
.ws64{word-spacing:1.393920px;}
.ws110{word-spacing:1.422000px;}
.wsa7{word-spacing:1.457280px;}
.ws20{word-spacing:1.494000px;}
.ws4c{word-spacing:1.553760px;}
.wsfe{word-spacing:1.710720px;}
.wsa4{word-spacing:1.774080px;}
.ws4a{word-spacing:1.792800px;}
.ws92{word-spacing:1.837440px;}
.ws149{word-spacing:2.052000px;}
.wsb8{word-spacing:2.106000px;}
.ws148{word-spacing:2.160000px;}
.wsb0{word-spacing:2.161440px;}
.ws2e{word-spacing:2.211120px;}
.ws2f{word-spacing:2.390400px;}
.ws4d{word-spacing:2.509920px;}
.ws95{word-spacing:2.534400px;}
.ws1d{word-spacing:2.928240px;}
.wsc8{word-spacing:3.041280px;}
.wsf8{word-spacing:3.104640px;}
.ws79{word-spacing:3.231360px;}
.ws154{word-spacing:3.510000px;}
.wsca{word-spacing:3.548160px;}
.ws11e{word-spacing:3.583440px;}
.ws39{word-spacing:3.705120px;}
.ws7c{word-spacing:3.928320px;}
.ws8f{word-spacing:3.991680px;}
.ws151{word-spacing:4.212000px;}
.ws152{word-spacing:4.320000px;}
.ws10f{word-spacing:4.322880px;}
.wsf2{word-spacing:4.371840px;}
.ws28{word-spacing:4.422240px;}
.wsf3{word-spacing:4.561920px;}
.ws86{word-spacing:4.625280px;}
.ws72{word-spacing:4.688640px;}
.ws14e{word-spacing:4.914000px;}
.ws14d{word-spacing:5.022000px;}
.ws117{word-spacing:5.062320px;}
.ws35{word-spacing:5.139360px;}
.ws29{word-spacing:5.258880px;}
.ws6f{word-spacing:5.385600px;}
.wsa8{word-spacing:5.702400px;}
.wsea{word-spacing:5.829120px;}
.ws12{word-spacing:5.856480px;}
.ws87{word-spacing:6.145920px;}
.ws14b{word-spacing:6.372000px;}
.ws14a{word-spacing:6.480000px;}
.ws118{word-spacing:6.484320px;}
.wsef{word-spacing:6.716160px;}
.ws48{word-spacing:6.812640px;}
.ws60{word-spacing:6.842880px;}
.wsaf{word-spacing:7.223760px;}
.ws38{word-spacing:7.290720px;}
.ws97{word-spacing:7.603200px;}
.wsae{word-spacing:7.906320px;}
.wsc6{word-spacing:7.920000px;}
.ws37{word-spacing:8.007840px;}
.wsf7{word-spacing:8.173440px;}
.ws49{word-spacing:8.187120px;}
.ws75{word-spacing:8.300160px;}
.ws1c{word-spacing:8.366400px;}
.ws47{word-spacing:8.724960px;}
.ws6a{word-spacing:8.997120px;}
.ws1b{word-spacing:9.442080px;}
.ws3b{word-spacing:9.561600px;}
.ws80{word-spacing:9.694080px;}
.wsb9{word-spacing:9.757440px;}
.ws111{word-spacing:10.067760px;}
.ws17{word-spacing:10.159200px;}
.wsf1{word-spacing:10.327680px;}
.wsa5{word-spacing:10.454400px;}
.ws112{word-spacing:10.807200px;}
.ws18{word-spacing:10.876320px;}
.ws10c{word-spacing:11.024640px;}
.ws7f{word-spacing:11.151360px;}
.ws12f{word-spacing:11.546640px;}
.ws1e{word-spacing:11.593440px;}
.ws130{word-spacing:11.603520px;}
.ws24{word-spacing:11.712960px;}
.wsdb{word-spacing:11.721600px;}
.wsa6{word-spacing:11.848320px;}
.ws6b{word-spacing:11.911680px;}
.ws12d{word-spacing:12.229200px;}
.ws1f{word-spacing:12.310560px;}
.ws12e{word-spacing:12.456720px;}
.ws90{word-spacing:12.608640px;}
.ws2c{word-spacing:13.027680px;}
.ws101{word-spacing:13.178880px;}
.wsc0{word-spacing:13.305600px;}
.ws124{word-spacing:13.708080px;}
.ws43{word-spacing:13.744800px;}
.wsd8{word-spacing:14.002560px;}
.ws7e{word-spacing:14.065920px;}
.ws10b{word-spacing:14.382720px;}
.wsb5{word-spacing:14.461920px;}
.ws96{word-spacing:14.762880px;}
.wsfd{word-spacing:15.396480px;}
.ws7a{word-spacing:15.459840px;}
.ws8e{word-spacing:15.523200px;}
.ws27{word-spacing:15.896160px;}
.ws83{word-spacing:16.156800px;}
.ws8d{word-spacing:16.220160px;}
.wsfc{word-spacing:16.536960px;}
.ws10e{word-spacing:16.552080px;}
.ws82{word-spacing:16.600320px;}
.ws13{word-spacing:16.613280px;}
.ws102{word-spacing:16.727040px;}
.ws6c{word-spacing:16.917120px;}
.ws153{word-spacing:17.172000px;}
.ws12c{word-spacing:17.291520px;}
.ws41{word-spacing:17.330400px;}
.ws84{word-spacing:17.614080px;}
.ws91{word-spacing:17.677440px;}
.ws136{word-spacing:17.974080px;}
.ws85{word-spacing:17.994240px;}
.wsb4{word-spacing:18.047520px;}
.ws34{word-spacing:18.107280px;}
.ws42{word-spacing:18.226800px;}
.ws7b{word-spacing:18.374400px;}
.wsb7{word-spacing:18.713520px;}
.ws19{word-spacing:18.824400px;}
.wsfa{word-spacing:18.944640px;}
.ws8a{word-spacing:19.071360px;}
.ws8b{word-spacing:19.324800px;}
.ws89{word-spacing:19.388160px;}
.ws1a{word-spacing:19.541520px;}
.wsd4{word-spacing:19.831680px;}
.ws66{word-spacing:20.528640px;}
.ws36{word-spacing:20.975760px;}
.ws65{word-spacing:21.225600px;}
.ws40{word-spacing:21.692880px;}
.wsbd{word-spacing:21.985920px;}
.ws73{word-spacing:22.682880px;}
.wsff{word-spacing:22.936320px;}
.ws46{word-spacing:23.127120px;}
.ws3f{word-spacing:23.246640px;}
.wscb{word-spacing:23.443200px;}
.ws3e{word-spacing:23.844240px;}
.wsfb{word-spacing:24.013440px;}
.ws98{word-spacing:24.140160px;}
.wscf{word-spacing:24.456960px;}
.ws44{word-spacing:24.561360px;}
.wsb2{word-spacing:25.278480px;}
.ws3c{word-spacing:25.517520px;}
.ws74{word-spacing:25.597440px;}
.ws3d{word-spacing:25.995600px;}
.wsdc{word-spacing:26.294400px;}
.ws13a{word-spacing:26.619840px;}
.wsc9{word-spacing:26.991360px;}
.ws116{word-spacing:27.359280px;}
.wsd9{word-spacing:27.688320px;}
.wsac{word-spacing:27.751680px;}
.ws50{word-spacing:28.146960px;}
.wscd{word-spacing:28.448640px;}
.ws6d{word-spacing:29.145600px;}
.ws125{word-spacing:29.520720px;}
.ws33{word-spacing:29.581200px;}
.ws9b{word-spacing:29.905920px;}
.wsa9{word-spacing:30.602880px;}
.wsd5{word-spacing:31.363200px;}
.ws68{word-spacing:32.060160px;}
.wsaa{word-spacing:32.757120px;}
.wse3{word-spacing:33.517440px;}
.ws129{word-spacing:33.843600px;}
.wsdd{word-spacing:34.214400px;}
.ws135{word-spacing:34.583040px;}
.ws10d{word-spacing:34.911360px;}
.wse9{word-spacing:35.671680px;}
.ws134{word-spacing:36.005040px;}
.ws133{word-spacing:36.232560px;}
.wse8{word-spacing:36.368640px;}
.ws132{word-spacing:36.744480px;}
.wsc7{word-spacing:37.065600px;}
.ws103{word-spacing:37.825920px;}
.ws52{word-spacing:38.246400px;}
.wsd6{word-spacing:38.522880px;}
.wse5{word-spacing:39.283200px;}
.wse2{word-spacing:39.980160px;}
.ws93{word-spacing:40.677120px;}
.ws12b{word-spacing:42.489360px;}
.wsf9{word-spacing:42.831360px;}
.ws2b{word-spacing:48.345840px;}
.wsbf{word-spacing:48.597120px;}
.ws15{word-spacing:49.780080px;}
.ws94{word-spacing:50.054400px;}
.ws45{word-spacing:50.497200px;}
.ws14{word-spacing:50.676480px;}
.wsce{word-spacing:59.431680px;}
.ws13c{word-spacing:64.786320px;}
._14{margin-left:-9.993312px;}
._17{margin-left:-5.512320px;}
._13{margin-left:-3.864960px;}
._5{margin-left:-2.556144px;}
._1{margin-left:-1.433376px;}
._3{width:1.183104px;}
._2{width:2.548224px;}
._15{width:4.474512px;}
._d{width:6.019200px;}
._f{width:7.937568px;}
._6{width:9.262800px;}
._9{width:10.664496px;}
._4{width:11.845296px;}
._19{width:12.882816px;}
._11{width:14.168736px;}
._10{width:16.006176px;}
._7{width:18.131472px;}
._8{width:19.901520px;}
._16{width:20.929536px;}
._12{width:23.482656px;}
._1d{width:25.186464px;}
._a{width:26.354160px;}
._18{width:28.488096px;}
._e{width:31.529376px;}
._1f{width:35.242848px;}
._b{width:37.242576px;}
._1e{width:42.773760px;}
._20{width:64.922832px;}
._1c{width:110.104848px;}
._1a{width:149.821920px;}
._1b{width:156.021840px;}
._0{width:214.917120px;}
._c{width:1371.604320px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:transparent;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsd{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fsa{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:63.360000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:113.760000px;}
.fs7{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y77{bottom:15.480000px;}
.y79{bottom:18.180000px;}
.y6{bottom:35.925007px;}
.y24{bottom:49.860000px;}
.y37d{bottom:50.402880px;}
.y5{bottom:66.525004px;}
.y3a1{bottom:87.660000px;}
.y313{bottom:89.346240px;}
.y29b{bottom:90.214560px;}
.y2c6{bottom:90.483840px;}
.y2e7{bottom:90.570240px;}
.y50{bottom:95.328000px;}
.y75{bottom:95.970420px;}
.y4{bottom:97.125005px;}
.y130{bottom:99.388800px;}
.yfe{bottom:99.527040px;}
.y1f9{bottom:102.667680px;}
.y225{bottom:103.940640px;}
.y3a0{bottom:104.940000px;}
.y1a8{bottom:105.783840px;}
.y15a{bottom:108.207360px;}
.y24a{bottom:108.532800px;}
.y185{bottom:108.622080px;}
.yd2{bottom:111.633120px;}
.y312{bottom:111.839040px;}
.y29a{bottom:112.897440px;}
.y2c5{bottom:112.976640px;}
.y2e6{bottom:113.063040px;}
.y4f{bottom:113.330700px;}
.y74{bottom:113.973120px;}
.y12f{bottom:121.881600px;}
.yfd{bottom:122.019840px;}
.y1f8{bottom:125.350560px;}
.y224{bottom:126.433440px;}
.y1a7{bottom:128.276640px;}
.y34c{bottom:130.089600px;}
.y249{bottom:131.025600px;}
.y159{bottom:131.064480px;}
.y184{bottom:131.114880px;}
.y39f{bottom:131.224500px;}
.y4e{bottom:131.333400px;}
.y73{bottom:131.975820px;}
.yd1{bottom:134.125920px;}
.ya5{bottom:134.632800px;}
.y2c4{bottom:135.469440px;}
.y2e5{bottom:135.555840px;}
.y299{bottom:135.580320px;}
.y22{bottom:139.264499px;}
.y311{bottom:143.344800px;}
.y12e{bottom:144.374400px;}
.yfc{bottom:144.512640px;}
.y1f7{bottom:147.843360px;}
.y34b{bottom:148.092120px;}
.y37b{bottom:148.284720px;}
.y39e{bottom:148.504500px;}
.y223{bottom:148.926240px;}
.y4d{bottom:149.336100px;}
.y72{bottom:149.978520px;}
.y1a6{bottom:150.769440px;}
.y248{bottom:153.518400px;}
.y183{bottom:153.607680px;}
.y158{bottom:154.111680px;}
.yd0{bottom:156.618720px;}
.ya4{bottom:157.489920px;}
.y2c3{bottom:157.962240px;}
.y2e4{bottom:158.048640px;}
.y298{bottom:158.263200px;}
.y39d{bottom:165.609000px;}
.y310{bottom:165.837600px;}
.y37a{bottom:166.287240px;}
.y12d{bottom:166.867200px;}
.yfb{bottom:167.005440px;}
.y4c{bottom:167.338800px;}
.y71{bottom:167.981220px;}
.y1f6{bottom:170.526240px;}
.y222{bottom:171.419040px;}
.y1a5{bottom:173.262240px;}
.y34a{bottom:175.095900px;}
.y247{bottom:176.011200px;}
.y182{bottom:176.100480px;}
.y157{bottom:176.968800px;}
.ycf{bottom:179.111520px;}
.ya3{bottom:180.347040px;}
.y2c2{bottom:180.455040px;}
.y2e3{bottom:180.541440px;}
.y297{bottom:180.946080px;}
.y39c{bottom:182.889000px;}
.y379{bottom:184.289760px;}
.y4b{bottom:185.341500px;}
.y70{bottom:186.163200px;}
.y120{bottom:187.740000px;}
.y30f{bottom:188.330400px;}
.y12c{bottom:189.360000px;}
.yfa{bottom:189.498240px;}
.y349{bottom:193.098420px;}
.y1f5{bottom:193.209120px;}
.y221{bottom:193.911840px;}
.y1a4{bottom:195.755040px;}
.y19{bottom:196.933500px;}
.y246{bottom:198.504000px;}
.y181{bottom:198.593280px;}
.y156{bottom:200.016000px;}
.yce{bottom:201.604320px;}
.y2c1{bottom:202.947840px;}
.ya2{bottom:203.029920px;}
.y2e2{bottom:203.034240px;}
.y4a{bottom:203.344200px;}
.y296{bottom:203.628960px;}
.y11e{bottom:207.360000px;}
.y39b{bottom:209.173500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y30e{bottom:210.823200px;}
.y348{bottom:211.100940px;}
.y378{bottom:211.293540px;}
.yf9{bottom:211.991040px;}
.y6f{bottom:212.621940px;}
.y1f4{bottom:215.892000px;}
.y220{bottom:216.404640px;}
.y1a3{bottom:218.247840px;}
.y245{bottom:220.996800px;}
.y180{bottom:221.086080px;}
.y49{bottom:221.346900px;}
.y12b{bottom:221.941080px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y155{bottom:222.873120px;}
.ycd{bottom:224.097120px;}
.y2c0{bottom:225.440640px;}
.y2e1{bottom:225.527040px;}
.ya1{bottom:225.887040px;}
.y295{bottom:226.121760px;}
.y377{bottom:229.296060px;}
.y6e{bottom:230.624640px;}
.y30d{bottom:233.316000px;}
.y1d0{bottom:233.501760px;}
.yf8{bottom:234.483840px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y39a{bottom:235.458000px;}
.y347{bottom:238.104720px;}
.y1f3{bottom:238.574880px;}
.y21f{bottom:238.897440px;}
.y48{bottom:239.349600px;}
.y1a2{bottom:240.740640px;}
.y271{bottom:243.453600px;}
.y244{bottom:243.489600px;}
.y17f{bottom:243.578880px;}
.y154{bottom:245.920320px;}
.ycc{bottom:246.589920px;}
.y376{bottom:247.298580px;}
.y2bf{bottom:247.933440px;}
.y2e0{bottom:248.019840px;}
.y6d{bottom:248.627340px;}
.ya0{bottom:248.744160px;}
.y294{bottom:248.804640px;}
.y12a{bottom:248.940000px;}
.y399{bottom:252.738000px;}
.y30c{bottom:255.808800px;}
.y1cf{bottom:255.994560px;}
.y346{bottom:256.107240px;}
.yf7{bottom:256.976640px;}
.y47{bottom:257.352300px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1f2{bottom:261.257760px;}
.y1a1{bottom:263.233440px;}
.y375{bottom:265.301100px;}
.y270{bottom:265.946400px;}
.y243{bottom:265.982400px;}
.y17e{bottom:266.071680px;}
.y6c{bottom:266.630040px;}
.y153{bottom:268.777440px;}
.ycb{bottom:269.082720px;}
.y21e{bottom:270.403200px;}
.y2df{bottom:270.512640px;}
.y9f{bottom:271.427040px;}
.y293{bottom:271.487520px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y398{bottom:274.513500px;}
.y46{bottom:275.355000px;}
.y30b{bottom:278.301600px;}
.y1ce{bottom:278.487360px;}
.y2be{bottom:279.439200px;}
.yf6{bottom:279.469440px;}
.y345{bottom:283.111020px;}
.y1f1{bottom:283.750560px;}
.y6b{bottom:284.632740px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y26f{bottom:288.439200px;}
.y242{bottom:288.475200px;}
.y17d{bottom:288.564480px;}
.yca{bottom:291.575520px;}
.y1a0{bottom:291.666240px;}
.y152{bottom:291.824640px;}
.y374{bottom:292.304880px;}
.y21d{bottom:292.896000px;}
.y2de{bottom:293.005440px;}
.y45{bottom:293.357700px;}
.y292{bottom:294.170400px;}
.y9e{bottom:294.284160px;}
.y119{bottom:294.300000px;}
.y10f{bottom:295.200000px;}
.y397{bottom:298.989000px;}
.y30a{bottom:300.794400px;}
.y1cd{bottom:300.980160px;}
.y344{bottom:301.113540px;}
.y2bd{bottom:301.932000px;}
.yf5{bottom:301.962240px;}
.y1f0{bottom:306.433440px;}
.y129{bottom:307.260000px;}
.y373{bottom:310.307400px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y26e{bottom:310.932000px;}
.y241{bottom:310.968000px;}
.y17c{bottom:311.057280px;}
.y6a{bottom:311.091480px;}
.y44{bottom:311.360400px;}
.yc9{bottom:314.068320px;}
.y19f{bottom:314.159040px;}
.y21c{bottom:315.388800px;}
.y2dd{bottom:315.498240px;}
.y396{bottom:316.984500px;}
.y9d{bottom:317.141280px;}
.y343{bottom:319.116060px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y309{bottom:323.287200px;}
.y1cc{bottom:323.472960px;}
.y151{bottom:323.678880px;}
.y2bc{bottom:324.424800px;}
.yf4{bottom:324.455040px;}
.y291{bottom:325.850400px;}
.y128{bottom:326.880000px;}
.y69{bottom:329.094180px;}
.y1ef{bottom:329.116320px;}
.y43{bottom:329.363100px;}
.y26d{bottom:333.424800px;}
.y240{bottom:333.460800px;}
.y395{bottom:334.980000px;}
.yc8{bottom:336.561120px;}
.y19e{bottom:336.651840px;}
.y372{bottom:337.311180px;}
.y21b{bottom:337.881600px;}
.y2dc{bottom:337.991040px;}
.y9c{bottom:339.824160px;}
.y17b{bottom:342.563040px;}
.y308{bottom:345.780000px;}
.y1cb{bottom:345.965760px;}
.y342{bottom:346.119840px;}
.y127{bottom:346.320000px;}
.y150{bottom:346.726080px;}
.y2bb{bottom:346.917600px;}
.yf3{bottom:346.947840px;}
.y68{bottom:347.096880px;}
.y10{bottom:348.133500px;}
.y290{bottom:348.533280px;}
.y1ee{bottom:351.799200px;}
.y371{bottom:355.313700px;}
.y26c{bottom:355.917600px;}
.y23f{bottom:355.953600px;}
.yc7{bottom:359.053920px;}
.y19d{bottom:359.144640px;}
.y21a{bottom:360.374400px;}
.y2db{bottom:360.483840px;}
.y394{bottom:361.980000px;}
.y9b{bottom:362.681280px;}
.y341{bottom:364.122360px;}
.y17a{bottom:365.055840px;}
.y67{bottom:365.099580px;}
.y42{bottom:365.368500px;}
.y126{bottom:365.940000px;}
.y1ca{bottom:368.458560px;}
.y2ba{bottom:369.410400px;}
.yf2{bottom:369.440640px;}
.y14f{bottom:369.583200px;}
.y28f{bottom:371.026080px;}
.y370{bottom:373.316220px;}
.y1ed{bottom:374.482080px;}
.y307{bottom:377.640000px;}
.y26b{bottom:378.410400px;}
.y23e{bottom:378.446400px;}
.yc6{bottom:381.546720px;}
.y19c{bottom:381.637440px;}
.y340{bottom:382.124880px;}
.y219{bottom:382.867200px;}
.y2da{bottom:382.976640px;}
.y66{bottom:383.102280px;}
.y41{bottom:383.729760px;}
.y9a{bottom:385.538400px;}
.y125{bottom:385.560000px;}
.yf{bottom:386.785499px;}
.y179{bottom:387.548640px;}
.y1c9{bottom:390.951360px;}
.y2b9{bottom:391.903200px;}
.yf1{bottom:391.933440px;}
.y14e{bottom:392.630400px;}
.y28e{bottom:393.708960px;}
.y1ec{bottom:397.164960px;}
.y393{bottom:397.984500px;}
.y306{bottom:400.140000px;}
.y36f{bottom:400.219200px;}
.y26a{bottom:400.903200px;}
.y23d{bottom:400.939200px;}
.y40{bottom:401.911740px;}
.yc5{bottom:404.039520px;}
.y19b{bottom:404.130240px;}
.y124{bottom:405.000000px;}
.y218{bottom:405.360000px;}
.ye{bottom:408.044999px;}
.y99{bottom:408.221280px;}
.y33f{bottom:409.128660px;}
.y65{bottom:409.561020px;}
.y178{bottom:410.041440px;}
.y1c8{bottom:413.444160px;}
.y2b8{bottom:414.396000px;}
.yf0{bottom:414.426240px;}
.y2d9{bottom:414.482400px;}
.y14d{bottom:415.487520px;}
.y392{bottom:415.980000px;}
.y28d{bottom:416.391840px;}
.y36e{bottom:418.221720px;}
.y1eb{bottom:419.657760px;}
.y3f{bottom:420.273000px;}
.y269{bottom:423.396000px;}
.y23c{bottom:423.432000px;}
.y123{bottom:424.440000px;}
.y19a{bottom:426.623040px;}
.y33e{bottom:427.131180px;}
.y64{bottom:427.563720px;}
.y98{bottom:431.078400px;}
.y177{bottom:432.534240px;}
.y391{bottom:433.975500px;}
.yc4{bottom:435.545280px;}
.y1c7{bottom:435.936960px;}
.y217{bottom:436.860000px;}
.y2b7{bottom:436.888800px;}
.yef{bottom:436.919040px;}
.y2d8{bottom:436.975200px;}
.y14c{bottom:438.534720px;}
.y3e{bottom:438.634260px;}
.y28c{bottom:439.074720px;}
.y305{bottom:440.539200px;}
.y1ea{bottom:442.340640px;}
.y122{bottom:444.060000px;}
.y36d{bottom:445.225500px;}
.y63{bottom:445.566420px;}
.y268{bottom:445.888800px;}
.y23b{bottom:445.924800px;}
.y199{bottom:449.115840px;}
.y110{bottom:450.360000px;}
.y97{bottom:453.935520px;}
.y33d{bottom:454.134960px;}
.y176{bottom:455.027040px;}
.y3d{bottom:456.816240px;}
.yc3{bottom:457.863840px;}
.y1c6{bottom:458.429760px;}
.y2b6{bottom:459.381600px;}
.yee{bottom:459.411840px;}
.y2d7{bottom:459.468000px;}
.y14b{bottom:461.391840px;}
.y28b{bottom:461.757600px;}
.y304{bottom:463.032000px;}
.y36c{bottom:463.228020px;}
.y121{bottom:463.500000px;}
.y62{bottom:463.569120px;}
.y1e9{bottom:465.023520px;}
.y267{bottom:468.381600px;}
.y23a{bottom:468.417600px;}
.y216{bottom:468.603360px;}
.y390{bottom:469.980000px;}
.y198{bottom:471.608640px;}
.y33c{bottom:472.137480px;}
.y3c{bottom:475.177500px;}
.y96{bottom:476.618400px;}
.y175{bottom:477.519840px;}
.yc2{bottom:480.356640px;}
.y1c5{bottom:480.922560px;}
.y61{bottom:481.571820px;}
.y2b5{bottom:481.874400px;}
.yed{bottom:481.904640px;}
.y2d6{bottom:481.960800px;}
.y11f{bottom:482.940000px;}
.y14a{bottom:484.439040px;}
.y28a{bottom:484.440480px;}
.y303{bottom:485.714880px;}
.y38f{bottom:487.435500px;}
.y33b{bottom:490.140000px;}
.y36b{bottom:490.231800px;}
.y266{bottom:490.874400px;}
.y239{bottom:490.910400px;}
.y215{bottom:491.096160px;}
.y3b{bottom:493.538760px;}
.y197{bottom:494.101440px;}
.y1e8{bottom:496.703520px;}
.y95{bottom:499.475520px;}
.y60{bottom:499.574520px;}
.y174{bottom:500.012640px;}
.y11d{bottom:502.560000px;}
.yc1{bottom:502.675200px;}
.yd{bottom:502.864502px;}
.y1c4{bottom:503.415360px;}
.y2b4{bottom:504.367200px;}
.yec{bottom:504.397440px;}
.y2d5{bottom:504.453600px;}
.y38e{bottom:504.540000px;}
.y289{bottom:506.933280px;}
.y149{bottom:507.296160px;}
.y36a{bottom:508.234320px;}
.y302{bottom:508.397760px;}
.y3a{bottom:511.720740px;}
.y265{bottom:513.367200px;}
.y238{bottom:513.403200px;}
.y214{bottom:513.588960px;}
.y196{bottom:516.594240px;}
.y33a{bottom:518.760000px;}
.y1e7{bottom:519.560640px;}
.yc{bottom:520.864502px;}
.y94{bottom:522.332640px;}
.y173{bottom:522.505440px;}
.yc0{bottom:524.993760px;}
.y1c3{bottom:525.908160px;}
.y5f{bottom:526.033260px;}
.y2b3{bottom:526.860000px;}
.y2d4{bottom:526.946400px;}
.y288{bottom:529.616160px;}
.y39{bottom:530.082000px;}
.y148{bottom:530.343360px;}
.y11c{bottom:531.000000px;}
.y301{bottom:531.080640px;}
.y369{bottom:535.238100px;}
.y264{bottom:535.860000px;}
.y237{bottom:535.896000px;}
.yeb{bottom:535.903200px;}
.y213{bottom:536.081760px;}
.yb{bottom:538.864499px;}
.y195{bottom:539.087040px;}
.y1e6{bottom:542.243520px;}
.y5e{bottom:544.035960px;}
.y172{bottom:544.998240px;}
.ybf{bottom:547.312320px;}
.y1c2{bottom:548.400960px;}
.y38{bottom:548.443260px;}
.y2d3{bottom:549.439200px;}
.y11b{bottom:550.440000px;}
.y287{bottom:552.299040px;}
.y147{bottom:553.200480px;}
.y368{bottom:553.240620px;}
.y300{bottom:553.763520px;}
.y93{bottom:554.012640px;}
.ya{bottom:556.864499px;}
.y236{bottom:558.388800px;}
.yea{bottom:558.396000px;}
.y2b2{bottom:559.440000px;}
.y194{bottom:561.579840px;}
.y5d{bottom:562.217940px;}
.y339{bottom:562.821120px;}
.y320{bottom:562.932000px;}
.y1e5{bottom:565.100640px;}
.y37{bottom:566.625240px;}
.y263{bottom:567.360000px;}
.y171{bottom:567.491040px;}
.y212{bottom:567.587520px;}
.ybe{bottom:569.630880px;}
.y11a{bottom:570.060000px;}
.y1c1{bottom:570.893760px;}
.y367{bottom:571.243140px;}
.y2d2{bottom:571.932000px;}
.y286{bottom:574.981920px;}
.y2ff{bottom:576.446400px;}
.y92{bottom:576.505440px;}
.y235{bottom:580.881600px;}
.ye9{bottom:580.888800px;}
.y193{bottom:584.072640px;}
.y36{bottom:584.986500px;}
.y146{bottom:585.244800px;}
.y31f{bottom:585.424800px;}
.y338{bottom:585.504000px;}
.y1e4{bottom:587.957760px;}
.y5c{bottom:587.959560px;}
.y118{bottom:589.500000px;}
.y211{bottom:590.080320px;}
.ybd{bottom:591.949440px;}
.y1c0{bottom:593.386560px;}
.y2d1{bottom:594.424800px;}
.y285{bottom:597.664800px;}
.y366{bottom:598.246920px;}
.y2fe{bottom:598.939200px;}
.y170{bottom:598.996800px;}
.y91{bottom:598.998240px;}
.y262{bottom:599.192640px;}
.y35{bottom:603.347760px;}
.y234{bottom:603.374400px;}
.ye8{bottom:603.381600px;}
.y2b1{bottom:603.498240px;}
.y5b{bottom:605.962260px;}
.y192{bottom:606.565440px;}
.y31e{bottom:607.917600px;}
.y145{bottom:607.927680px;}
.y337{bottom:608.361120px;}
.y117{bottom:608.940000px;}
.y1e3{bottom:610.640640px;}
.y210{bottom:612.573120px;}
.ybc{bottom:614.442240px;}
.y1bf{bottom:615.879360px;}
.y365{bottom:616.249440px;}
.y2d0{bottom:616.917600px;}
.y16f{bottom:621.489600px;}
.y90{bottom:621.491040px;}
.y34{bottom:621.529740px;}
.y2fd{bottom:621.622080px;}
.y261{bottom:621.685440px;}
.y5a{bottom:623.964960px;}
.y233{bottom:625.867200px;}
.ye7{bottom:625.874400px;}
.y2b0{bottom:625.991040px;}
.y116{bottom:628.560000px;}
.y191{bottom:629.058240px;}
.y284{bottom:629.344800px;}
.y31d{bottom:630.410400px;}
.y144{bottom:630.784800px;}
.y336{bottom:631.218240px;}
.y1e2{bottom:633.497760px;}
.y364{bottom:634.251960px;}
.y20f{bottom:635.065920px;}
.ybb{bottom:636.760800px;}
.y1be{bottom:638.372160px;}
.y2cf{bottom:639.410400px;}
.y33{bottom:639.891000px;}
.y59{bottom:641.967660px;}
.y16e{bottom:643.982400px;}
.y8f{bottom:643.983840px;}
.y260{bottom:644.178240px;}
.y2fc{bottom:644.304960px;}
.y9{bottom:645.510000px;}
.y115{bottom:648.000000px;}
.y232{bottom:648.360000px;}
.ye6{bottom:648.367200px;}
.y2af{bottom:648.483840px;}
.y190{bottom:651.551040px;}
.y283{bottom:651.837600px;}
.y363{bottom:652.254480px;}
.y31c{bottom:652.903200px;}
.y143{bottom:653.641920px;}
.y335{bottom:653.901120px;}
.y1e1{bottom:656.354880px;}
.y38d{bottom:656.820000px;}
.y20e{bottom:657.558720px;}
.y32{bottom:658.252260px;}
.yba{bottom:659.079360px;}
.y58{bottom:659.970360px;}
.y1bd{bottom:660.864960px;}
.y2ce{bottom:661.903200px;}
.y16d{bottom:666.475200px;}
.y8e{bottom:666.476640px;}
.y25f{bottom:666.671040px;}
.y8{bottom:666.771000px;}
.y114{bottom:667.440000px;}
.ye5{bottom:670.860000px;}
.y2ae{bottom:670.976640px;}
.y18f{bottom:674.043840px;}
.y282{bottom:674.520480px;}
.y31b{bottom:675.396000px;}
.y2fb{bottom:675.984960px;}
.y142{bottom:676.324800px;}
.y31{bottom:676.434240px;}
.y334{bottom:676.758240px;}
.y57{bottom:677.973060px;}
.y1e0{bottom:679.037760px;}
.y362{bottom:679.258260px;}
.y231{bottom:679.860000px;}
.y20d{bottom:680.051520px;}
.yb9{bottom:681.397920px;}
.y1bc{bottom:683.357760px;}
.y2cd{bottom:684.396000px;}
.y113{bottom:687.060000px;}
.y16c{bottom:688.968000px;}
.y8d{bottom:688.969440px;}
.y25e{bottom:689.163840px;}
.y2ad{bottom:693.469440px;}
.y30{bottom:694.795500px;}
.y56{bottom:695.975760px;}
.y18e{bottom:696.536640px;}
.y281{bottom:697.203360px;}
.y361{bottom:697.260780px;}
.y31a{bottom:697.888800px;}
.y2fa{bottom:698.842080px;}
.y141{bottom:699.181920px;}
.y333{bottom:699.615360px;}
.y38c{bottom:701.815500px;}
.y1df{bottom:701.894880px;}
.y20c{bottom:702.544320px;}
.ye4{bottom:703.440000px;}
.yb8{bottom:703.716480px;}
.y1bb{bottom:705.850560px;}
.y112{bottom:706.500000px;}
.y2cc{bottom:706.888800px;}
.y16b{bottom:711.460800px;}
.y8c{bottom:711.462240px;}
.y230{bottom:711.489600px;}
.y25d{bottom:711.656640px;}
.y2f{bottom:713.156760px;}
.y55{bottom:713.978460px;}
.y2ac{bottom:715.962240px;}
.y18d{bottom:719.029440px;}
.y280{bottom:719.886240px;}
.y319{bottom:720.381600px;}
.y2f9{bottom:721.524960px;}
.y140{bottom:722.039040px;}
.y332{bottom:722.298240px;}
.y360{bottom:724.264560px;}
.y1de{bottom:724.752000px;}
.y20b{bottom:725.037120px;}
.y111{bottom:725.940000px;}
.yb7{bottom:726.035040px;}
.y7{bottom:726.298500px;}
.y1ba{bottom:728.343360px;}
.y2cb{bottom:729.381600px;}
.y2e{bottom:731.338740px;}
.y54{bottom:731.981160px;}
.y16a{bottom:733.953600px;}
.y8b{bottom:733.955040px;}
.y22f{bottom:733.982400px;}
.y25c{bottom:734.149440px;}
.y2ab{bottom:738.455040px;}
.y18c{bottom:741.522240px;}
.y35f{bottom:742.267080px;}
.y27f{bottom:742.569120px;}
.y318{bottom:742.874400px;}
.y2f8{bottom:744.382080px;}
.y13f{bottom:744.721920px;}
.y331{bottom:745.155360px;}
.y38b{bottom:746.811000px;}
.ye3{bottom:747.462240px;}
.y20a{bottom:747.529920px;}
.yb6{bottom:748.527840px;}
.y2d{bottom:749.700000px;}
.y53{bottom:749.983860px;}
.y1b9{bottom:750.836160px;}
.y2ca{bottom:751.874400px;}
.y3{bottom:752.599495px;}
.y1dd{bottom:756.432000px;}
.y169{bottom:756.446400px;}
.y22e{bottom:756.475200px;}
.y25b{bottom:756.642240px;}
.y2aa{bottom:760.947840px;}
.y18b{bottom:764.015040px;}
.y10e{bottom:765.000000px;}
.y27e{bottom:765.252000px;}
.y317{bottom:765.367200px;}
.y8a{bottom:765.460800px;}
.y2f7{bottom:767.239200px;}
.y13e{bottom:767.579040px;}
.y52{bottom:767.986560px;}
.y330{bottom:768.012480px;}
.y35e{bottom:769.270860px;}
.ye2{bottom:769.955040px;}
.y209{bottom:770.022720px;}
.yb5{bottom:770.846400px;}
.y1b8{bottom:773.328960px;}
.y2c9{bottom:774.367200px;}
.y2c{bottom:778.513680px;}
.y1dc{bottom:778.924800px;}
.y168{bottom:778.939200px;}
.y22d{bottom:778.968000px;}
.y25a{bottom:779.135040px;}
.y2a9{bottom:783.440640px;}
.y10d{bottom:784.440000px;}
.y51{bottom:785.989260px;}
.y18a{bottom:786.507840px;}
.y35d{bottom:787.273380px;}
.y27d{bottom:787.744800px;}
.y316{bottom:787.860000px;}
.y89{bottom:787.953600px;}
.y2f6{bottom:789.922080px;}
.y13d{bottom:790.436160px;}
.y32f{bottom:790.695360px;}
.y38a{bottom:791.631000px;}
.ye1{bottom:792.447840px;}
.y208{bottom:792.515520px;}
.yb4{bottom:793.164960px;}
.y1b7{bottom:795.821760px;}
.y2c8{bottom:796.860000px;}
.y1db{bottom:801.417600px;}
.y167{bottom:801.432000px;}
.y22c{bottom:801.460800px;}
.y259{bottom:801.627840px;}
.y35c{bottom:805.275900px;}
.y2b{bottom:805.512600px;}
.y2a8{bottom:805.933440px;}
.y189{bottom:809.000640px;}
.y88{bottom:810.446400px;}
.y2f5{bottom:812.779200px;}
.y10c{bottom:813.060000px;}
.y13c{bottom:813.119040px;}
.y32e{bottom:813.552480px;}
.ye0{bottom:814.940640px;}
.y207{bottom:815.008320px;}
.yb3{bottom:815.483520px;}
.y1b6{bottom:818.314560px;}
.y27c{bottom:819.424800px;}
.y315{bottom:819.720000px;}
.y1da{bottom:823.910400px;}
.y166{bottom:823.924800px;}
.y22b{bottom:823.953600px;}
.y258{bottom:824.120640px;}
.y2c7{bottom:828.720000px;}
.y2a{bottom:829.626300px;}
.y188{bottom:831.493440px;}
.y35b{bottom:832.279680px;}
.y10b{bottom:832.500000px;}
.y87{bottom:832.939200px;}
.y2f4{bottom:835.636320px;}
.y13b{bottom:835.976160px;}
.y32d{bottom:836.409600px;}
.y389{bottom:836.626500px;}
.ydf{bottom:837.433440px;}
.y2a7{bottom:837.439200px;}
.y206{bottom:837.501120px;}
.yb2{bottom:837.802080px;}
.y1b5{bottom:840.807360px;}
.y27b{bottom:841.917600px;}
.y314{bottom:842.220000px;}
.y1d9{bottom:846.403200px;}
.y165{bottom:846.417600px;}
.y22a{bottom:846.446400px;}
.y257{bottom:846.613440px;}
.y35a{bottom:850.282200px;}
.y10a{bottom:851.940000px;}
.y29{bottom:853.740000px;}
.y187{bottom:853.986240px;}
.y388{bottom:854.271000px;}
.y86{bottom:855.432000px;}
.y2f3{bottom:858.319200px;}
.y13a{bottom:858.833280px;}
.y32c{bottom:859.092480px;}
.yde{bottom:859.926240px;}
.y2a6{bottom:859.932000px;}
.y205{bottom:859.993920px;}
.y1b4{bottom:863.300160px;}
.y27a{bottom:864.410400px;}
.y359{bottom:868.284720px;}
.y1d8{bottom:868.896000px;}
.y164{bottom:868.910400px;}
.y229{bottom:868.939200px;}
.y256{bottom:869.106240px;}
.yb1{bottom:869.117760px;}
.y109{bottom:871.560000px;}
.y186{bottom:876.479040px;}
.y85{bottom:877.924800px;}
.y2{bottom:879.369000px;}
.y2f2{bottom:881.176320px;}
.y139{bottom:881.516160px;}
.y32b{bottom:881.949600px;}
.ydd{bottom:882.419040px;}
.y2a5{bottom:882.424800px;}
.y204{bottom:882.486720px;}
.y1b3{bottom:885.792960px;}
.y279{bottom:886.903200px;}
.y387{bottom:889.195500px;}
.y108{bottom:891.000000px;}
.y1d7{bottom:891.388800px;}
.y163{bottom:891.403200px;}
.y228{bottom:891.432000px;}
.y255{bottom:891.599040px;}
.yb0{bottom:891.610560px;}
.y358{bottom:895.288500px;}
.y84{bottom:900.417600px;}
.y2f1{bottom:904.033440px;}
.y138{bottom:904.373280px;}
.y32a{bottom:904.806720px;}
.ydc{bottom:904.911840px;}
.y2a4{bottom:904.917600px;}
.y203{bottom:904.979520px;}
.y386{bottom:906.840000px;}
.y278{bottom:909.396000px;}
.y107{bottom:910.260000px;}
.y357{bottom:913.291020px;}
.y1d6{bottom:913.881600px;}
.y162{bottom:913.896000px;}
.y227{bottom:913.924800px;}
.y254{bottom:914.091840px;}
.yaf{bottom:914.103360px;}
.y1b2{bottom:914.225760px;}
.y83{bottom:922.910400px;}
.y28{bottom:924.480720px;}
.y2f0{bottom:926.716320px;}
.y137{bottom:927.230400px;}
.ydb{bottom:927.404640px;}
.y2a3{bottom:927.410400px;}
.y106{bottom:929.880000px;}
.y277{bottom:931.888800px;}
.y1d5{bottom:936.374400px;}
.y161{bottom:936.388800px;}
.y226{bottom:936.417600px;}
.y202{bottom:936.485280px;}
.y329{bottom:936.486720px;}
.y253{bottom:936.584640px;}
.yae{bottom:936.596160px;}
.y1b1{bottom:936.718560px;}
.y356{bottom:940.294800px;}
.y385{bottom:942.115500px;}
.y82{bottom:945.403200px;}
.y2ef{bottom:949.573440px;}
.yda{bottom:949.897440px;}
.y2a2{bottom:949.903200px;}
.y276{bottom:954.381600px;}
.y27{bottom:957.243600px;}
.y355{bottom:958.297320px;}
.y105{bottom:958.860000px;}
.y1d4{bottom:958.867200px;}
.y160{bottom:958.881600px;}
.y136{bottom:958.910400px;}
.y201{bottom:958.978080px;}
.y328{bottom:958.979520px;}
.y252{bottom:959.077440px;}
.yad{bottom:959.088960px;}
.y1b0{bottom:959.211360px;}
.y1{bottom:966.726000px;}
.y81{bottom:967.896000px;}
.yd9{bottom:972.390240px;}
.y2a1{bottom:972.396000px;}
.y2ee{bottom:972.430560px;}
.y354{bottom:976.299840px;}
.y384{bottom:976.851000px;}
.y275{bottom:976.874400px;}
.y1d3{bottom:981.360000px;}
.y15f{bottom:981.374400px;}
.y135{bottom:981.403200px;}
.y200{bottom:981.470880px;}
.y327{bottom:981.472320px;}
.y251{bottom:981.570240px;}
.yac{bottom:981.581760px;}
.y1af{bottom:981.704160px;}
.y26{bottom:990.006480px;}
.y80{bottom:990.388800px;}
.y353{bottom:994.302360px;}
.y383{bottom:994.495500px;}
.yd8{bottom:994.883040px;}
.y2a0{bottom:994.888800px;}
.y274{bottom:999.367200px;}
.y15e{bottom:1003.867200px;}
.y134{bottom:1003.896000px;}
.y1ff{bottom:1003.963680px;}
.y326{bottom:1003.965120px;}
.y250{bottom:1004.063040px;}
.y104{bottom:1004.070240px;}
.yab{bottom:1004.074560px;}
.y2ed{bottom:1004.110560px;}
.y1ae{bottom:1004.196960px;}
.y1d2{bottom:1012.860000px;}
.y7f{bottom:1012.881600px;}
.yd7{bottom:1017.375840px;}
.y29f{bottom:1017.381600px;}
.y352{bottom:1021.306140px;}
.y273{bottom:1021.860000px;}
.y25{bottom:1022.940000px;}
.y15d{bottom:1026.360000px;}
.y133{bottom:1026.388800px;}
.y1fe{bottom:1026.456480px;}
.y325{bottom:1026.457920px;}
.y24f{bottom:1026.555840px;}
.y103{bottom:1026.563040px;}
.yaa{bottom:1026.567360px;}
.y2ec{bottom:1026.603360px;}
.y1ad{bottom:1026.689760px;}
.y382{bottom:1029.420000px;}
.y7e{bottom:1035.374400px;}
.y351{bottom:1039.308660px;}
.yd6{bottom:1039.868640px;}
.y29e{bottom:1039.874400px;}
.y1d1{bottom:1044.720000px;}
.y381{bottom:1047.064500px;}
.y132{bottom:1048.881600px;}
.y1fd{bottom:1048.949280px;}
.y324{bottom:1048.950720px;}
.y24e{bottom:1049.048640px;}
.y102{bottom:1049.055840px;}
.ya9{bottom:1049.060160px;}
.y2eb{bottom:1049.096160px;}
.y1ac{bottom:1049.182560px;}
.y272{bottom:1053.900000px;}
.y350{bottom:1057.311180px;}
.y7d{bottom:1057.867200px;}
.y15c{bottom:1058.942160px;}
.yd5{bottom:1062.361440px;}
.y29d{bottom:1062.367200px;}
.y131{bottom:1071.374400px;}
.y1fc{bottom:1071.442080px;}
.y323{bottom:1071.443520px;}
.y24d{bottom:1071.541440px;}
.y101{bottom:1071.548640px;}
.ya8{bottom:1071.552960px;}
.y2ea{bottom:1071.588960px;}
.y1ab{bottom:1071.675360px;}
.y78{bottom:1079.280000px;}
.y7c{bottom:1080.360000px;}
.y380{bottom:1081.989000px;}
.y76{bottom:1083.420000px;}
.y34f{bottom:1084.314960px;}
.y29c{bottom:1084.860000px;}
.y15b{bottom:1085.941080px;}
.yd4{bottom:1093.867200px;}
.y1fb{bottom:1093.934880px;}
.y322{bottom:1093.936320px;}
.y24c{bottom:1094.034240px;}
.y100{bottom:1094.041440px;}
.ya7{bottom:1094.045760px;}
.y2e9{bottom:1094.081760px;}
.y1aa{bottom:1094.168160px;}
.y34e{bottom:1102.317480px;}
.y37f{bottom:1103.764500px;}
.y7b{bottom:1112.940000px;}
.yd3{bottom:1116.360000px;}
.y1fa{bottom:1116.427680px;}
.y321{bottom:1116.429120px;}
.y24b{bottom:1116.527040px;}
.yff{bottom:1116.534240px;}
.ya6{bottom:1116.538560px;}
.y2e8{bottom:1116.574560px;}
.y1a9{bottom:1116.660960px;}
.y34d{bottom:1120.320000px;}
.y37e{bottom:1121.220000px;}
.y23{bottom:1122.840000px;}
.y37c{bottom:1184.040000px;}
.y7a{bottom:1185.120000px;}
.h7{height:32.130000px;}
.h10{height:37.620000px;}
.h19{height:39.313477px;}
.h12{height:41.040000px;}
.h6{height:45.900000px;}
.h13{height:46.127812px;}
.h18{height:46.432617px;}
.h3{height:48.195000px;}
.h16{height:48.224531px;}
.ha{height:48.909023px;}
.h17{height:49.312223px;}
.hf{height:51.385430px;}
.h15{height:52.417969px;}
.h9{height:54.480937px;}
.h2{height:55.080000px;}
.he{height:61.329023px;}
.h11{height:69.715898px;}
.hd{height:72.434883px;}
.h5{height:78.030000px;}
.hc{height:82.820391px;}
.hb{height:87.538008px;}
.h4{height:119.055004px;}
.h14{height:687.060000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:306.000000px;}
.w5{width:339.478500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.xb{left:15.120000px;}
.xa{left:68.580000px;}
.x6{left:84.960000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x10{left:116.100000px;}
.xf{left:161.100000px;}
.x4{left:203.484001px;}
.xd{left:216.000000px;}
.x7{left:321.300000px;}
.x8{left:446.358600px;}
.x3{left:454.959000px;}
.x9{left:463.449960px;}
.x11{left:467.654400px;}
.xc{left:480.780000px;}
.x5{left:514.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-2.231040pt;}
.ls6d{letter-spacing:-2.140160pt;}
.ls6e{letter-spacing:-1.914880pt;}
.ls6c{letter-spacing:-1.858560pt;}
.ls8c{letter-spacing:-1.633280pt;}
.ls23{letter-spacing:-1.593600pt;}
.ls3d{letter-spacing:-1.576960pt;}
.ls61{letter-spacing:-1.464320pt;}
.ls24{letter-spacing:-1.381120pt;}
.ls44{letter-spacing:-1.295360pt;}
.lsac{letter-spacing:-1.264000pt;}
.ls3c{letter-spacing:-1.239040pt;}
.lsbc{letter-spacing:-1.213440pt;}
.lsaa{letter-spacing:-1.162880pt;}
.lsc7{letter-spacing:-1.152000pt;}
.ls7e{letter-spacing:-1.126400pt;}
.ls42{letter-spacing:-1.070080pt;}
.lsbf{letter-spacing:-1.061760pt;}
.ls41{letter-spacing:-1.013760pt;}
.lsbb{letter-spacing:-1.011200pt;}
.ls57{letter-spacing:-0.973440pt;}
.lsaf{letter-spacing:-0.960640pt;}
.ls1a{letter-spacing:-0.903040pt;}
.ls3f{letter-spacing:-0.901120pt;}
.ls3a{letter-spacing:-0.898560pt;}
.ls1d{letter-spacing:-0.849920pt;}
.ls3e{letter-spacing:-0.844800pt;}
.ls58{letter-spacing:-0.808960pt;}
.ls9f{letter-spacing:-0.788480pt;}
.lsc4{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.743680pt;}
.lsca{letter-spacing:-0.720000pt;}
.ls1c{letter-spacing:-0.690560pt;}
.ls18{letter-spacing:-0.673920pt;}
.lsc8{letter-spacing:-0.672000pt;}
.lsbe{letter-spacing:-0.657280pt;}
.lsc9{letter-spacing:-0.624000pt;}
.ls3b{letter-spacing:-0.619520pt;}
.ls17{letter-spacing:-0.606720pt;}
.ls56{letter-spacing:-0.599040pt;}
.ls27{letter-spacing:-0.595840pt;}
.lsc5{letter-spacing:-0.528000pt;}
.ls9e{letter-spacing:-0.506880pt;}
.ls14{letter-spacing:-0.505600pt;}
.lsad{letter-spacing:-0.455040pt;}
.ls45{letter-spacing:-0.450560pt;}
.lsc6{letter-spacing:-0.432000pt;}
.ls26{letter-spacing:-0.424960pt;}
.ls16{letter-spacing:-0.404480pt;}
.lsae{letter-spacing:-0.353920pt;}
.ls40{letter-spacing:-0.337920pt;}
.ls1e{letter-spacing:-0.318720pt;}
.ls15{letter-spacing:-0.303360pt;}
.ls62{letter-spacing:-0.299520pt;}
.ls7c{letter-spacing:-0.294400pt;}
.ls43{letter-spacing:-0.281600pt;}
.ls20{letter-spacing:-0.265600pt;}
.ls21{letter-spacing:-0.212480pt;}
.ls8d{letter-spacing:-0.168960pt;}
.ls7d{letter-spacing:-0.117760pt;}
.ls1f{letter-spacing:-0.106240pt;}
.ls7b{letter-spacing:-0.064000pt;}
.ls22{letter-spacing:-0.053120pt;}
.lsbd{letter-spacing:-0.050560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5f{letter-spacing:0.011264pt;}
.ls75{letter-spacing:0.028160pt;}
.lsab{letter-spacing:0.050560pt;}
.lsb2{letter-spacing:0.055616pt;}
.ls2b{letter-spacing:0.056320pt;}
.lsb0{letter-spacing:0.192128pt;}
.ls1b{letter-spacing:0.212480pt;}
.ls8b{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.318720pt;}
.ls2a{letter-spacing:0.337920pt;}
.ls5{letter-spacing:0.345280pt;}
.ls6a{letter-spacing:0.366080pt;}
.ls90{letter-spacing:0.382976pt;}
.ls9d{letter-spacing:0.422400pt;}
.lsa{letter-spacing:0.531200pt;}
.ls70{letter-spacing:0.596992pt;}
.ls3{letter-spacing:0.606720pt;}
.lsa6{letter-spacing:0.657280pt;}
.ls4{letter-spacing:0.707840pt;}
.ls39{letter-spacing:0.859520pt;}
.ls2{letter-spacing:0.910080pt;}
.ls1{letter-spacing:0.912640pt;}
.ls6b{letter-spacing:0.957440pt;}
.ls4e{letter-spacing:1.025024pt;}
.ls4f{letter-spacing:1.041920pt;}
.ls4d{letter-spacing:1.103872pt;}
.ls5a{letter-spacing:1.109504pt;}
.lsa7{letter-spacing:1.481408pt;}
.ls2c{letter-spacing:1.633280pt;}
.ls79{letter-spacing:1.751552pt;}
.ls7a{letter-spacing:1.841664pt;}
.ls7{letter-spacing:1.859200pt;}
.ls2d{letter-spacing:2.252800pt;}
.ls8f{letter-spacing:2.269696pt;}
.ls81{letter-spacing:2.331648pt;}
.ls65{letter-spacing:2.365440pt;}
.ls36{letter-spacing:2.928640pt;}
.ls7f{letter-spacing:2.968064pt;}
.lsa4{letter-spacing:3.195392pt;}
.lsb3{letter-spacing:3.230784pt;}
.ls74{letter-spacing:3.238400pt;}
.lsc1{letter-spacing:3.312000pt;}
.lsc2{letter-spacing:3.451200pt;}
.ls31{letter-spacing:3.525632pt;}
.ls38{letter-spacing:3.548160pt;}
.ls94{letter-spacing:3.604480pt;}
.ls9b{letter-spacing:3.610112pt;}
.ls37{letter-spacing:3.655168pt;}
.ls48{letter-spacing:3.722752pt;}
.ls6f{letter-spacing:3.728384pt;}
.lsc{letter-spacing:3.771520pt;}
.lsb4{letter-spacing:3.842560pt;}
.ls93{letter-spacing:3.857920pt;}
.ls67{letter-spacing:4.167680pt;}
.ls53{letter-spacing:4.342272pt;}
.lsb{letter-spacing:4.408960pt;}
.ls33{letter-spacing:4.466176pt;}
.ls55{letter-spacing:4.843520pt;}
.ls78{letter-spacing:4.866048pt;}
.ls54{letter-spacing:4.899840pt;}
.lsc0{letter-spacing:5.232000pt;}
.ls29{letter-spacing:5.463040pt;}
.ls5e{letter-spacing:5.508096pt;}
.ls92{letter-spacing:5.598208pt;}
.ls11{letter-spacing:5.736960pt;}
.lsa9{letter-spacing:5.819456pt;}
.ls82{letter-spacing:6.082560pt;}
.lse{letter-spacing:6.374400pt;}
.ls5c{letter-spacing:6.758400pt;}
.ls68{letter-spacing:6.859776pt;}
.ls5d{letter-spacing:6.899200pt;}
.ls85{letter-spacing:6.904832pt;}
.ls52{letter-spacing:7.377920pt;}
.ls69{letter-spacing:7.439872pt;}
.ls87{letter-spacing:7.586304pt;}
.lsd{letter-spacing:7.649280pt;}
.ls47{letter-spacing:7.997440pt;}
.ls9a{letter-spacing:8.115712pt;}
.ls6{letter-spacing:8.286720pt;}
.lsa5{letter-spacing:8.483968pt;}
.ls2f{letter-spacing:8.498688pt;}
.ls59{letter-spacing:8.673280pt;}
.ls9{letter-spacing:8.924160pt;}
.lsa1{letter-spacing:9.292800pt;}
.ls88{letter-spacing:9.382912pt;}
.ls12{letter-spacing:9.561600pt;}
.ls4c{letter-spacing:9.968640pt;}
.ls2e{letter-spacing:10.036224pt;}
.ls35{letter-spacing:10.588160pt;}
.ls80{letter-spacing:10.627584pt;}
.ls34{letter-spacing:10.683904pt;}
.ls64{letter-spacing:11.207680pt;}
.ls95{letter-spacing:11.489280pt;}
.ls84{letter-spacing:11.883520pt;}
.ls73{letter-spacing:11.906048pt;}
.ls8e{letter-spacing:12.503040pt;}
.ls71{letter-spacing:12.807168pt;}
.ls5b{letter-spacing:13.122560pt;}
.ls50{letter-spacing:13.280256pt;}
.ls51{letter-spacing:13.297152pt;}
.ls72{letter-spacing:13.409792pt;}
.ls97{letter-spacing:13.877248pt;}
.ls63{letter-spacing:14.417920pt;}
.lsc3{letter-spacing:14.832000pt;}
.ls30{letter-spacing:15.037440pt;}
.ls32{letter-spacing:16.332800pt;}
.ls83{letter-spacing:17.008640pt;}
.ls46{letter-spacing:18.247680pt;}
.ls8a{letter-spacing:18.979840pt;}
.ls89{letter-spacing:19.064320pt;}
.ls9c{letter-spacing:19.543040pt;}
.ls4a{letter-spacing:19.576832pt;}
.ls4b{letter-spacing:19.599360pt;}
.ls91{letter-spacing:20.838400pt;}
.ls96{letter-spacing:20.905984pt;}
.ls86{letter-spacing:20.984832pt;}
.ls49{letter-spacing:22.077440pt;}
.lsf{letter-spacing:22.363520pt;}
.ls98{letter-spacing:22.894080pt;}
.ls99{letter-spacing:23.372800pt;}
.ls66{letter-spacing:23.479808pt;}
.lsa8{letter-spacing:24.349696pt;}
.lsa2{letter-spacing:24.679424pt;}
.lsa3{letter-spacing:24.808960pt;}
.ls60{letter-spacing:25.524224pt;}
.ls28{letter-spacing:25.614336pt;}
.lsb5{letter-spacing:26.291200pt;}
.lsb6{letter-spacing:29.476480pt;}
.lsb9{letter-spacing:31.397760pt;}
.lsba{letter-spacing:31.412928pt;}
.lsb8{letter-spacing:32.034816pt;}
.ls13{letter-spacing:33.253120pt;}
.ls76{letter-spacing:33.741312pt;}
.ls77{letter-spacing:33.763840pt;}
.lsb7{letter-spacing:37.808768pt;}
.ls10{letter-spacing:44.089600pt;}
.lsb1{letter-spacing:151.073280pt;}
.lsa0{letter-spacing:1204.490880pt;}
.wsa{word-spacing:-53.120000pt;}
.ws2{word-spacing:-28.111360pt;}
.ws1{word-spacing:-27.605760pt;}
.wsc{word-spacing:-23.067520pt;}
.ws9c{word-spacing:-20.816640pt;}
.wsbc{word-spacing:-20.517120pt;}
.ws9e{word-spacing:-20.217600pt;}
.ws3{word-spacing:-20.142720pt;}
.ws9d{word-spacing:-19.918080pt;}
.ws104{word-spacing:-18.048000pt;}
.wsee{word-spacing:-17.728000pt;}
.wsd0{word-spacing:-16.074240pt;}
.ws5b{word-spacing:-15.713280pt;}
.ws58{word-spacing:-15.656960pt;}
.wse0{word-spacing:-15.488000pt;}
.wsed{word-spacing:-15.375360pt;}
.ws5a{word-spacing:-15.319040pt;}
.wsba{word-spacing:-15.206400pt;}
.wsec{word-spacing:-15.150080pt;}
.ws54{word-spacing:-15.037440pt;}
.wseb{word-spacing:-14.868480pt;}
.ws57{word-spacing:-14.812160pt;}
.ws5{word-spacing:-14.767360pt;}
.ws53{word-spacing:-14.763520pt;}
.ws59{word-spacing:-14.755840pt;}
.ws8{word-spacing:-14.661120pt;}
.ws5c{word-spacing:-14.643200pt;}
.ws5d{word-spacing:-14.586880pt;}
.wsd1{word-spacing:-14.530560pt;}
.ws7{word-spacing:-14.501760pt;}
.ws55{word-spacing:-14.417920pt;}
.ws9f{word-spacing:-14.361600pt;}
.wsbb{word-spacing:-14.192640pt;}
.ws106{word-spacing:-14.106240pt;}
.ws56{word-spacing:-14.080000pt;}
.wsa2{word-spacing:-14.055680pt;}
.ws4{word-spacing:-14.023680pt;}
.ws11c{word-spacing:-14.005120pt;}
.ws6{word-spacing:-13.917440pt;}
.ws9{word-spacing:-13.864320pt;}
.wsc3{word-spacing:-13.798400pt;}
.ws11a{word-spacing:-13.752320pt;}
.wsc5{word-spacing:-13.742080pt;}
.ws107{word-spacing:-13.701760pt;}
.ws109{word-spacing:-13.600640pt;}
.wsc4{word-spacing:-13.516800pt;}
.wsa1{word-spacing:-13.448960pt;}
.ws11b{word-spacing:-13.398400pt;}
.wsb{word-spacing:-13.386240pt;}
.ws13d{word-spacing:-13.344000pt;}
.wsa0{word-spacing:-13.246720pt;}
.ws108{word-spacing:-13.095040pt;}
.ws11d{word-spacing:-12.993920pt;}
.ws13e{word-spacing:-12.912000pt;}
.ws105{word-spacing:-12.892800pt;}
.ws119{word-spacing:-12.842240pt;}
.ws140{word-spacing:-12.816000pt;}
.ws13f{word-spacing:-12.720000pt;}
.ws141{word-spacing:-12.624000pt;}
.wsda{word-spacing:-5.406720pt;}
.wsbe{word-spacing:-4.167680pt;}
.wsf6{word-spacing:-3.886080pt;}
.ws138{word-spacing:-3.842560pt;}
.ws99{word-spacing:-3.491840pt;}
.ws139{word-spacing:-3.336960pt;}
.ws127{word-spacing:-3.185280pt;}
.ws100{word-spacing:-3.153920pt;}
.ws4b{word-spacing:-3.134080pt;}
.wsa3{word-spacing:-3.097600pt;}
.ws71{word-spacing:-2.872320pt;}
.ws146{word-spacing:-2.640000pt;}
.wsb6{word-spacing:-2.578560pt;}
.ws51{word-spacing:-2.496640pt;}
.ws14f{word-spacing:-2.400000pt;}
.ws62{word-spacing:-2.252800pt;}
.wsde{word-spacing:-2.196480pt;}
.ws137{word-spacing:-2.123520pt;}
.ws144{word-spacing:-2.016000pt;}
.wscc{word-spacing:-1.971200pt;}
.wsad{word-spacing:-1.921280pt;}
.ws143{word-spacing:-1.920000pt;}
.wsb1{word-spacing:-1.912320pt;}
.ws25{word-spacing:-1.859200pt;}
.wsf4{word-spacing:-1.689600pt;}
.wsc2{word-spacing:-1.633280pt;}
.ws6e{word-spacing:-1.576960pt;}
.wsd3{word-spacing:-1.295360pt;}
.ws12a{word-spacing:-1.264000pt;}
.ws26{word-spacing:-1.221760pt;}
.wsb3{word-spacing:-1.062400pt;}
.ws13b{word-spacing:-1.061760pt;}
.ws67{word-spacing:-0.957440pt;}
.wsd{word-spacing:-0.910080pt;}
.ws5e{word-spacing:-0.808960pt;}
.ws10a{word-spacing:-0.707840pt;}
.ws121{word-spacing:-0.657280pt;}
.ws23{word-spacing:-0.584320pt;}
.ws126{word-spacing:-0.455040pt;}
.wse6{word-spacing:-0.450560pt;}
.ws21{word-spacing:-0.424960pt;}
.ws78{word-spacing:-0.337920pt;}
.ws30{word-spacing:-0.318720pt;}
.ws70{word-spacing:-0.281600pt;}
.ws120{word-spacing:-0.252800pt;}
.wse4{word-spacing:-0.235520pt;}
.wse1{word-spacing:-0.128000pt;}
.ws147{word-spacing:-0.096000pt;}
.ws77{word-spacing:-0.056320pt;}
.ws115{word-spacing:-0.050560pt;}
.ws0{word-spacing:0.000000pt;}
.ws128{word-spacing:0.050560pt;}
.ws2d{word-spacing:0.053120pt;}
.ws150{word-spacing:0.096000pt;}
.ws122{word-spacing:0.101120pt;}
.ws31{word-spacing:0.106240pt;}
.wsd7{word-spacing:0.117760pt;}
.wsd2{word-spacing:0.192000pt;}
.ws32{word-spacing:0.265600pt;}
.ws81{word-spacing:0.281600pt;}
.wse{word-spacing:0.303360pt;}
.ws2a{word-spacing:0.318720pt;}
.ws61{word-spacing:0.337920pt;}
.ws114{word-spacing:0.353920pt;}
.ws11{word-spacing:0.374400pt;}
.wsf{word-spacing:0.404480pt;}
.wsdf{word-spacing:0.412160pt;}
.ws4f{word-spacing:0.424960pt;}
.ws145{word-spacing:0.432000pt;}
.ws9a{word-spacing:0.450560pt;}
.ws113{word-spacing:0.455040pt;}
.wsf0{word-spacing:0.506880pt;}
.ws155{word-spacing:0.528000pt;}
.wsc1{word-spacing:0.599040pt;}
.ws10{word-spacing:0.606720pt;}
.ws69{word-spacing:0.619520pt;}
.ws11f{word-spacing:0.657280pt;}
.wse7{word-spacing:0.673920pt;}
.ws22{word-spacing:0.690560pt;}
.wsf5{word-spacing:0.732160pt;}
.ws16{word-spacing:0.743680pt;}
.ws142{word-spacing:0.768000pt;}
.ws123{word-spacing:0.808960pt;}
.ws88{word-spacing:0.844800pt;}
.ws4e{word-spacing:0.849920pt;}
.ws5f{word-spacing:0.898560pt;}
.ws8c{word-spacing:0.901120pt;}
.ws3a{word-spacing:0.903040pt;}
.ws63{word-spacing:0.957440pt;}
.wsab{word-spacing:0.973440pt;}
.ws76{word-spacing:1.013760pt;}
.ws7d{word-spacing:1.070080pt;}
.ws14c{word-spacing:1.152000pt;}
.ws131{word-spacing:1.162880pt;}
.ws64{word-spacing:1.239040pt;}
.ws110{word-spacing:1.264000pt;}
.wsa7{word-spacing:1.295360pt;}
.ws20{word-spacing:1.328000pt;}
.ws4c{word-spacing:1.381120pt;}
.wsfe{word-spacing:1.520640pt;}
.wsa4{word-spacing:1.576960pt;}
.ws4a{word-spacing:1.593600pt;}
.ws92{word-spacing:1.633280pt;}
.ws149{word-spacing:1.824000pt;}
.wsb8{word-spacing:1.872000pt;}
.ws148{word-spacing:1.920000pt;}
.wsb0{word-spacing:1.921280pt;}
.ws2e{word-spacing:1.965440pt;}
.ws2f{word-spacing:2.124800pt;}
.ws4d{word-spacing:2.231040pt;}
.ws95{word-spacing:2.252800pt;}
.ws1d{word-spacing:2.602880pt;}
.wsc8{word-spacing:2.703360pt;}
.wsf8{word-spacing:2.759680pt;}
.ws79{word-spacing:2.872320pt;}
.ws154{word-spacing:3.120000pt;}
.wsca{word-spacing:3.153920pt;}
.ws11e{word-spacing:3.185280pt;}
.ws39{word-spacing:3.293440pt;}
.ws7c{word-spacing:3.491840pt;}
.ws8f{word-spacing:3.548160pt;}
.ws151{word-spacing:3.744000pt;}
.ws152{word-spacing:3.840000pt;}
.ws10f{word-spacing:3.842560pt;}
.wsf2{word-spacing:3.886080pt;}
.ws28{word-spacing:3.930880pt;}
.wsf3{word-spacing:4.055040pt;}
.ws86{word-spacing:4.111360pt;}
.ws72{word-spacing:4.167680pt;}
.ws14e{word-spacing:4.368000pt;}
.ws14d{word-spacing:4.464000pt;}
.ws117{word-spacing:4.499840pt;}
.ws35{word-spacing:4.568320pt;}
.ws29{word-spacing:4.674560pt;}
.ws6f{word-spacing:4.787200pt;}
.wsa8{word-spacing:5.068800pt;}
.wsea{word-spacing:5.181440pt;}
.ws12{word-spacing:5.205760pt;}
.ws87{word-spacing:5.463040pt;}
.ws14b{word-spacing:5.664000pt;}
.ws14a{word-spacing:5.760000pt;}
.ws118{word-spacing:5.763840pt;}
.wsef{word-spacing:5.969920pt;}
.ws48{word-spacing:6.055680pt;}
.ws60{word-spacing:6.082560pt;}
.wsaf{word-spacing:6.421120pt;}
.ws38{word-spacing:6.480640pt;}
.ws97{word-spacing:6.758400pt;}
.wsae{word-spacing:7.027840pt;}
.wsc6{word-spacing:7.040000pt;}
.ws37{word-spacing:7.118080pt;}
.wsf7{word-spacing:7.265280pt;}
.ws49{word-spacing:7.277440pt;}
.ws75{word-spacing:7.377920pt;}
.ws1c{word-spacing:7.436800pt;}
.ws47{word-spacing:7.755520pt;}
.ws6a{word-spacing:7.997440pt;}
.ws1b{word-spacing:8.392960pt;}
.ws3b{word-spacing:8.499200pt;}
.ws80{word-spacing:8.616960pt;}
.wsb9{word-spacing:8.673280pt;}
.ws111{word-spacing:8.949120pt;}
.ws17{word-spacing:9.030400pt;}
.wsf1{word-spacing:9.180160pt;}
.wsa5{word-spacing:9.292800pt;}
.ws112{word-spacing:9.606400pt;}
.ws18{word-spacing:9.667840pt;}
.ws10c{word-spacing:9.799680pt;}
.ws7f{word-spacing:9.912320pt;}
.ws12f{word-spacing:10.263680pt;}
.ws1e{word-spacing:10.305280pt;}
.ws130{word-spacing:10.314240pt;}
.ws24{word-spacing:10.411520pt;}
.wsdb{word-spacing:10.419200pt;}
.wsa6{word-spacing:10.531840pt;}
.ws6b{word-spacing:10.588160pt;}
.ws12d{word-spacing:10.870400pt;}
.ws1f{word-spacing:10.942720pt;}
.ws12e{word-spacing:11.072640pt;}
.ws90{word-spacing:11.207680pt;}
.ws2c{word-spacing:11.580160pt;}
.ws101{word-spacing:11.714560pt;}
.wsc0{word-spacing:11.827200pt;}
.ws124{word-spacing:12.184960pt;}
.ws43{word-spacing:12.217600pt;}
.wsd8{word-spacing:12.446720pt;}
.ws7e{word-spacing:12.503040pt;}
.ws10b{word-spacing:12.784640pt;}
.wsb5{word-spacing:12.855040pt;}
.ws96{word-spacing:13.122560pt;}
.wsfd{word-spacing:13.685760pt;}
.ws7a{word-spacing:13.742080pt;}
.ws8e{word-spacing:13.798400pt;}
.ws27{word-spacing:14.129920pt;}
.ws83{word-spacing:14.361600pt;}
.ws8d{word-spacing:14.417920pt;}
.wsfc{word-spacing:14.699520pt;}
.ws10e{word-spacing:14.712960pt;}
.ws82{word-spacing:14.755840pt;}
.ws13{word-spacing:14.767360pt;}
.ws102{word-spacing:14.868480pt;}
.ws6c{word-spacing:15.037440pt;}
.ws153{word-spacing:15.264000pt;}
.ws12c{word-spacing:15.370240pt;}
.ws41{word-spacing:15.404800pt;}
.ws84{word-spacing:15.656960pt;}
.ws91{word-spacing:15.713280pt;}
.ws136{word-spacing:15.976960pt;}
.ws85{word-spacing:15.994880pt;}
.wsb4{word-spacing:16.042240pt;}
.ws34{word-spacing:16.095360pt;}
.ws42{word-spacing:16.201600pt;}
.ws7b{word-spacing:16.332800pt;}
.wsb7{word-spacing:16.634240pt;}
.ws19{word-spacing:16.732800pt;}
.wsfa{word-spacing:16.839680pt;}
.ws8a{word-spacing:16.952320pt;}
.ws8b{word-spacing:17.177600pt;}
.ws89{word-spacing:17.233920pt;}
.ws1a{word-spacing:17.370240pt;}
.wsd4{word-spacing:17.628160pt;}
.ws66{word-spacing:18.247680pt;}
.ws36{word-spacing:18.645120pt;}
.ws65{word-spacing:18.867200pt;}
.ws40{word-spacing:19.282560pt;}
.wsbd{word-spacing:19.543040pt;}
.ws73{word-spacing:20.162560pt;}
.wsff{word-spacing:20.387840pt;}
.ws46{word-spacing:20.557440pt;}
.ws3f{word-spacing:20.663680pt;}
.wscb{word-spacing:20.838400pt;}
.ws3e{word-spacing:21.194880pt;}
.wsfb{word-spacing:21.345280pt;}
.ws98{word-spacing:21.457920pt;}
.wscf{word-spacing:21.739520pt;}
.ws44{word-spacing:21.832320pt;}
.wsb2{word-spacing:22.469760pt;}
.ws3c{word-spacing:22.682240pt;}
.ws74{word-spacing:22.753280pt;}
.ws3d{word-spacing:23.107200pt;}
.wsdc{word-spacing:23.372800pt;}
.ws13a{word-spacing:23.662080pt;}
.wsc9{word-spacing:23.992320pt;}
.ws116{word-spacing:24.319360pt;}
.wsd9{word-spacing:24.611840pt;}
.wsac{word-spacing:24.668160pt;}
.ws50{word-spacing:25.019520pt;}
.wscd{word-spacing:25.287680pt;}
.ws6d{word-spacing:25.907200pt;}
.ws125{word-spacing:26.240640pt;}
.ws33{word-spacing:26.294400pt;}
.ws9b{word-spacing:26.583040pt;}
.wsa9{word-spacing:27.202560pt;}
.wsd5{word-spacing:27.878400pt;}
.ws68{word-spacing:28.497920pt;}
.wsaa{word-spacing:29.117440pt;}
.wse3{word-spacing:29.793280pt;}
.ws129{word-spacing:30.083200pt;}
.wsdd{word-spacing:30.412800pt;}
.ws135{word-spacing:30.740480pt;}
.ws10d{word-spacing:31.032320pt;}
.wse9{word-spacing:31.708160pt;}
.ws134{word-spacing:32.004480pt;}
.ws133{word-spacing:32.206720pt;}
.wse8{word-spacing:32.327680pt;}
.ws132{word-spacing:32.661760pt;}
.wsc7{word-spacing:32.947200pt;}
.ws103{word-spacing:33.623040pt;}
.ws52{word-spacing:33.996800pt;}
.wsd6{word-spacing:34.242560pt;}
.wse5{word-spacing:34.918400pt;}
.wse2{word-spacing:35.537920pt;}
.ws93{word-spacing:36.157440pt;}
.ws12b{word-spacing:37.768320pt;}
.wsf9{word-spacing:38.072320pt;}
.ws2b{word-spacing:42.974080pt;}
.wsbf{word-spacing:43.197440pt;}
.ws15{word-spacing:44.248960pt;}
.ws94{word-spacing:44.492800pt;}
.ws45{word-spacing:44.886400pt;}
.ws14{word-spacing:45.045760pt;}
.wsce{word-spacing:52.828160pt;}
.ws13c{word-spacing:57.587840pt;}
._14{margin-left:-8.882944pt;}
._17{margin-left:-4.899840pt;}
._13{margin-left:-3.435520pt;}
._5{margin-left:-2.272128pt;}
._1{margin-left:-1.274112pt;}
._3{width:1.051648pt;}
._2{width:2.265088pt;}
._15{width:3.977344pt;}
._d{width:5.350400pt;}
._f{width:7.055616pt;}
._6{width:8.233600pt;}
._9{width:9.479552pt;}
._4{width:10.529152pt;}
._19{width:11.451392pt;}
._11{width:12.594432pt;}
._10{width:14.227712pt;}
._7{width:16.116864pt;}
._8{width:17.690240pt;}
._16{width:18.604032pt;}
._12{width:20.873472pt;}
._1d{width:22.387968pt;}
._a{width:23.425920pt;}
._18{width:25.322752pt;}
._e{width:28.026112pt;}
._1f{width:31.326976pt;}
._b{width:33.104512pt;}
._1e{width:38.021120pt;}
._20{width:57.709184pt;}
._1c{width:97.870976pt;}
._1a{width:133.175040pt;}
._1b{width:138.686080pt;}
._0{width:191.037440pt;}
._c{width:1219.203840pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fsa{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:56.320000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:101.120000pt;}
.fs7{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:13.760000pt;}
.y79{bottom:16.160000pt;}
.y6{bottom:31.933340pt;}
.y24{bottom:44.320000pt;}
.y37d{bottom:44.802560pt;}
.y5{bottom:59.133337pt;}
.y3a1{bottom:77.920000pt;}
.y313{bottom:79.418880pt;}
.y29b{bottom:80.190720pt;}
.y2c6{bottom:80.430080pt;}
.y2e7{bottom:80.506880pt;}
.y50{bottom:84.736000pt;}
.y75{bottom:85.307040pt;}
.y4{bottom:86.333337pt;}
.y130{bottom:88.345600pt;}
.yfe{bottom:88.468480pt;}
.y1f9{bottom:91.260160pt;}
.y225{bottom:92.391680pt;}
.y3a0{bottom:93.280000pt;}
.y1a8{bottom:94.030080pt;}
.y15a{bottom:96.184320pt;}
.y24a{bottom:96.473600pt;}
.y185{bottom:96.552960pt;}
.yd2{bottom:99.229440pt;}
.y312{bottom:99.412480pt;}
.y29a{bottom:100.353280pt;}
.y2c5{bottom:100.423680pt;}
.y2e6{bottom:100.500480pt;}
.y4f{bottom:100.738400pt;}
.y74{bottom:101.309440pt;}
.y12f{bottom:108.339200pt;}
.yfd{bottom:108.462080pt;}
.y1f8{bottom:111.422720pt;}
.y224{bottom:112.385280pt;}
.y1a7{bottom:114.023680pt;}
.y34c{bottom:115.635200pt;}
.y249{bottom:116.467200pt;}
.y159{bottom:116.501760pt;}
.y184{bottom:116.546560pt;}
.y39f{bottom:116.644000pt;}
.y4e{bottom:116.740800pt;}
.y73{bottom:117.311840pt;}
.yd1{bottom:119.223040pt;}
.ya5{bottom:119.673600pt;}
.y2c4{bottom:120.417280pt;}
.y2e5{bottom:120.494080pt;}
.y299{bottom:120.515840pt;}
.y22{bottom:123.790666pt;}
.y311{bottom:127.417600pt;}
.y12e{bottom:128.332800pt;}
.yfc{bottom:128.455680pt;}
.y1f7{bottom:131.416320pt;}
.y34b{bottom:131.637440pt;}
.y37b{bottom:131.808640pt;}
.y39e{bottom:132.004000pt;}
.y223{bottom:132.378880pt;}
.y4d{bottom:132.743200pt;}
.y72{bottom:133.314240pt;}
.y1a6{bottom:134.017280pt;}
.y248{bottom:136.460800pt;}
.y183{bottom:136.540160pt;}
.y158{bottom:136.988160pt;}
.yd0{bottom:139.216640pt;}
.ya4{bottom:139.991040pt;}
.y2c3{bottom:140.410880pt;}
.y2e4{bottom:140.487680pt;}
.y298{bottom:140.678400pt;}
.y39d{bottom:147.208000pt;}
.y310{bottom:147.411200pt;}
.y37a{bottom:147.810880pt;}
.y12d{bottom:148.326400pt;}
.yfb{bottom:148.449280pt;}
.y4c{bottom:148.745600pt;}
.y71{bottom:149.316640pt;}
.y1f6{bottom:151.578880pt;}
.y222{bottom:152.372480pt;}
.y1a5{bottom:154.010880pt;}
.y34a{bottom:155.640800pt;}
.y247{bottom:156.454400pt;}
.y182{bottom:156.533760pt;}
.y157{bottom:157.305600pt;}
.ycf{bottom:159.210240pt;}
.ya3{bottom:160.308480pt;}
.y2c2{bottom:160.404480pt;}
.y2e3{bottom:160.481280pt;}
.y297{bottom:160.840960pt;}
.y39c{bottom:162.568000pt;}
.y379{bottom:163.813120pt;}
.y4b{bottom:164.748000pt;}
.y70{bottom:165.478400pt;}
.y120{bottom:166.880000pt;}
.y30f{bottom:167.404800pt;}
.y12c{bottom:168.320000pt;}
.yfa{bottom:168.442880pt;}
.y349{bottom:171.643040pt;}
.y1f5{bottom:171.741440pt;}
.y221{bottom:172.366080pt;}
.y1a4{bottom:174.004480pt;}
.y19{bottom:175.052000pt;}
.y246{bottom:176.448000pt;}
.y181{bottom:176.527360pt;}
.y156{bottom:177.792000pt;}
.yce{bottom:179.203840pt;}
.y2c1{bottom:180.398080pt;}
.ya2{bottom:180.471040pt;}
.y2e2{bottom:180.474880pt;}
.y4a{bottom:180.750400pt;}
.y296{bottom:181.003520pt;}
.y11e{bottom:184.320000pt;}
.y39b{bottom:185.932000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y30e{bottom:187.398400pt;}
.y348{bottom:187.645280pt;}
.y378{bottom:187.816480pt;}
.yf9{bottom:188.436480pt;}
.y6f{bottom:188.997280pt;}
.y1f4{bottom:191.904000pt;}
.y220{bottom:192.359680pt;}
.y1a3{bottom:193.998080pt;}
.y245{bottom:196.441600pt;}
.y180{bottom:196.520960pt;}
.y49{bottom:196.752800pt;}
.y12b{bottom:197.280960pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y155{bottom:198.109440pt;}
.ycd{bottom:199.197440pt;}
.y2c0{bottom:200.391680pt;}
.y2e1{bottom:200.468480pt;}
.ya1{bottom:200.788480pt;}
.y295{bottom:200.997120pt;}
.y377{bottom:203.818720pt;}
.y6e{bottom:204.999680pt;}
.y30d{bottom:207.392000pt;}
.y1d0{bottom:207.557120pt;}
.yf8{bottom:208.430080pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y39a{bottom:209.296000pt;}
.y347{bottom:211.648640pt;}
.y1f3{bottom:212.066560pt;}
.y21f{bottom:212.353280pt;}
.y48{bottom:212.755200pt;}
.y1a2{bottom:213.991680pt;}
.y271{bottom:216.403200pt;}
.y244{bottom:216.435200pt;}
.y17f{bottom:216.514560pt;}
.y154{bottom:218.595840pt;}
.ycc{bottom:219.191040pt;}
.y376{bottom:219.820960pt;}
.y2bf{bottom:220.385280pt;}
.y2e0{bottom:220.462080pt;}
.y6d{bottom:221.002080pt;}
.ya0{bottom:221.105920pt;}
.y294{bottom:221.159680pt;}
.y12a{bottom:221.280000pt;}
.y399{bottom:224.656000pt;}
.y30c{bottom:227.385600pt;}
.y1cf{bottom:227.550720pt;}
.y346{bottom:227.650880pt;}
.yf7{bottom:228.423680pt;}
.y47{bottom:228.757600pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1f2{bottom:232.229120pt;}
.y1a1{bottom:233.985280pt;}
.y375{bottom:235.823200pt;}
.y270{bottom:236.396800pt;}
.y243{bottom:236.428800pt;}
.y17e{bottom:236.508160pt;}
.y6c{bottom:237.004480pt;}
.y153{bottom:238.913280pt;}
.ycb{bottom:239.184640pt;}
.y21e{bottom:240.358400pt;}
.y2df{bottom:240.455680pt;}
.y9f{bottom:241.268480pt;}
.y293{bottom:241.322240pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y398{bottom:244.012000pt;}
.y46{bottom:244.760000pt;}
.y30b{bottom:247.379200pt;}
.y1ce{bottom:247.544320pt;}
.y2be{bottom:248.390400pt;}
.yf6{bottom:248.417280pt;}
.y345{bottom:251.654240pt;}
.y1f1{bottom:252.222720pt;}
.y6b{bottom:253.006880pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y26f{bottom:256.390400pt;}
.y242{bottom:256.422400pt;}
.y17d{bottom:256.501760pt;}
.yca{bottom:259.178240pt;}
.y1a0{bottom:259.258880pt;}
.y152{bottom:259.399680pt;}
.y374{bottom:259.826560pt;}
.y21d{bottom:260.352000pt;}
.y2de{bottom:260.449280pt;}
.y45{bottom:260.762400pt;}
.y292{bottom:261.484800pt;}
.y9e{bottom:261.585920pt;}
.y119{bottom:261.600000pt;}
.y10f{bottom:262.400000pt;}
.y397{bottom:265.768000pt;}
.y30a{bottom:267.372800pt;}
.y1cd{bottom:267.537920pt;}
.y344{bottom:267.656480pt;}
.y2bd{bottom:268.384000pt;}
.yf5{bottom:268.410880pt;}
.y1f0{bottom:272.385280pt;}
.y129{bottom:273.120000pt;}
.y373{bottom:275.828800pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y26e{bottom:276.384000pt;}
.y241{bottom:276.416000pt;}
.y17c{bottom:276.495360pt;}
.y6a{bottom:276.525760pt;}
.y44{bottom:276.764800pt;}
.yc9{bottom:279.171840pt;}
.y19f{bottom:279.252480pt;}
.y21c{bottom:280.345600pt;}
.y2dd{bottom:280.442880pt;}
.y396{bottom:281.764000pt;}
.y9d{bottom:281.903360pt;}
.y343{bottom:283.658720pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y309{bottom:287.366400pt;}
.y1cc{bottom:287.531520pt;}
.y151{bottom:287.714560pt;}
.y2bc{bottom:288.377600pt;}
.yf4{bottom:288.404480pt;}
.y291{bottom:289.644800pt;}
.y128{bottom:290.560000pt;}
.y69{bottom:292.528160pt;}
.y1ef{bottom:292.547840pt;}
.y43{bottom:292.767200pt;}
.y26d{bottom:296.377600pt;}
.y240{bottom:296.409600pt;}
.y395{bottom:297.760000pt;}
.yc8{bottom:299.165440pt;}
.y19e{bottom:299.246080pt;}
.y372{bottom:299.832160pt;}
.y21b{bottom:300.339200pt;}
.y2dc{bottom:300.436480pt;}
.y9c{bottom:302.065920pt;}
.y17b{bottom:304.500480pt;}
.y308{bottom:307.360000pt;}
.y1cb{bottom:307.525120pt;}
.y342{bottom:307.662080pt;}
.y127{bottom:307.840000pt;}
.y150{bottom:308.200960pt;}
.y2bb{bottom:308.371200pt;}
.yf3{bottom:308.398080pt;}
.y68{bottom:308.530560pt;}
.y10{bottom:309.452000pt;}
.y290{bottom:309.807360pt;}
.y1ee{bottom:312.710400pt;}
.y371{bottom:315.834400pt;}
.y26c{bottom:316.371200pt;}
.y23f{bottom:316.403200pt;}
.yc7{bottom:319.159040pt;}
.y19d{bottom:319.239680pt;}
.y21a{bottom:320.332800pt;}
.y2db{bottom:320.430080pt;}
.y394{bottom:321.760000pt;}
.y9b{bottom:322.383360pt;}
.y341{bottom:323.664320pt;}
.y17a{bottom:324.494080pt;}
.y67{bottom:324.532960pt;}
.y42{bottom:324.772000pt;}
.y126{bottom:325.280000pt;}
.y1ca{bottom:327.518720pt;}
.y2ba{bottom:328.364800pt;}
.yf2{bottom:328.391680pt;}
.y14f{bottom:328.518400pt;}
.y28f{bottom:329.800960pt;}
.y370{bottom:331.836640pt;}
.y1ed{bottom:332.872960pt;}
.y307{bottom:335.680000pt;}
.y26b{bottom:336.364800pt;}
.y23e{bottom:336.396800pt;}
.yc6{bottom:339.152640pt;}
.y19c{bottom:339.233280pt;}
.y340{bottom:339.666560pt;}
.y219{bottom:340.326400pt;}
.y2da{bottom:340.423680pt;}
.y66{bottom:340.535360pt;}
.y41{bottom:341.093120pt;}
.y9a{bottom:342.700800pt;}
.y125{bottom:342.720000pt;}
.yf{bottom:343.809333pt;}
.y179{bottom:344.487680pt;}
.y1c9{bottom:347.512320pt;}
.y2b9{bottom:348.358400pt;}
.yf1{bottom:348.385280pt;}
.y14e{bottom:349.004800pt;}
.y28e{bottom:349.963520pt;}
.y1ec{bottom:353.035520pt;}
.y393{bottom:353.764000pt;}
.y306{bottom:355.680000pt;}
.y36f{bottom:355.750400pt;}
.y26a{bottom:356.358400pt;}
.y23d{bottom:356.390400pt;}
.y40{bottom:357.254880pt;}
.yc5{bottom:359.146240pt;}
.y19b{bottom:359.226880pt;}
.y124{bottom:360.000000pt;}
.y218{bottom:360.320000pt;}
.ye{bottom:362.706666pt;}
.y99{bottom:362.863360pt;}
.y33f{bottom:363.669920pt;}
.y65{bottom:364.054240pt;}
.y178{bottom:364.481280pt;}
.y1c8{bottom:367.505920pt;}
.y2b8{bottom:368.352000pt;}
.yf0{bottom:368.378880pt;}
.y2d9{bottom:368.428800pt;}
.y14d{bottom:369.322240pt;}
.y392{bottom:369.760000pt;}
.y28d{bottom:370.126080pt;}
.y36e{bottom:371.752640pt;}
.y1eb{bottom:373.029120pt;}
.y3f{bottom:373.576000pt;}
.y269{bottom:376.352000pt;}
.y23c{bottom:376.384000pt;}
.y123{bottom:377.280000pt;}
.y19a{bottom:379.220480pt;}
.y33e{bottom:379.672160pt;}
.y64{bottom:380.056640pt;}
.y98{bottom:383.180800pt;}
.y177{bottom:384.474880pt;}
.y391{bottom:385.756000pt;}
.yc4{bottom:387.151360pt;}
.y1c7{bottom:387.499520pt;}
.y217{bottom:388.320000pt;}
.y2b7{bottom:388.345600pt;}
.yef{bottom:388.372480pt;}
.y2d8{bottom:388.422400pt;}
.y14c{bottom:389.808640pt;}
.y3e{bottom:389.897120pt;}
.y28c{bottom:390.288640pt;}
.y305{bottom:391.590400pt;}
.y1ea{bottom:393.191680pt;}
.y122{bottom:394.720000pt;}
.y36d{bottom:395.756000pt;}
.y63{bottom:396.059040pt;}
.y268{bottom:396.345600pt;}
.y23b{bottom:396.377600pt;}
.y199{bottom:399.214080pt;}
.y110{bottom:400.320000pt;}
.y97{bottom:403.498240pt;}
.y33d{bottom:403.675520pt;}
.y176{bottom:404.468480pt;}
.y3d{bottom:406.058880pt;}
.yc3{bottom:406.990080pt;}
.y1c6{bottom:407.493120pt;}
.y2b6{bottom:408.339200pt;}
.yee{bottom:408.366080pt;}
.y2d7{bottom:408.416000pt;}
.y14b{bottom:410.126080pt;}
.y28b{bottom:410.451200pt;}
.y304{bottom:411.584000pt;}
.y36c{bottom:411.758240pt;}
.y121{bottom:412.000000pt;}
.y62{bottom:412.061440pt;}
.y1e9{bottom:413.354240pt;}
.y267{bottom:416.339200pt;}
.y23a{bottom:416.371200pt;}
.y216{bottom:416.536320pt;}
.y390{bottom:417.760000pt;}
.y198{bottom:419.207680pt;}
.y33c{bottom:419.677760pt;}
.y3c{bottom:422.380000pt;}
.y96{bottom:423.660800pt;}
.y175{bottom:424.462080pt;}
.yc2{bottom:426.983680pt;}
.y1c5{bottom:427.486720pt;}
.y61{bottom:428.063840pt;}
.y2b5{bottom:428.332800pt;}
.yed{bottom:428.359680pt;}
.y2d6{bottom:428.409600pt;}
.y11f{bottom:429.280000pt;}
.y14a{bottom:430.612480pt;}
.y28a{bottom:430.613760pt;}
.y303{bottom:431.746560pt;}
.y38f{bottom:433.276000pt;}
.y33b{bottom:435.680000pt;}
.y36b{bottom:435.761600pt;}
.y266{bottom:436.332800pt;}
.y239{bottom:436.364800pt;}
.y215{bottom:436.529920pt;}
.y3b{bottom:438.701120pt;}
.y197{bottom:439.201280pt;}
.y1e8{bottom:441.514240pt;}
.y95{bottom:443.978240pt;}
.y60{bottom:444.066240pt;}
.y174{bottom:444.455680pt;}
.y11d{bottom:446.720000pt;}
.yc1{bottom:446.822400pt;}
.yd{bottom:446.990669pt;}
.y1c4{bottom:447.480320pt;}
.y2b4{bottom:448.326400pt;}
.yec{bottom:448.353280pt;}
.y2d5{bottom:448.403200pt;}
.y38e{bottom:448.480000pt;}
.y289{bottom:450.607360pt;}
.y149{bottom:450.929920pt;}
.y36a{bottom:451.763840pt;}
.y302{bottom:451.909120pt;}
.y3a{bottom:454.862880pt;}
.y265{bottom:456.326400pt;}
.y238{bottom:456.358400pt;}
.y214{bottom:456.523520pt;}
.y196{bottom:459.194880pt;}
.y33a{bottom:461.120000pt;}
.y1e7{bottom:461.831680pt;}
.yc{bottom:462.990669pt;}
.y94{bottom:464.295680pt;}
.y173{bottom:464.449280pt;}
.yc0{bottom:466.661120pt;}
.y1c3{bottom:467.473920pt;}
.y5f{bottom:467.585120pt;}
.y2b3{bottom:468.320000pt;}
.y2d4{bottom:468.396800pt;}
.y288{bottom:470.769920pt;}
.y39{bottom:471.184000pt;}
.y148{bottom:471.416320pt;}
.y11c{bottom:472.000000pt;}
.y301{bottom:472.071680pt;}
.y369{bottom:475.767200pt;}
.y264{bottom:476.320000pt;}
.y237{bottom:476.352000pt;}
.yeb{bottom:476.358400pt;}
.y213{bottom:476.517120pt;}
.yb{bottom:478.990666pt;}
.y195{bottom:479.188480pt;}
.y1e6{bottom:481.994240pt;}
.y5e{bottom:483.587520pt;}
.y172{bottom:484.442880pt;}
.ybf{bottom:486.499840pt;}
.y1c2{bottom:487.467520pt;}
.y38{bottom:487.505120pt;}
.y2d3{bottom:488.390400pt;}
.y11b{bottom:489.280000pt;}
.y287{bottom:490.932480pt;}
.y147{bottom:491.733760pt;}
.y368{bottom:491.769440pt;}
.y300{bottom:492.234240pt;}
.y93{bottom:492.455680pt;}
.ya{bottom:494.990666pt;}
.y236{bottom:496.345600pt;}
.yea{bottom:496.352000pt;}
.y2b2{bottom:497.280000pt;}
.y194{bottom:499.182080pt;}
.y5d{bottom:499.749280pt;}
.y339{bottom:500.285440pt;}
.y320{bottom:500.384000pt;}
.y1e5{bottom:502.311680pt;}
.y37{bottom:503.666880pt;}
.y263{bottom:504.320000pt;}
.y171{bottom:504.436480pt;}
.y212{bottom:504.522240pt;}
.ybe{bottom:506.338560pt;}
.y11a{bottom:506.720000pt;}
.y1c1{bottom:507.461120pt;}
.y367{bottom:507.771680pt;}
.y2d2{bottom:508.384000pt;}
.y286{bottom:511.095040pt;}
.y2ff{bottom:512.396800pt;}
.y92{bottom:512.449280pt;}
.y235{bottom:516.339200pt;}
.ye9{bottom:516.345600pt;}
.y193{bottom:519.175680pt;}
.y36{bottom:519.988000pt;}
.y146{bottom:520.217600pt;}
.y31f{bottom:520.377600pt;}
.y338{bottom:520.448000pt;}
.y1e4{bottom:522.629120pt;}
.y5c{bottom:522.630720pt;}
.y118{bottom:524.000000pt;}
.y211{bottom:524.515840pt;}
.ybd{bottom:526.177280pt;}
.y1c0{bottom:527.454720pt;}
.y2d1{bottom:528.377600pt;}
.y285{bottom:531.257600pt;}
.y366{bottom:531.775040pt;}
.y2fe{bottom:532.390400pt;}
.y170{bottom:532.441600pt;}
.y91{bottom:532.442880pt;}
.y262{bottom:532.615680pt;}
.y35{bottom:536.309120pt;}
.y234{bottom:536.332800pt;}
.ye8{bottom:536.339200pt;}
.y2b1{bottom:536.442880pt;}
.y5b{bottom:538.633120pt;}
.y192{bottom:539.169280pt;}
.y31e{bottom:540.371200pt;}
.y145{bottom:540.380160pt;}
.y337{bottom:540.765440pt;}
.y117{bottom:541.280000pt;}
.y1e3{bottom:542.791680pt;}
.y210{bottom:544.509440pt;}
.ybc{bottom:546.170880pt;}
.y1bf{bottom:547.448320pt;}
.y365{bottom:547.777280pt;}
.y2d0{bottom:548.371200pt;}
.y16f{bottom:552.435200pt;}
.y90{bottom:552.436480pt;}
.y34{bottom:552.470880pt;}
.y2fd{bottom:552.552960pt;}
.y261{bottom:552.609280pt;}
.y5a{bottom:554.635520pt;}
.y233{bottom:556.326400pt;}
.ye7{bottom:556.332800pt;}
.y2b0{bottom:556.436480pt;}
.y116{bottom:558.720000pt;}
.y191{bottom:559.162880pt;}
.y284{bottom:559.417600pt;}
.y31d{bottom:560.364800pt;}
.y144{bottom:560.697600pt;}
.y336{bottom:561.082880pt;}
.y1e2{bottom:563.109120pt;}
.y364{bottom:563.779520pt;}
.y20f{bottom:564.503040pt;}
.ybb{bottom:566.009600pt;}
.y1be{bottom:567.441920pt;}
.y2cf{bottom:568.364800pt;}
.y33{bottom:568.792000pt;}
.y59{bottom:570.637920pt;}
.y16e{bottom:572.428800pt;}
.y8f{bottom:572.430080pt;}
.y260{bottom:572.602880pt;}
.y2fc{bottom:572.715520pt;}
.y9{bottom:573.786667pt;}
.y115{bottom:576.000000pt;}
.y232{bottom:576.320000pt;}
.ye6{bottom:576.326400pt;}
.y2af{bottom:576.430080pt;}
.y190{bottom:579.156480pt;}
.y283{bottom:579.411200pt;}
.y363{bottom:579.781760pt;}
.y31c{bottom:580.358400pt;}
.y143{bottom:581.015040pt;}
.y335{bottom:581.245440pt;}
.y1e1{bottom:583.426560pt;}
.y38d{bottom:583.840000pt;}
.y20e{bottom:584.496640pt;}
.y32{bottom:585.113120pt;}
.yba{bottom:585.848320pt;}
.y58{bottom:586.640320pt;}
.y1bd{bottom:587.435520pt;}
.y2ce{bottom:588.358400pt;}
.y16d{bottom:592.422400pt;}
.y8e{bottom:592.423680pt;}
.y25f{bottom:592.596480pt;}
.y8{bottom:592.685334pt;}
.y114{bottom:593.280000pt;}
.ye5{bottom:596.320000pt;}
.y2ae{bottom:596.423680pt;}
.y18f{bottom:599.150080pt;}
.y282{bottom:599.573760pt;}
.y31b{bottom:600.352000pt;}
.y2fb{bottom:600.875520pt;}
.y142{bottom:601.177600pt;}
.y31{bottom:601.274880pt;}
.y334{bottom:601.562880pt;}
.y57{bottom:602.642720pt;}
.y1e0{bottom:603.589120pt;}
.y362{bottom:603.785120pt;}
.y231{bottom:604.320000pt;}
.y20d{bottom:604.490240pt;}
.yb9{bottom:605.687040pt;}
.y1bc{bottom:607.429120pt;}
.y2cd{bottom:608.352000pt;}
.y113{bottom:610.720000pt;}
.y16c{bottom:612.416000pt;}
.y8d{bottom:612.417280pt;}
.y25e{bottom:612.590080pt;}
.y2ad{bottom:616.417280pt;}
.y30{bottom:617.596000pt;}
.y56{bottom:618.645120pt;}
.y18e{bottom:619.143680pt;}
.y281{bottom:619.736320pt;}
.y361{bottom:619.787360pt;}
.y31a{bottom:620.345600pt;}
.y2fa{bottom:621.192960pt;}
.y141{bottom:621.495040pt;}
.y333{bottom:621.880320pt;}
.y38c{bottom:623.836000pt;}
.y1df{bottom:623.906560pt;}
.y20c{bottom:624.483840pt;}
.ye4{bottom:625.280000pt;}
.yb8{bottom:625.525760pt;}
.y1bb{bottom:627.422720pt;}
.y112{bottom:628.000000pt;}
.y2cc{bottom:628.345600pt;}
.y16b{bottom:632.409600pt;}
.y8c{bottom:632.410880pt;}
.y230{bottom:632.435200pt;}
.y25d{bottom:632.583680pt;}
.y2f{bottom:633.917120pt;}
.y55{bottom:634.647520pt;}
.y2ac{bottom:636.410880pt;}
.y18d{bottom:639.137280pt;}
.y280{bottom:639.898880pt;}
.y319{bottom:640.339200pt;}
.y2f9{bottom:641.355520pt;}
.y140{bottom:641.812480pt;}
.y332{bottom:642.042880pt;}
.y360{bottom:643.790720pt;}
.y1de{bottom:644.224000pt;}
.y20b{bottom:644.477440pt;}
.y111{bottom:645.280000pt;}
.yb7{bottom:645.364480pt;}
.y7{bottom:645.598667pt;}
.y1ba{bottom:647.416320pt;}
.y2cb{bottom:648.339200pt;}
.y2e{bottom:650.078880pt;}
.y54{bottom:650.649920pt;}
.y16a{bottom:652.403200pt;}
.y8b{bottom:652.404480pt;}
.y22f{bottom:652.428800pt;}
.y25c{bottom:652.577280pt;}
.y2ab{bottom:656.404480pt;}
.y18c{bottom:659.130880pt;}
.y35f{bottom:659.792960pt;}
.y27f{bottom:660.061440pt;}
.y318{bottom:660.332800pt;}
.y2f8{bottom:661.672960pt;}
.y13f{bottom:661.975040pt;}
.y331{bottom:662.360320pt;}
.y38b{bottom:663.832000pt;}
.ye3{bottom:664.410880pt;}
.y20a{bottom:664.471040pt;}
.yb6{bottom:665.358080pt;}
.y2d{bottom:666.400000pt;}
.y53{bottom:666.652320pt;}
.y1b9{bottom:667.409920pt;}
.y2ca{bottom:668.332800pt;}
.y3{bottom:668.977329pt;}
.y1dd{bottom:672.384000pt;}
.y169{bottom:672.396800pt;}
.y22e{bottom:672.422400pt;}
.y25b{bottom:672.570880pt;}
.y2aa{bottom:676.398080pt;}
.y18b{bottom:679.124480pt;}
.y10e{bottom:680.000000pt;}
.y27e{bottom:680.224000pt;}
.y317{bottom:680.326400pt;}
.y8a{bottom:680.409600pt;}
.y2f7{bottom:681.990400pt;}
.y13e{bottom:682.292480pt;}
.y52{bottom:682.654720pt;}
.y330{bottom:682.677760pt;}
.y35e{bottom:683.796320pt;}
.ye2{bottom:684.404480pt;}
.y209{bottom:684.464640pt;}
.yb5{bottom:685.196800pt;}
.y1b8{bottom:687.403520pt;}
.y2c9{bottom:688.326400pt;}
.y2c{bottom:692.012160pt;}
.y1dc{bottom:692.377600pt;}
.y168{bottom:692.390400pt;}
.y22d{bottom:692.416000pt;}
.y25a{bottom:692.564480pt;}
.y2a9{bottom:696.391680pt;}
.y10d{bottom:697.280000pt;}
.y51{bottom:698.657120pt;}
.y18a{bottom:699.118080pt;}
.y35d{bottom:699.798560pt;}
.y27d{bottom:700.217600pt;}
.y316{bottom:700.320000pt;}
.y89{bottom:700.403200pt;}
.y2f6{bottom:702.152960pt;}
.y13d{bottom:702.609920pt;}
.y32f{bottom:702.840320pt;}
.y38a{bottom:703.672000pt;}
.ye1{bottom:704.398080pt;}
.y208{bottom:704.458240pt;}
.yb4{bottom:705.035520pt;}
.y1b7{bottom:707.397120pt;}
.y2c8{bottom:708.320000pt;}
.y1db{bottom:712.371200pt;}
.y167{bottom:712.384000pt;}
.y22c{bottom:712.409600pt;}
.y259{bottom:712.558080pt;}
.y35c{bottom:715.800800pt;}
.y2b{bottom:716.011200pt;}
.y2a8{bottom:716.385280pt;}
.y189{bottom:719.111680pt;}
.y88{bottom:720.396800pt;}
.y2f5{bottom:722.470400pt;}
.y10c{bottom:722.720000pt;}
.y13c{bottom:722.772480pt;}
.y32e{bottom:723.157760pt;}
.ye0{bottom:724.391680pt;}
.y207{bottom:724.451840pt;}
.yb3{bottom:724.874240pt;}
.y1b6{bottom:727.390720pt;}
.y27c{bottom:728.377600pt;}
.y315{bottom:728.640000pt;}
.y1da{bottom:732.364800pt;}
.y166{bottom:732.377600pt;}
.y22b{bottom:732.403200pt;}
.y258{bottom:732.551680pt;}
.y2c7{bottom:736.640000pt;}
.y2a{bottom:737.445600pt;}
.y188{bottom:739.105280pt;}
.y35b{bottom:739.804160pt;}
.y10b{bottom:740.000000pt;}
.y87{bottom:740.390400pt;}
.y2f4{bottom:742.787840pt;}
.y13b{bottom:743.089920pt;}
.y32d{bottom:743.475200pt;}
.y389{bottom:743.668000pt;}
.ydf{bottom:744.385280pt;}
.y2a7{bottom:744.390400pt;}
.y206{bottom:744.445440pt;}
.yb2{bottom:744.712960pt;}
.y1b5{bottom:747.384320pt;}
.y27b{bottom:748.371200pt;}
.y314{bottom:748.640000pt;}
.y1d9{bottom:752.358400pt;}
.y165{bottom:752.371200pt;}
.y22a{bottom:752.396800pt;}
.y257{bottom:752.545280pt;}
.y35a{bottom:755.806400pt;}
.y10a{bottom:757.280000pt;}
.y29{bottom:758.880000pt;}
.y187{bottom:759.098880pt;}
.y388{bottom:759.352000pt;}
.y86{bottom:760.384000pt;}
.y2f3{bottom:762.950400pt;}
.y13a{bottom:763.407360pt;}
.y32c{bottom:763.637760pt;}
.yde{bottom:764.378880pt;}
.y2a6{bottom:764.384000pt;}
.y205{bottom:764.439040pt;}
.y1b4{bottom:767.377920pt;}
.y27a{bottom:768.364800pt;}
.y359{bottom:771.808640pt;}
.y1d8{bottom:772.352000pt;}
.y164{bottom:772.364800pt;}
.y229{bottom:772.390400pt;}
.y256{bottom:772.538880pt;}
.yb1{bottom:772.549120pt;}
.y109{bottom:774.720000pt;}
.y186{bottom:779.092480pt;}
.y85{bottom:780.377600pt;}
.y2{bottom:781.661334pt;}
.y2f2{bottom:783.267840pt;}
.y139{bottom:783.569920pt;}
.y32b{bottom:783.955200pt;}
.ydd{bottom:784.372480pt;}
.y2a5{bottom:784.377600pt;}
.y204{bottom:784.432640pt;}
.y1b3{bottom:787.371520pt;}
.y279{bottom:788.358400pt;}
.y387{bottom:790.396000pt;}
.y108{bottom:792.000000pt;}
.y1d7{bottom:792.345600pt;}
.y163{bottom:792.358400pt;}
.y228{bottom:792.384000pt;}
.y255{bottom:792.532480pt;}
.yb0{bottom:792.542720pt;}
.y358{bottom:795.812000pt;}
.y84{bottom:800.371200pt;}
.y2f1{bottom:803.585280pt;}
.y138{bottom:803.887360pt;}
.y32a{bottom:804.272640pt;}
.ydc{bottom:804.366080pt;}
.y2a4{bottom:804.371200pt;}
.y203{bottom:804.426240pt;}
.y386{bottom:806.080000pt;}
.y278{bottom:808.352000pt;}
.y107{bottom:809.120000pt;}
.y357{bottom:811.814240pt;}
.y1d6{bottom:812.339200pt;}
.y162{bottom:812.352000pt;}
.y227{bottom:812.377600pt;}
.y254{bottom:812.526080pt;}
.yaf{bottom:812.536320pt;}
.y1b2{bottom:812.645120pt;}
.y83{bottom:820.364800pt;}
.y28{bottom:821.760640pt;}
.y2f0{bottom:823.747840pt;}
.y137{bottom:824.204800pt;}
.ydb{bottom:824.359680pt;}
.y2a3{bottom:824.364800pt;}
.y106{bottom:826.560000pt;}
.y277{bottom:828.345600pt;}
.y1d5{bottom:832.332800pt;}
.y161{bottom:832.345600pt;}
.y226{bottom:832.371200pt;}
.y202{bottom:832.431360pt;}
.y329{bottom:832.432640pt;}
.y253{bottom:832.519680pt;}
.yae{bottom:832.529920pt;}
.y1b1{bottom:832.638720pt;}
.y356{bottom:835.817600pt;}
.y385{bottom:837.436000pt;}
.y82{bottom:840.358400pt;}
.y2ef{bottom:844.065280pt;}
.yda{bottom:844.353280pt;}
.y2a2{bottom:844.358400pt;}
.y276{bottom:848.339200pt;}
.y27{bottom:850.883200pt;}
.y355{bottom:851.819840pt;}
.y105{bottom:852.320000pt;}
.y1d4{bottom:852.326400pt;}
.y160{bottom:852.339200pt;}
.y136{bottom:852.364800pt;}
.y201{bottom:852.424960pt;}
.y328{bottom:852.426240pt;}
.y252{bottom:852.513280pt;}
.yad{bottom:852.523520pt;}
.y1b0{bottom:852.632320pt;}
.y1{bottom:859.312000pt;}
.y81{bottom:860.352000pt;}
.yd9{bottom:864.346880pt;}
.y2a1{bottom:864.352000pt;}
.y2ee{bottom:864.382720pt;}
.y354{bottom:867.822080pt;}
.y384{bottom:868.312000pt;}
.y275{bottom:868.332800pt;}
.y1d3{bottom:872.320000pt;}
.y15f{bottom:872.332800pt;}
.y135{bottom:872.358400pt;}
.y200{bottom:872.418560pt;}
.y327{bottom:872.419840pt;}
.y251{bottom:872.506880pt;}
.yac{bottom:872.517120pt;}
.y1af{bottom:872.625920pt;}
.y26{bottom:880.005760pt;}
.y80{bottom:880.345600pt;}
.y353{bottom:883.824320pt;}
.y383{bottom:883.996000pt;}
.yd8{bottom:884.340480pt;}
.y2a0{bottom:884.345600pt;}
.y274{bottom:888.326400pt;}
.y15e{bottom:892.326400pt;}
.y134{bottom:892.352000pt;}
.y1ff{bottom:892.412160pt;}
.y326{bottom:892.413440pt;}
.y250{bottom:892.500480pt;}
.y104{bottom:892.506880pt;}
.yab{bottom:892.510720pt;}
.y2ed{bottom:892.542720pt;}
.y1ae{bottom:892.619520pt;}
.y1d2{bottom:900.320000pt;}
.y7f{bottom:900.339200pt;}
.yd7{bottom:904.334080pt;}
.y29f{bottom:904.339200pt;}
.y352{bottom:907.827680pt;}
.y273{bottom:908.320000pt;}
.y25{bottom:909.280000pt;}
.y15d{bottom:912.320000pt;}
.y133{bottom:912.345600pt;}
.y1fe{bottom:912.405760pt;}
.y325{bottom:912.407040pt;}
.y24f{bottom:912.494080pt;}
.y103{bottom:912.500480pt;}
.yaa{bottom:912.504320pt;}
.y2ec{bottom:912.536320pt;}
.y1ad{bottom:912.613120pt;}
.y382{bottom:915.040000pt;}
.y7e{bottom:920.332800pt;}
.y351{bottom:923.829920pt;}
.yd6{bottom:924.327680pt;}
.y29e{bottom:924.332800pt;}
.y1d1{bottom:928.640000pt;}
.y381{bottom:930.724000pt;}
.y132{bottom:932.339200pt;}
.y1fd{bottom:932.399360pt;}
.y324{bottom:932.400640pt;}
.y24e{bottom:932.487680pt;}
.y102{bottom:932.494080pt;}
.ya9{bottom:932.497920pt;}
.y2eb{bottom:932.529920pt;}
.y1ac{bottom:932.606720pt;}
.y272{bottom:936.800000pt;}
.y350{bottom:939.832160pt;}
.y7d{bottom:940.326400pt;}
.y15c{bottom:941.281920pt;}
.yd5{bottom:944.321280pt;}
.y29d{bottom:944.326400pt;}
.y131{bottom:952.332800pt;}
.y1fc{bottom:952.392960pt;}
.y323{bottom:952.394240pt;}
.y24d{bottom:952.481280pt;}
.y101{bottom:952.487680pt;}
.ya8{bottom:952.491520pt;}
.y2ea{bottom:952.523520pt;}
.y1ab{bottom:952.600320pt;}
.y78{bottom:959.360000pt;}
.y7c{bottom:960.320000pt;}
.y380{bottom:961.768000pt;}
.y76{bottom:963.040000pt;}
.y34f{bottom:963.835520pt;}
.y29c{bottom:964.320000pt;}
.y15b{bottom:965.280960pt;}
.yd4{bottom:972.326400pt;}
.y1fb{bottom:972.386560pt;}
.y322{bottom:972.387840pt;}
.y24c{bottom:972.474880pt;}
.y100{bottom:972.481280pt;}
.ya7{bottom:972.485120pt;}
.y2e9{bottom:972.517120pt;}
.y1aa{bottom:972.593920pt;}
.y34e{bottom:979.837760pt;}
.y37f{bottom:981.124000pt;}
.y7b{bottom:989.280000pt;}
.yd3{bottom:992.320000pt;}
.y1fa{bottom:992.380160pt;}
.y321{bottom:992.381440pt;}
.y24b{bottom:992.468480pt;}
.yff{bottom:992.474880pt;}
.ya6{bottom:992.478720pt;}
.y2e8{bottom:992.510720pt;}
.y1a9{bottom:992.587520pt;}
.y34d{bottom:995.840000pt;}
.y37e{bottom:996.640000pt;}
.y23{bottom:998.080000pt;}
.y37c{bottom:1052.480000pt;}
.y7a{bottom:1053.440000pt;}
.h7{height:28.560000pt;}
.h10{height:33.440000pt;}
.h19{height:34.945312pt;}
.h12{height:36.480000pt;}
.h6{height:40.800000pt;}
.h13{height:41.002500pt;}
.h18{height:41.273438pt;}
.h3{height:42.840000pt;}
.h16{height:42.866250pt;}
.ha{height:43.474688pt;}
.h17{height:43.833087pt;}
.hf{height:45.675938pt;}
.h15{height:46.593750pt;}
.h9{height:48.427500pt;}
.h2{height:48.960000pt;}
.he{height:54.514687pt;}
.h11{height:61.969687pt;}
.hd{height:64.386562pt;}
.h5{height:69.360000pt;}
.hc{height:73.618125pt;}
.hb{height:77.811562pt;}
.h4{height:105.826671pt;}
.h14{height:610.720000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:272.000000pt;}
.w5{width:301.758667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.xb{left:13.440000pt;}
.xa{left:60.960000pt;}
.x6{left:75.520000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x10{left:103.200000pt;}
.xf{left:143.200000pt;}
.x4{left:180.874667pt;}
.xd{left:192.000000pt;}
.x7{left:285.600000pt;}
.x8{left:396.763200pt;}
.x3{left:404.408000pt;}
.x9{left:411.955520pt;}
.x11{left:415.692800pt;}
.xc{left:427.360000pt;}
.x5{left:457.280000pt;}
}




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