
    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_7b34f4e48f323c2048b82dde.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ebe950725b63efde04078d12.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5bddace28646e8876a81b2fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b0e55255e178e1ced6787420.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_da041540e66da96a6e23b28f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e2f6b465cb0615ea5d07af77.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.592000;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_a38678a282b18f411db43db4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_37d169114429bf9358988970.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_684c5fe05247678d97f64649.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c3b6478d4d34c48c23dc3fba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_35f10a0799a5fc3addf8c6ad.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.809082;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m0{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-26.640018px;}
.v5{vertical-align:-23.760132px;}
.v8{vertical-align:-5.760132px;}
.v1{vertical-align:-2.880066px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879886px;}
.v9{vertical-align:5.759946px;}
.v7{vertical-align:20.880246px;}
.v3{vertical-align:23.759952px;}
.v4{vertical-align:26.640018px;}
.ls0{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.140967px;}
.ls3a{letter-spacing:0.140973px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.167760px;}
.ls2d{letter-spacing:0.198720px;}
.ls5{letter-spacing:0.211648px;}
.ls1e{letter-spacing:0.211654px;}
.ls3{letter-spacing:0.214444px;}
.lsd{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.258364px;}
.ls11{letter-spacing:0.260266px;}
.lse{letter-spacing:0.260356px;}
.ls2c{letter-spacing:0.260362px;}
.lsc{letter-spacing:0.284316px;}
.ls44{letter-spacing:0.284881px;}
.ls2b{letter-spacing:0.370039px;}
.ls10{letter-spacing:0.410982px;}
.ls18{letter-spacing:0.411030px;}
.ls3b{letter-spacing:0.716959px;}
.ls15{letter-spacing:0.860881px;}
.ls14{letter-spacing:1.580886px;}
.lsf{letter-spacing:11.338726px;}
.ls12{letter-spacing:11.338816px;}
.ls16{letter-spacing:11.338822px;}
.ls20{letter-spacing:14.215356px;}
.ls35{letter-spacing:15.655184px;}
.ls3f{letter-spacing:16.375194px;}
.lsb{letter-spacing:17.053627px;}
.ls38{letter-spacing:17.259587px;}
.ls37{letter-spacing:17.259773px;}
.ls2f{letter-spacing:17.995815px;}
.ls2e{letter-spacing:19.254989px;}
.ls1a{letter-spacing:19.939243px;}
.ls19{letter-spacing:19.974903px;}
.ls1b{letter-spacing:19.974951px;}
.ls40{letter-spacing:20.155648px;}
.ls26{letter-spacing:20.155654px;}
.ls8{letter-spacing:21.092796px;}
.ls24{letter-spacing:21.163143px;}
.ls25{letter-spacing:21.163329px;}
.ls9{letter-spacing:21.373119px;}
.ls39{letter-spacing:21.595401px;}
.ls6{letter-spacing:22.093219px;}
.lsa{letter-spacing:22.813133px;}
.ls3e{letter-spacing:24.475415px;}
.ls3d{letter-spacing:25.556144px;}
.ls27{letter-spacing:26.454461px;}
.ls41{letter-spacing:26.635158px;}
.ls29{letter-spacing:29.334304px;}
.ls1c{letter-spacing:30.234873px;}
.ls34{letter-spacing:30.452058px;}
.ls36{letter-spacing:31.494046px;}
.ls2a{letter-spacing:31.674749px;}
.ls4{letter-spacing:32.892304px;}
.ls30{letter-spacing:35.093755px;}
.ls31{letter-spacing:35.994420px;}
.ls13{letter-spacing:39.811321px;}
.ls28{letter-spacing:40.133395px;}
.ls17{letter-spacing:40.531229px;}
.ls32{letter-spacing:47.332723px;}
.ls1d{letter-spacing:48.233520px;}
.ls42{letter-spacing:74.943630px;}
.ls22{letter-spacing:81.170190px;}
.ls21{letter-spacing:84.015630px;}
.ls23{letter-spacing:86.892750px;}
.ls43{letter-spacing:95.102122px;}
.ls7{letter-spacing:106.766150px;}
.ls1f{letter-spacing:849.532753px;}
.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;}
}
.ws2a{word-spacing:-72.000000px;}
.ws7{word-spacing:-59.832000px;}
.ws44{word-spacing:-56.383389px;}
.ws42{word-spacing:-56.306790px;}
.ws45{word-spacing:-55.586876px;}
.ws71{word-spacing:-54.219104px;}
.ws72{word-spacing:-53.286080px;}
.ws6f{word-spacing:-48.240000px;}
.ws79{word-spacing:-46.637280px;}
.ws38{word-spacing:-30.132000px;}
.ws1c{word-spacing:-29.916000px;}
.ws0{word-spacing:-22.500000px;}
.ws23{word-spacing:-20.160000px;}
.ws1d{word-spacing:-20.088000px;}
.wsf{word-spacing:-19.944000px;}
.ws5d{word-spacing:-18.547200px;}
.ws25{word-spacing:-18.348480px;}
.ws3{word-spacing:-18.000000px;}
.ws66{word-spacing:-16.952400px;}
.ws19{word-spacing:-16.553520px;}
.ws10{word-spacing:-13.362480px;}
.ws26{word-spacing:-11.567520px;}
.ws17{word-spacing:-10.769760px;}
.ws37{word-spacing:-4.114583px;}
.wsa{word-spacing:-2.684304px;}
.ws5f{word-spacing:-1.954793px;}
.ws11{word-spacing:-1.541331px;}
.ws60{word-spacing:-1.522751px;}
.ws40{word-spacing:-1.320365px;}
.ws8{word-spacing:-1.158066px;}
.ws12{word-spacing:-0.907033px;}
.ws62{word-spacing:-0.882463px;}
.ws33{word-spacing:-0.470729px;}
.wsb{word-spacing:-0.438331px;}
.ws9{word-spacing:-0.242238px;}
.ws27{word-spacing:-0.228788px;}
.ws24{word-spacing:-0.087981px;}
.ws74{word-spacing:-0.082916px;}
.ws29{word-spacing:-0.072000px;}
.ws3c{word-spacing:-0.047570px;}
.ws78{word-spacing:-0.025437px;}
.ws3d{word-spacing:-0.017395px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.119710px;}
.ws6c{word-spacing:0.224921px;}
.ws2d{word-spacing:0.293223px;}
.ws2e{word-spacing:0.428887px;}
.ws4b{word-spacing:0.496535px;}
.ws5e{word-spacing:0.498092px;}
.ws56{word-spacing:0.499325px;}
.ws73{word-spacing:0.551425px;}
.ws31{word-spacing:0.561022px;}
.ws47{word-spacing:0.568116px;}
.ws4c{word-spacing:0.568206px;}
.ws77{word-spacing:0.633722px;}
.ws4a{word-spacing:0.636998px;}
.ws49{word-spacing:0.637184px;}
.ws48{word-spacing:0.765911px;}
.ws36{word-spacing:0.768410px;}
.wsc{word-spacing:1.393145px;}
.wse{word-spacing:1.463492px;}
.wsd{word-spacing:1.534026px;}
.ws1f{word-spacing:1.671468px;}
.ws1a{word-spacing:2.371486px;}
.ws2{word-spacing:2.854611px;}
.ws1e{word-spacing:2.927453px;}
.ws3f{word-spacing:5.465683px;}
.ws6d{word-spacing:5.892467px;}
.ws4e{word-spacing:6.396635px;}
.ws75{word-spacing:6.396683px;}
.ws3b{word-spacing:6.612381px;}
.ws16{word-spacing:6.861163px;}
.ws5a{word-spacing:6.937408px;}
.ws5c{word-spacing:6.950732px;}
.ws59{word-spacing:6.989156px;}
.ws5b{word-spacing:6.989252px;}
.ws3e{word-spacing:7.314631px;}
.ws20{word-spacing:7.431057px;}
.ws4{word-spacing:7.695836px;}
.ws39{word-spacing:10.142807px;}
.ws6e{word-spacing:10.506163px;}
.ws51{word-spacing:10.711052px;}
.ws70{word-spacing:10.932238px;}
.ws1b{word-spacing:11.030814px;}
.ws2c{word-spacing:11.057001px;}
.ws4f{word-spacing:11.367387px;}
.ws34{word-spacing:11.484589px;}
.ws2b{word-spacing:11.844304px;}
.ws63{word-spacing:15.036026px;}
.ws35{word-spacing:17.415555px;}
.ws41{word-spacing:18.203408px;}
.ws28{word-spacing:19.867411px;}
.ws61{word-spacing:20.074051px;}
.ws2f{word-spacing:20.429290px;}
.ws4d{word-spacing:20.726644px;}
.ws14{word-spacing:22.225759px;}
.ws21{word-spacing:23.989738px;}
.ws32{word-spacing:25.514539px;}
.ws5{word-spacing:25.894477px;}
.ws64{word-spacing:27.555857px;}
.ws65{word-spacing:28.123440px;}
.ws18{word-spacing:30.279015px;}
.ws50{word-spacing:42.325012px;}
.ws6{word-spacing:43.889188px;}
.ws3a{word-spacing:67.450047px;}
.ws15{word-spacing:82.884908px;}
.ws13{word-spacing:130.058587px;}
.ws76{word-spacing:130.394107px;}
.ws53{word-spacing:200.778941px;}
.ws69{word-spacing:293.043834px;}
.ws54{word-spacing:300.201179px;}
.ws52{word-spacing:300.851414px;}
.ws68{word-spacing:305.090988px;}
.ws6b{word-spacing:317.636136px;}
.ws6a{word-spacing:318.290922px;}
.ws58{word-spacing:340.518067px;}
.ws55{word-spacing:340.518163px;}
.ws67{word-spacing:370.455066px;}
.ws57{word-spacing:380.835044px;}
.ws30{word-spacing:642.903175px;}
.ws46{word-spacing:882.857399px;}
.ws43{word-spacing:889.336818px;}
._27{margin-left:-5.760000px;}
._26{margin-left:-4.248000px;}
._8{margin-left:-3.108590px;}
._f{margin-left:-2.088000px;}
._0{margin-left:-1.080000px;}
._1{width:1.080000px;}
._3{width:2.853658px;}
._4{width:4.230707px;}
._1b{width:5.231349px;}
._6{width:6.264000px;}
._16{width:8.050260px;}
._21{width:9.102971px;}
._19{width:10.584000px;}
._18{width:11.727595px;}
._e{width:13.600107px;}
._c{width:15.015508px;}
._10{width:16.920000px;}
._28{width:18.285007px;}
._b{width:19.677450px;}
._2{width:21.161354px;}
._5{width:22.886843px;}
._a{width:24.115532px;}
._7{width:25.284590px;}
._17{width:26.424580px;}
._d{width:28.210087px;}
._1a{width:29.900384px;}
._25{width:31.164187px;}
._13{width:33.114578px;}
._11{width:34.592613px;}
._12{width:36.481141px;}
._30{width:37.716207px;}
._35{width:39.180590px;}
._14{width:40.377722px;}
._15{width:41.634750px;}
._9{width:43.147172px;}
._31{width:44.669542px;}
._1c{width:46.145193px;}
._32{width:47.665539px;}
._24{width:49.516064px;}
._23{width:51.491914px;}
._2b{width:52.680172px;}
._49{width:54.082798px;}
._40{width:55.999261px;}
._34{width:57.008550px;}
._3d{width:58.294349px;}
._38{width:59.350323px;}
._2f{width:62.089583px;}
._50{width:65.033828px;}
._3b{width:70.120571px;}
._2a{width:75.384000px;}
._29{width:76.464000px;}
._3e{width:79.753028px;}
._3a{width:84.015630px;}
._2e{width:86.228021px;}
._20{width:92.601358px;}
._1f{width:94.171321px;}
._43{width:95.373777px;}
._1d{width:96.683860px;}
._33{width:97.763040px;}
._1e{width:116.263223px;}
._41{width:125.928000px;}
._42{width:126.936000px;}
._47{width:146.649471px;}
._37{width:177.031387px;}
._2d{width:205.416000px;}
._2c{width:206.496000px;}
._3c{width:225.799939px;}
._46{width:248.161681px;}
._44{width:299.997568px;}
._4d{width:356.731302px;}
._4c{width:358.039956px;}
._4b{width:384.862032px;}
._4a{width:412.798482px;}
._45{width:744.923290px;}
._39{width:848.672236px;}
._48{width:876.822198px;}
._3f{width:921.458571px;}
._36{width:925.629249px;}
._4e{width:1193.597576px;}
._22{width:1253.203897px;}
._4f{width:1265.591996px;}
.fc4{color:rgb(255,0,0);}
.fc5{color:rgb(38,131,198);}
.fc2{color:rgb(51,91,116);}
.fc3{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsf{font-size:55.440000px;}
.fse{font-size:56.160000px;}
.fs7{font-size:59.760000px;}
.fsd{font-size:61.200000px;}
.fsc{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fsb{font-size:84.240000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:167.760000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000029px;}
.y171{bottom:3.599985px;}
.y16b{bottom:3.779971px;}
.y35f{bottom:3.779974px;}
.y182{bottom:3.779996px;}
.y1a2{bottom:4.139957px;}
.y1e7{bottom:4.139966px;}
.y1de{bottom:4.139975px;}
.y1ad{bottom:4.139982px;}
.yc2{bottom:4.139984px;}
.yb8{bottom:4.139987px;}
.y357{bottom:4.139990px;}
.y35b{bottom:4.139993px;}
.ybe{bottom:4.139994px;}
.yb4{bottom:4.139996px;}
.yba{bottom:4.140003px;}
.yc0{bottom:4.140010px;}
.y1b0{bottom:4.140017px;}
.yc5{bottom:4.140018px;}
.ybc{bottom:4.140021px;}
.y1e1{bottom:4.140022px;}
.y355{bottom:4.140033px;}
.y359{bottom:4.140036px;}
.y1e4{bottom:4.140041px;}
.y1e6{bottom:4.319958px;}
.y1e0{bottom:4.320015px;}
.y1e3{bottom:4.320033px;}
.y2e5{bottom:4.859965px;}
.y2e0{bottom:4.859970px;}
.y2de{bottom:4.859976px;}
.y2dc{bottom:4.860042px;}
.y2e2{bottom:5.039967px;}
.y38c{bottom:5.579982px;}
.y126{bottom:8.999991px;}
.y395{bottom:9.179987px;}
.y393{bottom:9.179996px;}
.y39b{bottom:9.180001px;}
.y39e{bottom:9.359979px;}
.y391{bottom:9.360003px;}
.y399{bottom:9.360009px;}
.y3a0{bottom:9.360016px;}
.y397{bottom:9.360018px;}
.y1ed{bottom:15.479997px;}
.y2f7{bottom:16.379996px;}
.y38e{bottom:17.099997px;}
.y404{bottom:18.134305px;}
.y3fa{bottom:18.175738px;}
.y412{bottom:22.404684px;}
.y181{bottom:22.680004px;}
.y16a{bottom:22.680027px;}
.y170{bottom:22.680033px;}
.y176{bottom:22.680039px;}
.y1cb{bottom:23.399987px;}
.y28c{bottom:24.299982px;}
.y1dd{bottom:24.839957px;}
.y1ac{bottom:24.839963px;}
.y1a8{bottom:24.839984px;}
.y1af{bottom:24.839999px;}
.yc4{bottom:24.840000px;}
.y1a4{bottom:24.840003px;}
.y28d{bottom:24.840006px;}
.y351{bottom:24.840012px;}
.yb7{bottom:24.840013px;}
.y1aa{bottom:24.840018px;}
.y1cc{bottom:24.840020px;}
.y1a1{bottom:24.840030px;}
.y1a6{bottom:24.840039px;}
.y41b{bottom:26.203626px;}
.y125{bottom:26.280021px;}
.y2f4{bottom:27.000000px;}
.y2fb{bottom:27.000025px;}
.y38b{bottom:27.899988px;}
.y1ec{bottom:32.760025px;}
.y17d{bottom:37.260006px;}
.y185{bottom:37.440004px;}
.y38f{bottom:37.979991px;}
.y402{bottom:39.906141px;}
.y3f8{bottom:39.947619px;}
.y365{bottom:39.959979px;}
.y364{bottom:40.140018px;}
.y362{bottom:40.679962px;}
.y36b{bottom:40.679993px;}
.y36e{bottom:40.680009px;}
.y368{bottom:40.680012px;}
.y361{bottom:40.859955px;}
.y36a{bottom:40.859985px;}
.y36d{bottom:40.860001px;}
.y367{bottom:40.860004px;}
.y18f{bottom:41.579976px;}
.y193{bottom:41.579982px;}
.y16f{bottom:41.579995px;}
.y175{bottom:41.580001px;}
.y17a{bottom:41.580008px;}
.y180{bottom:41.580013px;}
.y18b{bottom:41.580018px;}
.y124{bottom:43.560005px;}
.y410{bottom:44.924231px;}
.y2f5{bottom:45.000000px;}
.y2fc{bottom:45.000025px;}
.y352{bottom:45.539994px;}
.yb6{bottom:45.539996px;}
.y1dc{bottom:45.540028px;}
.y2fa{bottom:48.059993px;}
.y2f3{bottom:48.060012px;}
.y1eb{bottom:50.039964px;}
.y38a{bottom:50.219995px;}
.y403{bottom:52.138364px;}
.y3f9{bottom:52.179888px;}
.y419{bottom:54.273786px;}
.y17c{bottom:57.959988px;}
.y184{bottom:57.959994px;}
.y3fd{bottom:58.223508px;}
.y3f2{bottom:58.264941px;}
.y40b{bottom:59.217900px;}
.y189{bottom:59.219987px;}
.y18d{bottom:59.219991px;}
.y16d{bottom:59.220011px;}
.y186{bottom:59.399981px;}
.y191{bottom:59.399990px;}
.y173{bottom:59.400009px;}
.y178{bottom:59.400015px;}
.y17e{bottom:59.400021px;}
.y16e{bottom:60.479960px;}
.y18a{bottom:60.479982px;}
.y18e{bottom:60.479985px;}
.y174{bottom:60.659958px;}
.y179{bottom:60.659964px;}
.y17f{bottom:60.659970px;}
.y192{bottom:60.659984px;}
.y123{bottom:60.659996px;}
.y187{bottom:60.660021px;}
.y1ea{bottom:67.319993px;}
.y414{bottom:68.567526px;}
.y2f9{bottom:69.119960px;}
.y2f2{bottom:69.300018px;}
.y389{bottom:72.719995px;}
.y122{bottom:77.939979px;}
.y1e9{bottom:84.420030px;}
.y128{bottom:93.057072px;}
.y69{bottom:93.059995px;}
.y121{bottom:95.220008px;}
.y3f3{bottom:108.496265px;}
.y120{bottom:112.499991px;}
.y1d9{bottom:114.300002px;}
.y5a{bottom:115.019995px;}
.y2c1{bottom:115.199998px;}
.y11b{bottom:116.099997px;}
.y3fe{bottom:121.012662px;}
.y29a{bottom:122.220000px;}
.y3ab{bottom:125.459994px;}
.y19f{bottom:126.720000px;}
.y11f{bottom:129.779975px;}
.y37e{bottom:129.959994px;}
.y145{bottom:131.397067px;}
.y1c9{bottom:131.399992px;}
.y1d8{bottom:131.579995px;}
.y218{bottom:132.479994px;}
.y3b7{bottom:135.899992px;}
.y411{bottom:137.651952px;}
.y46f{bottom:138.240000px;}
.y487{bottom:138.599997px;}
.y11a{bottom:139.859991px;}
.ye0{bottom:140.220000px;}
.y40c{bottom:140.785895px;}
.yf0{bottom:141.840001px;}
.y26f{bottom:145.800002px;}
.y59{bottom:146.340001px;}
.y11e{bottom:147.060004px;}
.y3aa{bottom:149.220000px;}
.y19e{bottom:150.479994px;}
.y37d{bottom:152.099997px;}
.y3b6{bottom:153.179998px;}
.y3d4{bottom:154.800002px;}
.y144{bottom:155.337066px;}
.y1c8{bottom:155.339991px;}
.y217{bottom:156.240000px;}
.y2f0{bottom:157.139997px;}
.y415{bottom:158.342602px;}
.y3f4{bottom:158.727587px;}
.yef{bottom:159.119997px;}
.y28a{bottom:159.477070px;}
.y46e{bottom:161.820001px;}
.y119{bottom:163.619997px;}
.ydf{bottom:163.800002px;}
.y11d{bottom:164.159996px;}
.y239{bottom:165.780001px;}
.y41a{bottom:167.159087px;}
.y3b5{bottom:170.459994px;}
.y3a9{bottom:173.159999px;}
.y19d{bottom:174.240000px;}
.y37c{bottom:174.419993px;}
.y486{bottom:174.780001px;}
.y3d3{bottom:175.499994px;}
.yee{bottom:176.399992px;}
.y58{bottom:177.659999px;}
.y143{bottom:179.097072px;}
.y1c7{bottom:179.099997px;}
.y216{bottom:179.999994px;}
.y2ef{bottom:180.720000px;}
.y252{bottom:180.899992px;}
.y409{bottom:181.800002px;}
.y289{bottom:183.057072px;}
.y3ff{bottom:183.801816px;}
.y118{bottom:187.559995px;}
.yde{bottom:187.740000px;}
.y238{bottom:189.359991px;}
.y31b{bottom:191.699998px;}
.yed{bottom:193.679987px;}
.y383{bottom:195.659999px;}
.y3d2{bottom:196.199999px;}
.y37b{bottom:196.740000px;}
.y3a8{bottom:196.919992px;}
.y19c{bottom:197.999994px;}
.y485{bottom:198.360003px;}
.y408{bottom:199.079996px;}
.y142{bottom:202.857078px;}
.y1c6{bottom:202.860003px;}
.y440{bottom:203.579996px;}
.y215{bottom:203.759989px;}
.y2ee{bottom:204.659999px;}
.y288{bottom:207.177063px;}
.y13{bottom:207.900003px;}
.y3f5{bottom:208.958819px;}
.y57{bottom:208.980006px;}
.yec{bottom:210.959994px;}
.y117{bottom:211.320002px;}
.ydd{bottom:211.499994px;}
.y382{bottom:212.940005px;}
.y237{bottom:213.119997px;}
.y31a{bottom:215.280001px;}
.y3d1{bottom:216.900003px;}
.y37a{bottom:219.059985px;}
.y2b1{bottom:220.320002px;}
.y3a7{bottom:220.679987px;}
.y46d{bottom:221.400003px;}
.y19b{bottom:221.759989px;}
.ya3{bottom:222.299989px;}
.y40d{bottom:222.353888px;}
.y141{bottom:226.617074px;}
.y335{bottom:227.159999px;}
.y214{bottom:227.699999px;}
.y413{bottom:227.880022px;}
.y34f{bottom:228.417069px;}
.y2ed{bottom:228.419992px;}
.y12{bottom:230.400003px;}
.y34a{bottom:230.937057px;}
.y287{bottom:231.117074px;}
.y498{bottom:233.820002px;}
.y484{bottom:234.539996px;}
.y116{bottom:235.079996px;}
.ydc{bottom:235.259989px;}
.y3d0{bottom:237.599985px;}
.y1c5{bottom:238.860003px;}
.y20b{bottom:239.759989px;}
.y56{bottom:240.119997px;}
.y379{bottom:241.379991px;}
.y2b0{bottom:244.079996px;}
.y3a6{bottom:244.440005px;}
.y34e{bottom:245.697075px;}
.y19a{bottom:245.699999px;}
.ya2{bottom:245.879991px;}
.y400{bottom:246.590878px;}
.y38{bottom:247.320002px;}
.y416{bottom:248.117887px;}
.y236{bottom:249.119997px;}
.y140{bottom:250.557060px;}
.y334{bottom:250.740000px;}
.y43f{bottom:250.919992px;}
.y319{bottom:251.280001px;}
.y2ec{bottom:252.179987px;}
.y286{bottom:254.877068px;}
.y8b{bottom:255.419992px;}
.y46c{bottom:257.400003px;}
.y483{bottom:257.940005px;}
.y3cf{bottom:258.299989px;}
.y115{bottom:258.839991px;}
.ydb{bottom:259.019984px;}
.y3f6{bottom:259.190233px;}
.y1c4{bottom:262.440005px;}
.y3fb{bottom:262.814624px;}
.y20a{bottom:263.519984px;}
.y213{bottom:263.699999px;}
.y2af{bottom:267.839991px;}
.y3a5{bottom:268.379991px;}
.y199{bottom:269.459994px;}
.ya1{bottom:269.639987px;}
.y37{bottom:271.079996px;}
.y3ee{bottom:271.259990px;}
.y55{bottom:271.440005px;}
.y235{bottom:272.699999px;}
.y2eb{bottom:273.419993px;}
.y13f{bottom:274.317078px;}
.y333{bottom:274.499994px;}
.y318{bottom:274.860003px;}
.y387{bottom:275.579996px;}
.y405{bottom:275.753995px;}
.y34d{bottom:277.197075px;}
.y285{bottom:278.817078px;}
.y3ce{bottom:278.999994px;}
.y8a{bottom:279.179987px;}
.y46b{bottom:280.979982px;}
.y114{bottom:282.599985px;}
.yda{bottom:282.959994px;}
.y378{bottom:286.019984px;}
.y1c3{bottom:286.379991px;}
.y209{bottom:287.280002px;}
.y2ae{bottom:291.599985px;}
.y3ed{bottom:291.959994px;}
.y3a4{bottom:292.139987px;}
.y386{bottom:292.860003px;}
.y198{bottom:293.219988px;}
.ya0{bottom:293.400003px;}
.y482{bottom:293.940005px;}
.y54{bottom:295.199999px;}
.y234{bottom:296.639987px;}
.y13e{bottom:298.077072px;}
.y332{bottom:298.440005px;}
.y317{bottom:298.619997px;}
.y3cd{bottom:299.699999px;}
.y349{bottom:302.577072px;}
.y89{bottom:302.939982px;}
.y40e{bottom:303.921881px;}
.y497{bottom:305.459994px;}
.y3bf{bottom:306.179987px;}
.y113{bottom:306.539996px;}
.yd9{bottom:306.719988px;}
.y36{bottom:307.079996px;}
.y377{bottom:308.519984px;}
.y401{bottom:309.380079px;}
.y3f7{bottom:309.421557px;}
.y1c2{bottom:310.139987px;}
.y208{bottom:311.039996px;}
.y3ec{bottom:312.659999px;}
.y284{bottom:314.637062px;}
.y11{bottom:314.999994px;}
.y2ad{bottom:315.360003px;}
.y197{bottom:316.979982px;}
.y46a{bottom:317.159999px;}
.y9f{bottom:317.339991px;}
.y481{bottom:317.699999px;}
.y233{bottom:320.400003px;}
.y13d{bottom:321.837066px;}
.y2f6{bottom:321.840021px;}
.y331{bottom:322.199999px;}
.y43e{bottom:322.379991px;}
.y316{bottom:322.559985px;}
.y3a3{bottom:324.539996px;}
.y3f0{bottom:324.719988px;}
.y348{bottom:326.157074px;}
.y53{bottom:326.519984px;}
.y88{bottom:326.699999px;}
.y3be{bottom:329.939982px;}
.y112{bottom:330.299989px;}
.yd8{bottom:330.479982px;}
.y35{bottom:330.659999px;}
.y376{bottom:330.839991px;}
.y3eb{bottom:333.360003px;}
.y1c1{bottom:333.900003px;}
.y207{bottom:334.799989px;}
.y417{bottom:337.892942px;}
.y2ac{bottom:339.299989px;}
.y469{bottom:340.559985px;}
.y196{bottom:340.919993px;}
.y9e{bottom:341.099985px;}
.y480{bottom:341.280002px;}
.y10{bottom:341.820002px;}
.y3a2{bottom:343.439982px;}
.y232{bottom:344.159999px;}
.y13c{bottom:345.777076px;}
.y330{bottom:345.959994px;}
.y43d{bottom:346.139987px;}
.y315{bottom:346.320002px;}
.y347{bottom:350.097062px;}
.y283{bottom:350.457069px;}
.y87{bottom:350.459994px;}
.y3fc{bottom:352.800021px;}
.y3cc{bottom:352.979982px;}
.y375{bottom:353.159999px;}
.y3bd{bottom:353.699999px;}
.y111{bottom:354.059985px;}
.yd7{bottom:354.240000px;}
.y34{bottom:354.419993px;}
.y438{bottom:355.499994px;}
.y167{bottom:357.117074px;}
.y1c0{bottom:357.659999px;}
.y52{bottom:357.839991px;}
.y206{bottom:358.740000px;}
.y3a1{bottom:362.339991px;}
.y468{bottom:364.499994px;}
.y195{bottom:364.679987px;}
.y9d{bottom:364.860003px;}
.ycd{bottom:365.579996px;}
.y231{bottom:367.919993px;}
.y13b{bottom:369.537071px;}
.y32f{bottom:369.719988px;}
.y314{bottom:370.079996px;}
.y3cb{bottom:373.679987px;}
.y346{bottom:373.857056px;}
.y282{bottom:374.217064px;}
.y86{bottom:374.399981px;}
.y3ea{bottom:374.759990px;}
.y2ab{bottom:375.119997px;}
.y374{bottom:375.479982px;}
.y39f{bottom:376.740020px;}
.y496{bottom:377.099985px;}
.y47f{bottom:377.280002px;}
.y3bc{bottom:377.639987px;}
.y110{bottom:377.820002px;}
.y33{bottom:378.179987px;}
.y43c{bottom:378.539996px;}
.y437{bottom:379.259990px;}
.y166{bottom:380.697075px;}
.y205{bottom:382.499994px;}
.y40f{bottom:385.489874px;}
.y14f{bottom:386.280002px;}
.y467{bottom:388.260012px;}
.y9c{bottom:388.619997px;}
.y51{bottom:389.159974px;}
.y230{bottom:391.860003px;}
.y13a{bottom:393.297043px;}
.y32e{bottom:393.479982px;}
.y1bf{bottom:393.840013px;}
.y3ca{bottom:394.379991px;}
.y2d6{bottom:395.280002px;}
.y3e9{bottom:395.459994px;}
.y43b{bottom:395.819979px;}
.y2c0{bottom:397.260012px;}
.y345{bottom:397.617049px;}
.y373{bottom:397.799989px;}
.y281{bottom:397.977081px;}
.y11c{bottom:397.980019px;}
.y85{bottom:398.159974px;}
.y26e{bottom:398.520006px;}
.y194{bottom:399.600007px;}
.y47e{bottom:400.860003px;}
.y10f{bottom:401.760012px;}
.yd6{bottom:401.940004px;}
.y32{bottom:402.119997px;}
.y436{bottom:403.020006px;}
.y39d{bottom:403.560019px;}
.y165{bottom:404.457046px;}
.y204{bottom:406.260012px;}
.y14e{bottom:409.860003px;}
.y2aa{bottom:410.940004px;}
.y1ca{bottom:411.840019px;}
.y9b{bottom:412.559985px;}
.y43a{bottom:412.919970px;}
.ycc{bottom:413.100007px;}
.y190{bottom:414.000019px;}
.y3c9{bottom:415.079973px;}
.y22f{bottom:415.619997px;}
.y3e8{bottom:416.159974px;}
.y139{bottom:417.057082px;}
.y32d{bottom:417.419970px;}
.y313{bottom:417.780002px;}
.y2d5{bottom:418.860003px;}
.y372{bottom:420.119997px;}
.y50{bottom:420.479982px;}
.y2bf{bottom:420.839969px;}
.y344{bottom:421.377045px;}
.y280{bottom:421.737077px;}
.y84{bottom:421.919970px;}
.y26d{bottom:422.100007px;}
.y452{bottom:423.360003px;}
.y466{bottom:424.440004px;}
.y1d7{bottom:424.799989px;}
.y10e{bottom:425.520006px;}
.yd5{bottom:425.699998px;}
.y31{bottom:425.879991px;}
.y435{bottom:426.780002px;}
.y3bb{bottom:427.139986px;}
.y418{bottom:427.668088px;}
.y164{bottom:428.217087px;}
.y212{bottom:430.020006px;}
.y439{bottom:430.199998px;}
.y39c{bottom:430.380018px;}
.y14d{bottom:433.619997px;}
.y2a9{bottom:434.699998px;}
.y3c8{bottom:435.780002px;}
.y9a{bottom:436.319979px;}
.ycb{bottom:436.860003px;}
.y312{bottom:439.020006px;}
.y22e{bottom:439.379991px;}
.y138{bottom:440.997070px;}
.y32c{bottom:441.180010px;}
.y203{bottom:442.260012px;}
.y371{bottom:442.440004px;}
.y2d4{bottom:442.799989px;}
.y3ba{bottom:444.419970px;}
.y2be{bottom:444.600007px;}
.y343{bottom:445.317078px;}
.y27f{bottom:445.857055px;}
.y26c{bottom:446.039995px;}
.y465{bottom:447.839969px;}
.y1d6{bottom:448.379991px;}
.y495{bottom:448.739978px;}
.y10d{bottom:449.280002px;}
.yd4{bottom:449.459994px;}
.y30{bottom:449.639986px;}
.y434{bottom:450.539995px;}
.y4f{bottom:451.799989px;}
.y163{bottom:452.157073px;}
.y211{bottom:453.780002px;}
.y3c7{bottom:456.479982px;}
.y39a{bottom:457.200018px;}
.y14c{bottom:457.379991px;}
.y3e7{bottom:457.559985px;}
.y83{bottom:457.919970px;}
.y2a8{bottom:458.459994px;}
.y99{bottom:460.079973px;}
.y47d{bottom:460.799989px;}
.y22d{bottom:463.139986px;}
.y137{bottom:464.757064px;}
.y32b{bottom:464.940004px;}
.y202{bottom:465.839969px;}
.y2d3{bottom:466.559985px;}
.y2bd{bottom:468.360003px;}
.y311{bottom:468.719988px;}
.yca{bottom:469.079973px;}
.y26b{bottom:469.799989px;}
.y27e{bottom:470.157073px;}
.y1d5{bottom:472.139986px;}
.y451{bottom:472.319979px;}
.y1be{bottom:472.499972px;}
.y2f{bottom:473.399981px;}
.y433{bottom:474.479982px;}
.y370{bottom:474.839969px;}
.y162{bottom:475.917069px;}
.y3b9{bottom:477.180010px;}
.y342{bottom:481.317078px;}
.y82{bottom:481.499972px;}
.y2a7{bottom:482.219988px;}
.y4e{bottom:483.119997px;}
.yf{bottom:483.839969px;}
.y398{bottom:483.840018px;}
.y464{bottom:484.020006px;}
.y47c{bottom:484.379991px;}
.y494{bottom:484.559985px;}
.y10c{bottom:485.280002px;}
.yc9{bottom:486.360003px;}
.y22c{bottom:486.899981px;}
.y28b{bottom:487.077063px;}
.y136{bottom:488.517060px;}
.y201{bottom:489.600007px;}
.y210{bottom:489.780002px;}
.y2d2{bottom:490.319979px;}
.y18c{bottom:490.680018px;}
.y2bc{bottom:492.299989px;}
.y14b{bottom:493.379991px;}
.y26a{bottom:493.559985px;}
.y36f{bottom:493.919970px;}
.y98{bottom:496.079973px;}
.y299{bottom:496.440004px;}
.y450{bottom:497.159974px;}
.y2e{bottom:497.339969px;}
.y3c6{bottom:497.879991px;}
.y432{bottom:498.239978px;}
.y161{bottom:499.677063px;}
.y32a{bottom:500.940004px;}
.yc8{bottom:503.639986px;}
.y310{bottom:504.539995px;}
.y341{bottom:504.897079px;}
.y81{bottom:505.259966px;}
.yd3{bottom:505.619997px;}
.y2a6{bottom:505.979982px;}
.y463{bottom:507.419970px;}
.y47b{bottom:508.139986px;}
.y10b{bottom:508.860003px;}
.y3b4{bottom:509.039995px;}
.y22b{bottom:509.759966px;}
.y36c{bottom:509.940016px;}
.ye{bottom:510.299989px;}
.y396{bottom:510.660016px;}
.y3e6{bottom:511.020006px;}
.y135{bottom:512.277054px;}
.y200{bottom:513.539995px;}
.y2d1{bottom:514.079973px;}
.y4d{bottom:514.440004px;}
.y97{bottom:519.659974px;}
.y1d4{bottom:519.839969px;}
.y1bd{bottom:520.020006px;}
.y298{bottom:520.199998px;}
.yc7{bottom:520.919970px;}
.y2d{bottom:521.100007px;}
.y431{bottom:521.999972px;}
.yd2{bottom:522.899980px;}
.y160{bottom:523.437057px;}
.y329{bottom:524.520006px;}
.y2bb{bottom:528.119997px;}
.y340{bottom:528.657073px;}
.y80{bottom:529.199998px;}
.y269{bottom:529.559985px;}
.y2a5{bottom:529.919970px;}
.y3c5{bottom:530.100007px;}
.y3e5{bottom:531.719988px;}
.y10a{bottom:532.799989px;}
.yd{bottom:535.680010px;}
.y134{bottom:536.217040px;}
.y1ff{bottom:537.299989px;}
.y394{bottom:537.480016px;}
.y2d0{bottom:537.839969px;}
.yc6{bottom:538.199998px;}
.yd1{bottom:540.180010px;}
.yeb{bottom:542.879991px;}
.y96{bottom:543.600007px;}
.y1bc{bottom:543.780002px;}
.y297{bottom:543.959994px;}
.y27d{bottom:544.137039px;}
.y47a{bottom:544.319979px;}
.y2c{bottom:544.860003px;}
.y4c{bottom:545.759966px;}
.y44f{bottom:546.119997px;}
.y15f{bottom:547.377045px;}
.y3c4{bottom:547.379991px;}
.y328{bottom:548.459994px;}
.y30f{bottom:551.879991px;}
.yc3{bottom:551.880016px;}
.y33f{bottom:552.417069px;}
.y3e4{bottom:552.419970px;}
.y7f{bottom:552.959994px;}
.y42e{bottom:553.499972px;}
.y2a4{bottom:553.680010px;}
.y22a{bottom:554.039995px;}
.y109{bottom:556.559985px;}
.yd0{bottom:557.459994px;}
.y133{bottom:559.977081px;}
.y1fe{bottom:561.059985px;}
.y2cf{bottom:561.780002px;}
.yc{bottom:561.959994px;}
.y2ba{bottom:563.940004px;}
.y392{bottom:564.300015px;}
.y3c3{bottom:564.479982px;}
.y268{bottom:565.379991px;}
.yea{bottom:566.459994px;}
.y369{bottom:566.640015px;}
.y462{bottom:566.999972px;}
.y95{bottom:567.360003px;}
.y188{bottom:567.360015px;}
.y1bb{bottom:567.539995px;}
.y296{bottom:567.719988px;}
.y2b{bottom:568.619997px;}
.y15e{bottom:571.137039px;}
.y44e{bottom:571.139986px;}
.y327{bottom:572.219988px;}
.y3e3{bottom:573.119997px;}
.ycf{bottom:574.559985px;}
.y30e{bottom:575.819979px;}
.y33e{bottom:576.357055px;}
.y7e{bottom:576.719988px;}
.y4b{bottom:577.079973px;}
.y42d{bottom:577.259966px;}
.y2a3{bottom:577.440004px;}
.y229{bottom:577.619997px;}
.y430{bottom:578.159974px;}
.y108{bottom:580.319979px;}
.y2ce{bottom:582.659974px;}
.y132{bottom:583.737077px;}
.y1fd{bottom:584.819979px;}
.yb{bottom:587.339969px;}
.y2b9{bottom:587.699998px;}
.y267{bottom:588.959994px;}
.ye9{bottom:590.219988px;}
.y461{bottom:590.759966px;}
.y390{bottom:590.940015px;}
.y94{bottom:591.119997px;}
.y1ba{bottom:591.299989px;}
.y295{bottom:591.479982px;}
.yce{bottom:591.839969px;}
.y2a{bottom:592.559985px;}
.yc1{bottom:593.280015px;}
.y3e2{bottom:593.819979px;}
.y15d{bottom:594.897079px;}
.y44d{bottom:594.899980px;}
.y42f{bottom:595.440004px;}
.y326{bottom:595.979982px;}
.y30d{bottom:599.579973px;}
.y7d{bottom:600.479982px;}
.y42c{bottom:601.020006px;}
.y2a2{bottom:601.199998px;}
.y228{bottom:601.379991px;}
.y23c{bottom:602.999972px;}
.y2cd{bottom:603.360003px;}
.y493{bottom:603.899980px;}
.y107{bottom:604.079973px;}
.y131{bottom:607.497070px;}
.y4a{bottom:608.399980px;}
.y1fc{bottom:608.759966px;}
.y2b8{bottom:611.459994px;}
.y33d{bottom:612.177063px;}
.y266{bottom:612.719988px;}
.ya{bottom:613.799989px;}
.ybf{bottom:613.980015px;}
.ye8{bottom:614.159974px;}
.y3e1{bottom:614.520006px;}
.y93{bottom:614.879991px;}
.y1b9{bottom:615.239978px;}
.y29{bottom:616.319979px;}
.y388{bottom:617.760015px;}
.y381{bottom:617.940004px;}
.y15c{bottom:618.657073px;}
.y325{bottom:619.739978px;}
.y23b{bottom:620.280002px;}
.y30c{bottom:623.339969px;}
.y366{bottom:623.520015px;}
.y14a{bottom:624.239978px;}
.y7c{bottom:624.419970px;}
.y2a1{bottom:624.959994px;}
.y227{bottom:625.319979px;}
.y460{bottom:626.940004px;}
.y1d3{bottom:627.119997px;}
.y492{bottom:627.299989px;}
.y294{bottom:627.479982px;}
.y106{bottom:627.839969px;}
.y42b{bottom:630.899980px;}
.ybd{bottom:634.680013px;}
.y3e0{bottom:635.039995px;}
.y2b7{bottom:635.219988px;}
.y33c{bottom:635.937057px;}
.y265{bottom:636.659974px;}
.ye7{bottom:637.919970px;}
.y92{bottom:638.639986px;}
.y2cc{bottom:639.179964px;}
.y49{bottom:639.719988px;}
.y130{bottom:639.897079px;}
.y28{bottom:640.079973px;}
.y15b{bottom:642.597061px;}
.y324{bottom:643.679964px;}
.y183{bottom:643.860013px;}
.y1fb{bottom:644.579973px;}
.y2f1{bottom:646.560013px;}
.y7b{bottom:647.100007px;}
.y149{bottom:647.999972px;}
.y42a{bottom:648.719988px;}
.y2a0{bottom:648.899980px;}
.y226{bottom:649.079973px;}
.y45f{bottom:650.520006px;}
.y1d2{bottom:650.879991px;}
.y491{bottom:651.059985px;}
.y293{bottom:651.239978px;}
.y105{bottom:651.780002px;}
.y380{bottom:652.499972px;}
.ybb{bottom:655.380013px;}
.y12f{bottom:657.177063px;}
.y3df{bottom:657.179964px;}
.y2b6{bottom:658.979982px;}
.y30b{bottom:659.339969px;}
.y33b{bottom:659.697052px;}
.y264{bottom:660.419970px;}
.ye6{bottom:661.679964px;}
.y91{bottom:662.579973px;}
.y44c{bottom:662.759966px;}
.y27{bottom:663.839969px;}
.y15a{bottom:666.357055px;}
.y323{bottom:667.440004px;}
.y20f{bottom:668.339969px;}
.y1fa{bottom:668.520006px;}
.y48{bottom:670.860003px;}
.y29f{bottom:671.579973px;}
.y429{bottom:672.479982px;}
.y225{bottom:672.839969px;}
.y38d{bottom:673.380013px;}
.y12e{bottom:674.277054px;}
.y1d1{bottom:674.639986px;}
.y292{bottom:674.999972px;}
.y104{bottom:675.539995px;}
.yb9{bottom:676.080013px;}
.y3de{bottom:677.879991px;}
.y363{bottom:680.220013px;}
.y148{bottom:680.399980px;}
.y1b8{bottom:682.199998px;}
.y2b5{bottom:682.919970px;}
.y33a{bottom:683.457046px;}
.y263{bottom:684.179964px;}
.ye5{bottom:685.440004px;}
.y90{bottom:686.339969px;}
.y45e{bottom:686.520006px;}
.y44b{bottom:686.699998px;}
.y490{bottom:687.059985px;}
.y4a9{bottom:689.579973px;}
.y159{bottom:690.117049px;}
.y7a{bottom:691.379991px;}
.y12d{bottom:691.557037px;}
.y20e{bottom:692.099963px;}
.y1f9{bottom:692.280002px;}
.y428{bottom:696.239978px;}
.y224{bottom:696.599963px;}
.yb5{bottom:696.780012px;}
.y2cb{bottom:697.139986px;}
.y147{bottom:697.679964px;}
.y407{bottom:698.039995px;}
.y1d0{bottom:698.399980px;}
.y3dd{bottom:698.579973px;}
.y291{bottom:698.759966px;}
.y103{bottom:699.299989px;}
.y26{bottom:699.839969px;}
.y47{bottom:702.179964px;}
.y322{bottom:703.440004px;}
.y1b7{bottom:705.780002px;}
.y2b4{bottom:706.679964px;}
.y30a{bottom:706.860003px;}
.y339{bottom:707.217040px;}
.y262{bottom:707.940004px;}
.y12c{bottom:708.837066px;}
.ye4{bottom:709.379991px;}
.y8f{bottom:710.099963px;}
.y44a{bottom:710.459994px;}
.y48f{bottom:710.819979px;}
.y4a8{bottom:713.339969px;}
.y158{bottom:713.877045px;}
.y79{bottom:714.959994px;}
.y406{bottom:715.139986px;}
.y20d{bottom:715.860003px;}
.y1f8{bottom:716.039995px;}
.y3dc{bottom:719.280002px;}
.y427{bottom:720.179964px;}
.y223{bottom:720.539995px;}
.y17b{bottom:720.540012px;}
.y1cf{bottom:722.159974px;}
.y290{bottom:722.520006px;}
.y34c{bottom:722.697052px;}
.y102{bottom:723.059985px;}
.y25{bottom:723.419970px;}
.y251{bottom:727.020006px;}
.y309{bottom:727.739978px;}
.y2b3{bottom:729.360003px;}
.y1b6{bottom:729.539995px;}
.y338{bottom:731.157073px;}
.y24a{bottom:731.699998px;}
.y9{bottom:732.239978px;}
.y67{bottom:732.959994px;}
.ye3{bottom:733.139986px;}
.y46{bottom:733.499972px;}
.y449{bottom:734.219988px;}
.y479{bottom:734.940004px;}
.y360{bottom:736.200012px;}
.y157{bottom:737.817078px;}
.y78{bottom:738.899980px;}
.y29e{bottom:739.440004px;}
.y1f7{bottom:739.619997px;}
.y34b{bottom:739.977036px;}
.y3db{bottom:739.979982px;}
.y385{bottom:740.699998px;}
.y8e{bottom:742.499972px;}
.y40a{bottom:743.580012px;}
.y261{bottom:743.940004px;}
.y222{bottom:744.299989px;}
.y2ca{bottom:744.659974px;}
.y28f{bottom:745.379991px;}
.y1ce{bottom:746.099963px;}
.y45d{bottom:746.280002px;}
.y48e{bottom:746.639986px;}
.y101{bottom:746.999972px;}
.y4a7{bottom:749.159974px;}
.y250{bottom:750.599963px;}
.y321{bottom:750.780002px;}
.y2ea{bottom:752.219988px;}
.y1b5{bottom:753.479982px;}
.y249{bottom:755.280002px;}
.y384{bottom:757.979982px;}
.y8{bottom:758.159974px;}
.y478{bottom:758.339969px;}
.y24{bottom:759.419970px;}
.yb3{bottom:759.600010px;}
.y8d{bottom:759.780002px;}
.y3da{bottom:760.679964px;}
.y156{bottom:761.577072px;}
.y308{bottom:761.940004px;}
.y77{bottom:762.659974px;}
.y1e8{bottom:762.840010px;}
.y337{bottom:763.377045px;}
.y29d{bottom:763.379991px;}
.y1f6{bottom:763.559985px;}
.y66{bottom:764.280002px;}
.y45{bottom:764.819979px;}
.ye2{bottom:765.360003px;}
.y3ef{bottom:765.539995px;}
.y2c9{bottom:766.979982px;}
.y260{bottom:767.519961px;}
.y221{bottom:768.059939px;}
.y45c{bottom:769.679964px;}
.y2b2{bottom:770.039949px;}
.y100{bottom:770.760012px;}
.y4a6{bottom:772.920015px;}
.y24f{bottom:774.359957px;}
.y320{bottom:774.539949px;}
.y2e9{bottom:775.799990px;}
.y8c{bottom:776.879946px;}
.y1b4{bottom:777.240023px;}
.y248{bottom:779.219942px;}
.y336{bottom:780.657074px;}
.y3d9{bottom:781.379946px;}
.y448{bottom:781.920015px;}
.y48d{bottom:782.459994px;}
.ye1{bottom:782.639986px;}
.y23{bottom:783.179964px;}
.y7{bottom:784.080020px;}
.y28e{bottom:785.879946px;}
.y76{bottom:786.420015px;}
.y1f5{bottom:787.319979px;}
.y220{bottom:790.740023px;}
.y25f{bottom:791.459994px;}
.y35e{bottom:793.080011px;}
.y426{bottom:793.080020px;}
.y45b{bottom:793.440004px;}
.yff{bottom:794.519961px;}
.y3f1{bottom:795.060010px;}
.y65{bottom:795.600007px;}
.y44{bottom:796.139986px;}
.y4a5{bottom:796.679964px;}
.y177{bottom:797.220010px;}
.y155{bottom:797.577027px;}
.y24e{bottom:798.299990px;}
.y31f{bottom:798.479982px;}
.y29c{bottom:799.199954px;}
.yb2{bottom:799.559939px;}
.y1b3{bottom:800.999972px;}
.y3d8{bottom:802.080020px;}
.y247{bottom:802.979982px;}
.y447{bottom:805.679964px;}
.y48c{bottom:806.400027px;}
.y307{bottom:806.580020px;}
.y22{bottom:806.940004px;}
.y75{bottom:810.179964px;}
.y3c2{bottom:810.539949px;}
.y1f4{bottom:811.080020px;}
.y2c8{bottom:814.679964px;}
.y25e{bottom:815.219942px;}
.y425{bottom:816.839968px;}
.y45a{bottom:817.199954px;}
.y477{bottom:817.920015px;}
.yfe{bottom:818.280001px;}
.y154{bottom:821.157074px;}
.y31e{bottom:822.240023px;}
.yb1{bottom:823.139986px;}
.y20c{bottom:823.319979px;}
.y2e8{bottom:823.499972px;}
.y246{bottom:826.740023px;}
.y64{bottom:826.920015px;}
.y43{bottom:827.459994px;}
.y6{bottom:827.819979px;}
.y306{bottom:828.900027px;}
.y446{bottom:829.440004px;}
.y48b{bottom:829.979982px;}
.y21{bottom:830.699954px;}
.y4a4{bottom:832.679964px;}
.y1b2{bottom:833.400027px;}
.y74{bottom:833.940004px;}
.y24d{bottom:834.119997px;}
.y1f3{bottom:834.839968px;}
.y27c{bottom:835.017060px;}
.y21f{bottom:835.019961px;}
.y2c7{bottom:836.999972px;}
.y25d{bottom:838.979982px;}
.y424{bottom:840.600007px;}
.yfd{bottom:842.219942px;}
.y2e7{bottom:844.740023px;}
.y153{bottom:844.917023px;}
.y31d{bottom:845.999972px;}
.yb0{bottom:846.900027px;}
.y245{bottom:849.600007px;}
.y1b1{bottom:850.859957px;}
.y305{bottom:851.219942px;}
.y3d7{bottom:851.400027px;}
.y445{bottom:853.199954px;}
.y459{bottom:853.379946px;}
.y5{bottom:853.740023px;}
.y476{bottom:854.100007px;}
.y20{bottom:854.459994px;}
.y4a3{bottom:856.260012px;}
.y73{bottom:857.879946px;}
.y63{bottom:858.240023px;}
.y27b{bottom:858.777099px;}
.y42{bottom:858.780001px;}
.y25c{bottom:862.740023px;}
.y35d{bottom:864.179964px;}
.y423{bottom:864.719942px;}
.yfc{bottom:865.979982px;}
.y1ae{bottom:865.980009px;}
.y48a{bottom:866.159974px;}
.y152{bottom:868.677063px;}
.y3d6{bottom:868.679964px;}
.y31c{bottom:869.760012px;}
.y24c{bottom:869.940004px;}
.yaf{bottom:870.659974px;}
.y304{bottom:873.539949px;}
.y172{bottom:873.900009px;}
.y1e5{bottom:876.240009px;}
.y458{bottom:876.959994px;}
.y444{bottom:877.139986px;}
.y475{bottom:877.499972px;}
.y1f{bottom:878.399936px;}
.y4{bottom:879.659974px;}
.y2e6{bottom:879.839968px;}
.y4a2{bottom:880.019961px;}
.y35c{bottom:881.280001px;}
.y72{bottom:881.639986px;}
.y27a{bottom:882.537048px;}
.y1f2{bottom:882.539949px;}
.y2c6{bottom:884.519961px;}
.y25b{bottom:886.679964px;}
.y62{bottom:889.559939px;}
.yfb{bottom:889.740023px;}
.y422{bottom:889.920015px;}
.y41{bottom:890.100007px;}
.y2e4{bottom:893.520009px;}
.y24b{bottom:893.699954px;}
.y244{bottom:893.879946px;}
.yae{bottom:894.600007px;}
.y35a{bottom:895.860007px;}
.y303{bottom:896.039949px;}
.y1e2{bottom:896.940007px;}
.y457{bottom:900.719942px;}
.y443{bottom:900.899936px;}
.y151{bottom:901.077027px;}
.y1e{bottom:902.159974px;}
.y4a1{bottom:903.959994px;}
.y71{bottom:904.319979px;}
.y279{bottom:906.297089px;}
.y1f1{bottom:906.299990px;}
.y2c5{bottom:906.839968px;}
.y1ab{bottom:907.380007px;}
.y25a{bottom:910.440004px;}
.y489{bottom:913.319979px;}
.y3b3{bottom:913.499972px;}
.y474{bottom:913.679964px;}
.y2e3{bottom:913.680007px;}
.y421{bottom:913.859957px;}
.y3c1{bottom:914.039949px;}
.y358{bottom:917.280008px;}
.y243{bottom:917.459994px;}
.y1df{bottom:917.640007px;}
.y150{bottom:918.357056px;}
.yad{bottom:918.359957px;}
.y302{bottom:919.619997px;}
.y61{bottom:920.879946px;}
.y40{bottom:921.420015px;}
.y442{bottom:924.659974px;}
.yfa{bottom:925.740023px;}
.y1d{bottom:925.920015px;}
.y4a0{bottom:927.719942px;}
.y278{bottom:930.057037px;}
.y1f0{bottom:930.059939px;}
.y3c0{bottom:931.319979px;}
.y2e1{bottom:933.840007px;}
.y456{bottom:936.719942px;}
.y473{bottom:937.080020px;}
.y3b2{bottom:937.440004px;}
.y356{bottom:938.700007px;}
.y420{bottom:939.059939px;}
.y1db{bottom:939.060007px;}
.y242{bottom:941.219942px;}
.yac{bottom:942.119997px;}
.y301{bottom:943.379946px;}
.y259{bottom:946.440004px;}
.y441{bottom:948.420015px;}
.y70{bottom:948.600007px;}
.y1a9{bottom:948.780008px;}
.yf9{bottom:949.319979px;}
.y23a{bottom:949.499972px;}
.y1c{bottom:949.679964px;}
.y16c{bottom:950.580007px;}
.y49f{bottom:951.479982px;}
.y60{bottom:952.199954px;}
.y3f{bottom:952.740023px;}
.y1ef{bottom:952.920015px;}
.y277{bottom:953.997071px;}
.y21e{bottom:953.999972px;}
.y2df{bottom:954.180007px;}
.y2c4{bottom:954.539949px;}
.y354{bottom:960.120008px;}
.y455{bottom:960.299990px;}
.y3b1{bottom:961.199954px;}
.y41f{bottom:963.179964px;}
.y241{bottom:964.979982px;}
.yab{bottom:965.879946px;}
.y300{bottom:967.499972px;}
.y258{bottom:970.019961px;}
.y6f{bottom:972.359957px;}
.yf8{bottom:973.080020px;}
.y488{bottom:973.260012px;}
.y1b{bottom:973.440004px;}
.y2dd{bottom:974.340006px;}
.y49e{bottom:975.240023px;}
.y2c3{bottom:976.859957px;}
.y276{bottom:977.757019px;}
.y21d{bottom:977.760012px;}
.y353{bottom:981.540006px;}
.y5f{bottom:983.519961px;}
.y3e{bottom:983.879946px;}
.y3b0{bottom:984.959994px;}
.y41e{bottom:988.199954px;}
.y240{bottom:988.920015px;}
.yaa{bottom:989.639986px;}
.y29b{bottom:989.819979px;}
.y1a7{bottom:990.180006px;}
.y257{bottom:993.780001px;}
.y2db{bottom:995.220006px;}
.y6e{bottom:996.119997px;}
.y454{bottom:996.299990px;}
.y472{bottom:996.839968px;}
.yf7{bottom:997.019961px;}
.y1ee{bottom:997.199954px;}
.y1a{bottom:997.379946px;}
.y49d{bottom:998.999972px;}
.y275{bottom:1001.517060px;}
.y21c{bottom:1001.519961px;}
.y1da{bottom:1001.880006px;}
.y350{bottom:1002.960006px;}
.y2ff{bottom:1003.139986px;}
.y3af{bottom:1008.719942px;}
.y41d{bottom:1011.959994px;}
.y23f{bottom:1012.679964px;}
.y2c2{bottom:1012.859957px;}
.ya9{bottom:1013.580020px;}
.y3b8{bottom:1013.760012px;}
.y5e{bottom:1014.839968px;}
.y3d{bottom:1015.199954px;}
.y6d{bottom:1019.879946px;}
.y453{bottom:1020.059939px;}
.yf6{bottom:1020.780001px;}
.y19{bottom:1021.139986px;}
.y274{bottom:1025.277008px;}
.y21b{bottom:1025.280001px;}
.y2fe{bottom:1026.899936px;}
.y169{bottom:1027.260006px;}
.y256{bottom:1029.780001px;}
.y1a5{bottom:1031.580005px;}
.y3ae{bottom:1032.659974px;}
.y471{bottom:1033.019961px;}
.y2da{bottom:1034.639986px;}
.y49c{bottom:1034.999971px;}
.y41c{bottom:1036.080019px;}
.y23e{bottom:1036.440004px;}
.ya8{bottom:1037.339968px;}
.y6c{bottom:1043.639986px;}
.yf5{bottom:1044.539949px;}
.y18{bottom:1044.899936px;}
.y5d{bottom:1045.979982px;}
.y3c{bottom:1046.519961px;}
.y2fd{bottom:1047.600007px;}
.y273{bottom:1049.217040px;}
.y21a{bottom:1049.219942px;}
.y255{bottom:1053.719942px;}
.y3ad{bottom:1056.420015px;}
.y2d9{bottom:1058.219942px;}
.y49b{bottom:1058.760012px;}
.y23d{bottom:1059.299989px;}
.ya7{bottom:1061.100007px;}
.y37f{bottom:1061.280001px;}
.y6b{bottom:1067.580019px;}
.yf4{bottom:1068.299989px;}
.y1cd{bottom:1068.479982px;}
.y17{bottom:1068.659974px;}
.y2f8{bottom:1070.280004px;}
.y12b{bottom:1071.897033px;}
.y219{bottom:1071.899936px;}
.y1a3{bottom:1072.980004px;}
.y5c{bottom:1077.299989px;}
.y254{bottom:1077.659974px;}
.y3b{bottom:1077.839968px;}
.y3ac{bottom:1080.179964px;}
.y2d8{bottom:1081.979982px;}
.y49a{bottom:1082.519961px;}
.ya6{bottom:1084.859956px;}
.y272{bottom:1085.037048px;}
.y168{bottom:1085.039949px;}
.yf3{bottom:1092.239931px;}
.y470{bottom:1092.420015px;}
.y16{bottom:1092.600007px;}
.y253{bottom:1100.519961px;}
.y6a{bottom:1102.319979px;}
.y2d7{bottom:1102.859956px;}
.y3{bottom:1105.739931px;}
.y3a{bottom:1106.100007px;}
.y5b{bottom:1108.619997px;}
.y271{bottom:1108.797088px;}
.ya5{bottom:1108.799989px;}
.y1a0{bottom:1115.100003px;}
.yf2{bottom:1115.999971px;}
.y12a{bottom:1116.177063px;}
.y146{bottom:1116.179964px;}
.y15{bottom:1116.359956px;}
.y499{bottom:1117.440004px;}
.y3d5{bottom:1119.239931px;}
.y270{bottom:1131.477081px;}
.ya4{bottom:1131.479982px;}
.y2{bottom:1136.159974px;}
.y129{bottom:1139.757019px;}
.yf1{bottom:1139.760012px;}
.y39{bottom:1139.940004px;}
.y14{bottom:1140.119997px;}
.y127{bottom:1193.217040px;}
.y68{bottom:1193.219942px;}
.h24{height:18.900000px;}
.h1d{height:20.159998px;}
.h1b{height:20.160000px;}
.h1e{height:20.340000px;}
.h10{height:20.699998px;}
.he{height:20.700000px;}
.h2c{height:25.919999px;}
.h2b{height:25.920000px;}
.h2d{height:26.099998px;}
.h2a{height:26.100000px;}
.h22{height:30.600000px;}
.h28{height:33.839998px;}
.h14{height:37.799998px;}
.h11{height:41.399999px;}
.h21{height:48.550781px;}
.h1a{height:49.992188px;}
.h32{height:50.312813px;}
.h35{height:51.333804px;}
.h29{height:54.719998px;}
.h26{height:55.259999px;}
.h25{height:55.979998px;}
.h33{height:57.822188px;}
.h30{height:58.573125px;}
.hf{height:62.099998px;}
.hd{height:62.327813px;}
.h2f{height:63.829688px;}
.h15{height:69.086250px;}
.h7{height:70.664063px;}
.h1c{height:71.804160px;}
.h6{height:72.562500px;}
.h8{height:75.093750px;}
.h18{height:75.779997px;}
.h16{height:75.779998px;}
.h17{height:75.959998px;}
.h5{height:76.317188px;}
.hc{height:78.048000px;}
.h23{height:86.219999px;}
.h20{height:86.399999px;}
.h1f{height:87.859688px;}
.h3{height:88.330078px;}
.h27{height:89.459997px;}
.h4{height:90.703125px;}
.h19{height:98.099998px;}
.hb{height:112.640625px;}
.ha{height:174.968438px;}
.h12{height:177.839996px;}
.h9{height:225.281250px;}
.h2e{height:361.439993px;}
.h31{height:412.919991px;}
.h34{height:454.499989px;}
.h13{height:1262.877045px;}
.h2{height:1262.879971px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:105.659997px;}
.w28{width:110.519997px;}
.w26{width:110.519998px;}
.w27{width:110.699997px;}
.w1d{width:116.459997px;}
.w22{width:120.599998px;}
.w9{width:147.959997px;}
.w24{width:149.579995px;}
.w12{width:157.679996px;}
.w18{width:157.679997px;}
.w13{width:158.759997px;}
.w15{width:159.299996px;}
.w14{width:159.299997px;}
.w10{width:168.839995px;}
.we{width:170.459995px;}
.wb{width:179.459995px;}
.w21{width:179.999996px;}
.wd{width:181.079996px;}
.w1f{width:188.099995px;}
.w20{width:201.239995px;}
.w6{width:217.979995px;}
.w8{width:243.359995px;}
.w4{width:318.059994px;}
.w5{width:318.599992px;}
.wf{width:329.219994px;}
.wc{width:329.579994px;}
.w1b{width:337.859993px;}
.w19{width:338.219992px;}
.w1a{width:338.399993px;}
.w2b{width:465.479989px;}
.w2a{width:466.199990px;}
.w1e{width:500.399989px;}
.w17{width:514.799988px;}
.w11{width:514.799990px;}
.w1c{width:520.559990px;}
.w25{width:555.839988px;}
.w23{width:557.459987px;}
.w3{width:637.019986px;}
.w29{width:683.099985px;}
.w16{width:701.459984px;}
.w7{width:892.976970px;}
.w2{width:892.979981px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:8.100003px;}
.x25{left:9.720004px;}
.x36{left:11.699997px;}
.x61{left:12.780015px;}
.x43{left:14.040006px;}
.x2b{left:15.840007px;}
.x24{left:18.360019px;}
.x65{left:22.139997px;}
.x29{left:23.579994px;}
.x2c{left:25.559979px;}
.x1d{left:26.819996px;}
.x62{left:28.619997px;}
.x2a{left:31.859997px;}
.x30{left:33.300010px;}
.x17{left:34.919998px;}
.x33{left:35.999992px;}
.x35{left:37.619997px;}
.x20{left:38.699998px;}
.x2e{left:40.319995px;}
.x3c{left:41.400000px;}
.x22{left:42.839990px;}
.x6f{left:45.179992px;}
.x2f{left:46.439981px;}
.x28{left:48.420010px;}
.x32{left:50.039996px;}
.x3d{left:51.300010px;}
.x2d{left:52.919991px;}
.x34{left:55.619991px;}
.x31{left:57.959988px;}
.x46{left:59.939991px;}
.x37{left:61.920003px;}
.x71{left:63.116806px;}
.x45{left:64.979994px;}
.x3a{left:66.780021px;}
.x3b{left:72.540009px;}
.x4a{left:75.420003px;}
.x48{left:77.939993px;}
.x49{left:82.979993px;}
.x4b{left:86.219994px;}
.x76{left:88.037009px;}
.x47{left:89.099991px;}
.x78{left:92.332435px;}
.x68{left:93.419999px;}
.x4c{left:94.859999px;}
.x5b{left:102.960000px;}
.x11{left:106.379997px;}
.x67{left:115.380000px;}
.x7{left:131.580001px;}
.x10{left:133.199993px;}
.x5c{left:136.799995px;}
.x1{left:139.139993px;}
.x4{left:140.219994px;}
.x14{left:142.379997px;}
.x4f{left:149.580001px;}
.x12{left:151.199993px;}
.x70{left:152.279996px;}
.x5e{left:155.159996px;}
.x55{left:156.419999px;}
.x3f{left:158.580001px;}
.x41{left:159.839997px;}
.x5f{left:161.099997px;}
.x58{left:164.700004px;}
.x5d{left:167.219997px;}
.x13{left:169.199993px;}
.x57{left:173.339997px;}
.x74{left:174.751290px;}
.x73{left:175.894485px;}
.x56{left:178.019991px;}
.x66{left:179.459979px;}
.x15{left:187.199993px;}
.x6a{left:188.280006px;}
.x5{left:193.319985px;}
.x5a{left:197.099996px;}
.x6{left:207.899986px;}
.x1e{left:211.319985px;}
.x75{left:212.399995px;}
.xd{left:220.139992px;}
.x52{left:225.719994px;}
.x77{left:226.979996px;}
.x63{left:228.419995px;}
.x3{left:231.479988px;}
.x51{left:234.359985px;}
.x69{left:243.719994px;}
.x64{left:246.060015px;}
.x42{left:265.499994px;}
.x72{left:286.579726px;}
.x8{left:289.259994px;}
.x53{left:292.319985px;}
.x40{left:296.459998px;}
.x2{left:318.959998px;}
.x4e{left:321.479988px;}
.xe{left:332.639992px;}
.xf{left:334.259994px;}
.x1b{left:338.040002px;}
.x1a{left:340.379997px;}
.xa{left:343.620003px;}
.x50{left:345.959998px;}
.xc{left:349.919998px;}
.x21{left:351.359992px;}
.x6b{left:354.959992px;}
.x1c{left:364.679992px;}
.x19{left:367.379997px;}
.x4d{left:378.179992px;}
.xb{left:392.759994px;}
.x9{left:397.080001px;}
.x18{left:424.799991px;}
.x38{left:435.959991px;}
.x54{left:444.599989px;}
.x1f{left:449.820007px;}
.x16{left:454.859985px;}
.x6c{left:466.379989px;}
.x23{left:500.039990px;}
.x60{left:551.879988px;}
.x6d{left:577.619986px;}
.x44{left:584.099986px;}
.x26{left:606.419987px;}
.x39{left:617.039987px;}
.x3e{left:621.179987px;}
.x59{left:626.939987px;}
.x6e{left:689.039985px;}
@media print{
.v6{vertical-align:-23.680016pt;}
.v5{vertical-align:-21.120117pt;}
.v8{vertical-align:-5.120117pt;}
.v1{vertical-align:-2.560059pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559899pt;}
.v9{vertical-align:5.119952pt;}
.v7{vertical-align:18.560219pt;}
.v3{vertical-align:21.119957pt;}
.v4{vertical-align:23.680016pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.125304pt;}
.ls3a{letter-spacing:0.125309pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.149120pt;}
.ls2d{letter-spacing:0.176640pt;}
.ls5{letter-spacing:0.188131pt;}
.ls1e{letter-spacing:0.188137pt;}
.ls3{letter-spacing:0.190617pt;}
.lsd{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.229657pt;}
.ls11{letter-spacing:0.231348pt;}
.lse{letter-spacing:0.231428pt;}
.ls2c{letter-spacing:0.231433pt;}
.lsc{letter-spacing:0.252725pt;}
.ls44{letter-spacing:0.253228pt;}
.ls2b{letter-spacing:0.328924pt;}
.ls10{letter-spacing:0.365317pt;}
.ls18{letter-spacing:0.365360pt;}
.ls3b{letter-spacing:0.637297pt;}
.ls15{letter-spacing:0.765228pt;}
.ls14{letter-spacing:1.405232pt;}
.lsf{letter-spacing:10.078867pt;}
.ls12{letter-spacing:10.078947pt;}
.ls16{letter-spacing:10.078953pt;}
.ls20{letter-spacing:12.635872pt;}
.ls35{letter-spacing:13.915719pt;}
.ls3f{letter-spacing:14.555728pt;}
.lsb{letter-spacing:15.158780pt;}
.ls38{letter-spacing:15.341855pt;}
.ls37{letter-spacing:15.342020pt;}
.ls2f{letter-spacing:15.996280pt;}
.ls2e{letter-spacing:17.115546pt;}
.ls1a{letter-spacing:17.723772pt;}
.ls19{letter-spacing:17.755470pt;}
.ls1b{letter-spacing:17.755512pt;}
.ls40{letter-spacing:17.916131pt;}
.ls26{letter-spacing:17.916137pt;}
.ls8{letter-spacing:18.749152pt;}
.ls24{letter-spacing:18.811683pt;}
.ls25{letter-spacing:18.811848pt;}
.ls9{letter-spacing:18.998328pt;}
.ls39{letter-spacing:19.195912pt;}
.ls6{letter-spacing:19.638417pt;}
.lsa{letter-spacing:20.278340pt;}
.ls3e{letter-spacing:21.755925pt;}
.ls3d{letter-spacing:22.716572pt;}
.ls27{letter-spacing:23.515076pt;}
.ls41{letter-spacing:23.675696pt;}
.ls29{letter-spacing:26.074937pt;}
.ls1c{letter-spacing:26.875442pt;}
.ls34{letter-spacing:27.068496pt;}
.ls36{letter-spacing:27.994708pt;}
.ls2a{letter-spacing:28.155333pt;}
.ls4{letter-spacing:29.237603pt;}
.ls30{letter-spacing:31.194449pt;}
.ls31{letter-spacing:31.995040pt;}
.ls13{letter-spacing:35.387841pt;}
.ls28{letter-spacing:35.674129pt;}
.ls17{letter-spacing:36.027759pt;}
.ls32{letter-spacing:42.073532pt;}
.ls1d{letter-spacing:42.874240pt;}
.ls42{letter-spacing:66.616560pt;}
.ls22{letter-spacing:72.151280pt;}
.ls21{letter-spacing:74.680560pt;}
.ls23{letter-spacing:77.238000pt;}
.ls43{letter-spacing:84.535220pt;}
.ls7{letter-spacing:94.903244pt;}
.ls1f{letter-spacing:755.140225pt;}
.ws2a{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.184000pt;}
.ws44{word-spacing:-50.118568pt;}
.ws42{word-spacing:-50.050480pt;}
.ws45{word-spacing:-49.410556pt;}
.ws71{word-spacing:-48.194759pt;}
.ws72{word-spacing:-47.365404pt;}
.ws6f{word-spacing:-42.880000pt;}
.ws79{word-spacing:-41.455360pt;}
.ws38{word-spacing:-26.784000pt;}
.ws1c{word-spacing:-26.592000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws23{word-spacing:-17.920000pt;}
.ws1d{word-spacing:-17.856000pt;}
.wsf{word-spacing:-17.728000pt;}
.ws5d{word-spacing:-16.486400pt;}
.ws25{word-spacing:-16.309760pt;}
.ws3{word-spacing:-16.000000pt;}
.ws66{word-spacing:-15.068800pt;}
.ws19{word-spacing:-14.714240pt;}
.ws10{word-spacing:-11.877760pt;}
.ws26{word-spacing:-10.282240pt;}
.ws17{word-spacing:-9.573120pt;}
.ws37{word-spacing:-3.657407pt;}
.wsa{word-spacing:-2.386048pt;}
.ws5f{word-spacing:-1.737594pt;}
.ws11{word-spacing:-1.370072pt;}
.ws60{word-spacing:-1.353556pt;}
.ws40{word-spacing:-1.173658pt;}
.ws8{word-spacing:-1.029392pt;}
.ws12{word-spacing:-0.806252pt;}
.ws62{word-spacing:-0.784411pt;}
.ws33{word-spacing:-0.418426pt;}
.wsb{word-spacing:-0.389628pt;}
.ws9{word-spacing:-0.215322pt;}
.ws27{word-spacing:-0.203367pt;}
.ws24{word-spacing:-0.078206pt;}
.ws74{word-spacing:-0.073703pt;}
.ws29{word-spacing:-0.064000pt;}
.ws3c{word-spacing:-0.042284pt;}
.ws78{word-spacing:-0.022611pt;}
.ws3d{word-spacing:-0.015462pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.106409pt;}
.ws6c{word-spacing:0.199929pt;}
.ws2d{word-spacing:0.260643pt;}
.ws2e{word-spacing:0.381233pt;}
.ws4b{word-spacing:0.441365pt;}
.ws5e{word-spacing:0.442748pt;}
.ws56{word-spacing:0.443845pt;}
.ws73{word-spacing:0.490156pt;}
.ws31{word-spacing:0.498687pt;}
.ws47{word-spacing:0.504992pt;}
.ws4c{word-spacing:0.505072pt;}
.ws77{word-spacing:0.563308pt;}
.ws4a{word-spacing:0.566220pt;}
.ws49{word-spacing:0.566386pt;}
.ws48{word-spacing:0.680810pt;}
.ws36{word-spacing:0.683031pt;}
.wsc{word-spacing:1.238351pt;}
.wse{word-spacing:1.300882pt;}
.wsd{word-spacing:1.363579pt;}
.ws1f{word-spacing:1.485749pt;}
.ws1a{word-spacing:2.107988pt;}
.ws2{word-spacing:2.537432pt;}
.ws1e{word-spacing:2.602180pt;}
.ws3f{word-spacing:4.858385pt;}
.ws6d{word-spacing:5.237748pt;}
.ws4e{word-spacing:5.685898pt;}
.ws75{word-spacing:5.685941pt;}
.ws3b{word-spacing:5.877672pt;}
.ws16{word-spacing:6.098812pt;}
.ws5a{word-spacing:6.166585pt;}
.ws5c{word-spacing:6.178428pt;}
.ws59{word-spacing:6.212583pt;}
.ws5b{word-spacing:6.212669pt;}
.ws3e{word-spacing:6.501894pt;}
.ws20{word-spacing:6.605384pt;}
.ws4{word-spacing:6.840743pt;}
.ws39{word-spacing:9.015829pt;}
.ws6e{word-spacing:9.338812pt;}
.ws51{word-spacing:9.520935pt;}
.ws70{word-spacing:9.717545pt;}
.ws1b{word-spacing:9.805168pt;}
.ws2c{word-spacing:9.828445pt;}
.ws4f{word-spacing:10.104344pt;}
.ws34{word-spacing:10.208523pt;}
.ws2b{word-spacing:10.528270pt;}
.ws63{word-spacing:13.365356pt;}
.ws35{word-spacing:15.480493pt;}
.ws41{word-spacing:16.180807pt;}
.ws28{word-spacing:17.659921pt;}
.ws61{word-spacing:17.843601pt;}
.ws2f{word-spacing:18.159369pt;}
.ws4d{word-spacing:18.423684pt;}
.ws14{word-spacing:19.756230pt;}
.ws21{word-spacing:21.324212pt;}
.ws32{word-spacing:22.679591pt;}
.ws5{word-spacing:23.017313pt;}
.ws64{word-spacing:24.494095pt;}
.ws65{word-spacing:24.998613pt;}
.ws18{word-spacing:26.914680pt;}
.ws50{word-spacing:37.622233pt;}
.ws6{word-spacing:39.012612pt;}
.ws3a{word-spacing:59.955597pt;}
.ws15{word-spacing:73.675474pt;}
.ws13{word-spacing:115.607633pt;}
.ws76{word-spacing:115.905873pt;}
.ws53{word-spacing:178.470170pt;}
.ws69{word-spacing:260.483408pt;}
.ws54{word-spacing:266.845493pt;}
.ws52{word-spacing:267.423479pt;}
.ws68{word-spacing:271.191989pt;}
.ws6b{word-spacing:282.343232pt;}
.ws6a{word-spacing:282.925264pt;}
.ws58{word-spacing:302.682726pt;}
.ws55{word-spacing:302.682811pt;}
.ws67{word-spacing:329.293392pt;}
.ws57{word-spacing:338.520039pt;}
.ws30{word-spacing:571.469489pt;}
.ws46{word-spacing:784.762132pt;}
.ws43{word-spacing:790.521616pt;}
._27{margin-left:-5.120000pt;}
._26{margin-left:-3.776000pt;}
._8{margin-left:-2.763191pt;}
._f{margin-left:-1.856000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.960000pt;}
._3{width:2.536585pt;}
._4{width:3.760628pt;}
._1b{width:4.650088pt;}
._6{width:5.568000pt;}
._16{width:7.155787pt;}
._21{width:8.091530pt;}
._19{width:9.408000pt;}
._18{width:10.424528pt;}
._e{width:12.088984pt;}
._c{width:13.347118pt;}
._10{width:15.040000pt;}
._28{width:16.253340pt;}
._b{width:17.491067pt;}
._2{width:18.810093pt;}
._5{width:20.343861pt;}
._a{width:21.436029pt;}
._7{width:22.475191pt;}
._17{width:23.488516pt;}
._d{width:25.075633pt;}
._1a{width:26.578119pt;}
._25{width:27.701499pt;}
._13{width:29.435180pt;}
._11{width:30.748990pt;}
._12{width:32.427681pt;}
._30{width:33.525518pt;}
._35{width:34.827191pt;}
._14{width:35.891308pt;}
._15{width:37.008667pt;}
._9{width:38.353042pt;}
._31{width:39.706260pt;}
._1c{width:41.017949pt;}
._32{width:42.369368pt;}
._24{width:44.014279pt;}
._23{width:45.770590pt;}
._2b{width:46.826819pt;}
._49{width:48.073598pt;}
._40{width:49.777121pt;}
._34{width:50.674267pt;}
._3d{width:51.817200pt;}
._38{width:52.755843pt;}
._2f{width:55.190741pt;}
._50{width:57.807847pt;}
._3b{width:62.329397pt;}
._2a{width:67.008000pt;}
._29{width:67.968000pt;}
._3e{width:70.891580pt;}
._3a{width:74.680560pt;}
._2e{width:76.647129pt;}
._20{width:82.312318pt;}
._1f{width:83.707841pt;}
._43{width:84.776691pt;}
._1d{width:85.941209pt;}
._33{width:86.900480pt;}
._1e{width:103.345087pt;}
._41{width:111.936000pt;}
._42{width:112.832000pt;}
._47{width:130.355085pt;}
._37{width:157.361233pt;}
._2d{width:182.592000pt;}
._2c{width:183.552000pt;}
._3c{width:200.711057pt;}
._46{width:220.588161pt;}
._44{width:266.664505pt;}
._4d{width:317.094491pt;}
._4c{width:318.257739pt;}
._4b{width:342.099584pt;}
._4a{width:366.931984pt;}
._45{width:662.154035pt;}
._39{width:754.375321pt;}
._48{width:779.397510pt;}
._3f{width:819.074285pt;}
._36{width:822.781554pt;}
._4e{width:1060.975623pt;}
._22{width:1113.959020pt;}
._4f{width:1124.970663pt;}
.fs8{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsf{font-size:49.280000pt;}
.fse{font-size:49.920000pt;}
.fs7{font-size:53.120000pt;}
.fsd{font-size:54.400000pt;}
.fsc{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fsb{font-size:74.880000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:149.120000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000025pt;}
.y171{bottom:3.199987pt;}
.y16b{bottom:3.359975pt;}
.y35f{bottom:3.359977pt;}
.y182{bottom:3.359996pt;}
.y1a2{bottom:3.679961pt;}
.y1e7{bottom:3.679969pt;}
.y1de{bottom:3.679977pt;}
.y1ad{bottom:3.679984pt;}
.yc2{bottom:3.679985pt;}
.yb8{bottom:3.679988pt;}
.y357{bottom:3.679991pt;}
.y35b{bottom:3.679993pt;}
.ybe{bottom:3.679995pt;}
.yb4{bottom:3.679996pt;}
.yba{bottom:3.680003pt;}
.yc0{bottom:3.680009pt;}
.y1b0{bottom:3.680015pt;}
.yc5{bottom:3.680016pt;}
.ybc{bottom:3.680019pt;}
.y1e1{bottom:3.680020pt;}
.y355{bottom:3.680029pt;}
.y359{bottom:3.680032pt;}
.y1e4{bottom:3.680036pt;}
.y1e6{bottom:3.839963pt;}
.y1e0{bottom:3.840013pt;}
.y1e3{bottom:3.840029pt;}
.y2e5{bottom:4.319969pt;}
.y2e0{bottom:4.319973pt;}
.y2de{bottom:4.319979pt;}
.y2dc{bottom:4.320037pt;}
.y2e2{bottom:4.479971pt;}
.y38c{bottom:4.959984pt;}
.y126{bottom:7.999992pt;}
.y395{bottom:8.159988pt;}
.y393{bottom:8.159996pt;}
.y39b{bottom:8.160001pt;}
.y39e{bottom:8.319981pt;}
.y391{bottom:8.320003pt;}
.y399{bottom:8.320008pt;}
.y3a0{bottom:8.320015pt;}
.y397{bottom:8.320016pt;}
.y1ed{bottom:13.759997pt;}
.y2f7{bottom:14.559996pt;}
.y38e{bottom:15.199997pt;}
.y404{bottom:16.119383pt;}
.y3fa{bottom:16.156212pt;}
.y412{bottom:19.915275pt;}
.y181{bottom:20.160004pt;}
.y16a{bottom:20.160024pt;}
.y170{bottom:20.160029pt;}
.y176{bottom:20.160035pt;}
.y1cb{bottom:20.799988pt;}
.y28c{bottom:21.599984pt;}
.y1dd{bottom:22.079961pt;}
.y1ac{bottom:22.079967pt;}
.y1a8{bottom:22.079985pt;}
.y1af{bottom:22.079999pt;}
.yc4{bottom:22.080000pt;}
.y1a4{bottom:22.080003pt;}
.y28d{bottom:22.080005pt;}
.y351{bottom:22.080011pt;}
.yb7{bottom:22.080012pt;}
.y1aa{bottom:22.080016pt;}
.y1cc{bottom:22.080017pt;}
.y1a1{bottom:22.080027pt;}
.y1a6{bottom:22.080035pt;}
.y41b{bottom:23.292112pt;}
.y125{bottom:23.360019pt;}
.y2f4{bottom:24.000000pt;}
.y2fb{bottom:24.000023pt;}
.y38b{bottom:24.799989pt;}
.y1ec{bottom:29.120023pt;}
.y17d{bottom:33.120005pt;}
.y185{bottom:33.280004pt;}
.y38f{bottom:33.759992pt;}
.y402{bottom:35.472125pt;}
.y3f8{bottom:35.508995pt;}
.y365{bottom:35.519981pt;}
.y364{bottom:35.680016pt;}
.y362{bottom:36.159967pt;}
.y36b{bottom:36.159993pt;}
.y36e{bottom:36.160008pt;}
.y368{bottom:36.160011pt;}
.y361{bottom:36.319960pt;}
.y36a{bottom:36.319987pt;}
.y36d{bottom:36.320001pt;}
.y367{bottom:36.320004pt;}
.y18f{bottom:36.959979pt;}
.y193{bottom:36.959984pt;}
.y16f{bottom:36.959996pt;}
.y175{bottom:36.960001pt;}
.y17a{bottom:36.960007pt;}
.y180{bottom:36.960012pt;}
.y18b{bottom:36.960016pt;}
.y124{bottom:38.720004pt;}
.y410{bottom:39.932649pt;}
.y2f5{bottom:40.000000pt;}
.y2fc{bottom:40.000023pt;}
.y352{bottom:40.479995pt;}
.yb6{bottom:40.479996pt;}
.y1dc{bottom:40.480025pt;}
.y2fa{bottom:42.719993pt;}
.y2f3{bottom:42.720011pt;}
.y1eb{bottom:44.479968pt;}
.y38a{bottom:44.639996pt;}
.y403{bottom:46.345212pt;}
.y3f9{bottom:46.382123pt;}
.y419{bottom:48.243365pt;}
.y17c{bottom:51.519989pt;}
.y184{bottom:51.519995pt;}
.y3fd{bottom:51.754229pt;}
.y3f2{bottom:51.791059pt;}
.y40b{bottom:52.638133pt;}
.y189{bottom:52.639988pt;}
.y18d{bottom:52.639992pt;}
.y16d{bottom:52.640009pt;}
.y186{bottom:52.799983pt;}
.y191{bottom:52.799991pt;}
.y173{bottom:52.800008pt;}
.y178{bottom:52.800013pt;}
.y17e{bottom:52.800019pt;}
.y16e{bottom:53.759964pt;}
.y18a{bottom:53.759984pt;}
.y18e{bottom:53.759987pt;}
.y174{bottom:53.919963pt;}
.y179{bottom:53.919968pt;}
.y17f{bottom:53.919973pt;}
.y192{bottom:53.919985pt;}
.y123{bottom:53.919996pt;}
.y187{bottom:53.920019pt;}
.y1ea{bottom:59.839993pt;}
.y414{bottom:60.948912pt;}
.y2f9{bottom:61.439964pt;}
.y2f2{bottom:61.600016pt;}
.y389{bottom:64.639996pt;}
.y122{bottom:69.279981pt;}
.y1e9{bottom:75.040027pt;}
.y128{bottom:82.717397pt;}
.y69{bottom:82.719996pt;}
.y121{bottom:84.640007pt;}
.y3f3{bottom:96.441124pt;}
.y120{bottom:99.999992pt;}
.y1d9{bottom:101.600001pt;}
.y5a{bottom:102.239996pt;}
.y2c1{bottom:102.399999pt;}
.y11b{bottom:103.199997pt;}
.y3fe{bottom:107.566811pt;}
.y29a{bottom:108.640000pt;}
.y3ab{bottom:111.519995pt;}
.y19f{bottom:112.640000pt;}
.y11f{bottom:115.359977pt;}
.y37e{bottom:115.519995pt;}
.y145{bottom:116.797393pt;}
.y1c9{bottom:116.799993pt;}
.y1d8{bottom:116.959996pt;}
.y218{bottom:117.759995pt;}
.y3b7{bottom:120.799993pt;}
.y411{bottom:122.357291pt;}
.y46f{bottom:122.880000pt;}
.y487{bottom:123.199997pt;}
.y11a{bottom:124.319992pt;}
.ye0{bottom:124.640000pt;}
.y40c{bottom:125.143017pt;}
.yf0{bottom:126.080001pt;}
.y26f{bottom:129.600001pt;}
.y59{bottom:130.080001pt;}
.y11e{bottom:130.720004pt;}
.y3aa{bottom:132.640000pt;}
.y19e{bottom:133.759995pt;}
.y37d{bottom:135.199997pt;}
.y3b6{bottom:136.159999pt;}
.y3d4{bottom:137.600001pt;}
.y144{bottom:138.077392pt;}
.y1c8{bottom:138.079992pt;}
.y217{bottom:138.880000pt;}
.y2f0{bottom:139.679997pt;}
.y415{bottom:140.748980pt;}
.y3f4{bottom:141.091188pt;}
.yef{bottom:141.439997pt;}
.y28a{bottom:141.757396pt;}
.y46e{bottom:143.840001pt;}
.y119{bottom:145.439997pt;}
.ydf{bottom:145.600001pt;}
.y11d{bottom:145.919996pt;}
.y239{bottom:147.360001pt;}
.y41a{bottom:148.585855pt;}
.y3b5{bottom:151.519995pt;}
.y3a9{bottom:153.919999pt;}
.y19d{bottom:154.880000pt;}
.y37c{bottom:155.039993pt;}
.y486{bottom:155.360001pt;}
.y3d3{bottom:155.999995pt;}
.yee{bottom:156.799993pt;}
.y58{bottom:157.919999pt;}
.y143{bottom:159.197397pt;}
.y1c7{bottom:159.199997pt;}
.y216{bottom:159.999995pt;}
.y2ef{bottom:160.640000pt;}
.y252{bottom:160.799993pt;}
.y409{bottom:161.600001pt;}
.y289{bottom:162.717397pt;}
.y3ff{bottom:163.379392pt;}
.y118{bottom:166.719996pt;}
.yde{bottom:166.880000pt;}
.y238{bottom:168.319992pt;}
.y31b{bottom:170.399999pt;}
.yed{bottom:172.159988pt;}
.y383{bottom:173.919999pt;}
.y3d2{bottom:174.399999pt;}
.y37b{bottom:174.880000pt;}
.y3a8{bottom:175.039993pt;}
.y19c{bottom:175.999995pt;}
.y485{bottom:176.320003pt;}
.y408{bottom:176.959996pt;}
.y142{bottom:180.317403pt;}
.y1c6{bottom:180.320003pt;}
.y440{bottom:180.959996pt;}
.y215{bottom:181.119991pt;}
.y2ee{bottom:181.919999pt;}
.y288{bottom:184.157389pt;}
.y13{bottom:184.800003pt;}
.y3f5{bottom:185.741172pt;}
.y57{bottom:185.760005pt;}
.yec{bottom:187.519995pt;}
.y117{bottom:187.840001pt;}
.ydd{bottom:187.999995pt;}
.y382{bottom:189.280004pt;}
.y237{bottom:189.439997pt;}
.y31a{bottom:191.360001pt;}
.y3d1{bottom:192.800003pt;}
.y37a{bottom:194.719987pt;}
.y2b1{bottom:195.840001pt;}
.y3a7{bottom:196.159988pt;}
.y46d{bottom:196.800003pt;}
.y19b{bottom:197.119991pt;}
.ya3{bottom:197.599991pt;}
.y40d{bottom:197.647900pt;}
.y141{bottom:201.437399pt;}
.y335{bottom:201.919999pt;}
.y214{bottom:202.399999pt;}
.y413{bottom:202.560020pt;}
.y34f{bottom:203.037395pt;}
.y2ed{bottom:203.039993pt;}
.y12{bottom:204.800003pt;}
.y34a{bottom:205.277384pt;}
.y287{bottom:205.437399pt;}
.y498{bottom:207.840001pt;}
.y484{bottom:208.479996pt;}
.y116{bottom:208.959996pt;}
.ydc{bottom:209.119991pt;}
.y3d0{bottom:211.199987pt;}
.y1c5{bottom:212.320003pt;}
.y20b{bottom:213.119991pt;}
.y56{bottom:213.439997pt;}
.y379{bottom:214.559992pt;}
.y2b0{bottom:216.959996pt;}
.y3a6{bottom:217.280004pt;}
.y34e{bottom:218.397400pt;}
.y19a{bottom:218.399999pt;}
.ya2{bottom:218.559992pt;}
.y400{bottom:219.191892pt;}
.y38{bottom:219.840001pt;}
.y416{bottom:220.549233pt;}
.y236{bottom:221.439997pt;}
.y140{bottom:222.717387pt;}
.y334{bottom:222.880000pt;}
.y43f{bottom:223.039993pt;}
.y319{bottom:223.360001pt;}
.y2ec{bottom:224.159988pt;}
.y286{bottom:226.557393pt;}
.y8b{bottom:227.039993pt;}
.y46c{bottom:228.800003pt;}
.y483{bottom:229.280004pt;}
.y3cf{bottom:229.599991pt;}
.y115{bottom:230.079992pt;}
.ydb{bottom:230.239985pt;}
.y3f6{bottom:230.391319pt;}
.y1c4{bottom:233.280004pt;}
.y3fb{bottom:233.612999pt;}
.y20a{bottom:234.239985pt;}
.y213{bottom:234.399999pt;}
.y2af{bottom:238.079992pt;}
.y3a5{bottom:238.559992pt;}
.y199{bottom:239.519995pt;}
.ya1{bottom:239.679988pt;}
.y37{bottom:240.959996pt;}
.y3ee{bottom:241.119991pt;}
.y55{bottom:241.280004pt;}
.y235{bottom:242.399999pt;}
.y2eb{bottom:243.039993pt;}
.y13f{bottom:243.837403pt;}
.y333{bottom:243.999995pt;}
.y318{bottom:244.320003pt;}
.y387{bottom:244.959996pt;}
.y405{bottom:245.114663pt;}
.y34d{bottom:246.397400pt;}
.y285{bottom:247.837403pt;}
.y3ce{bottom:247.999995pt;}
.y8a{bottom:248.159988pt;}
.y46b{bottom:249.759984pt;}
.y114{bottom:251.199987pt;}
.yda{bottom:251.519995pt;}
.y378{bottom:254.239985pt;}
.y1c3{bottom:254.559992pt;}
.y209{bottom:255.360001pt;}
.y2ae{bottom:259.199987pt;}
.y3ed{bottom:259.519995pt;}
.y3a4{bottom:259.679988pt;}
.y386{bottom:260.320003pt;}
.y198{bottom:260.639989pt;}
.ya0{bottom:260.800003pt;}
.y482{bottom:261.280004pt;}
.y54{bottom:262.399999pt;}
.y234{bottom:263.679988pt;}
.y13e{bottom:264.957397pt;}
.y332{bottom:265.280004pt;}
.y317{bottom:265.439997pt;}
.y3cd{bottom:266.399999pt;}
.y349{bottom:268.957397pt;}
.y89{bottom:269.279984pt;}
.y40e{bottom:270.152783pt;}
.y497{bottom:271.519995pt;}
.y3bf{bottom:272.159988pt;}
.y113{bottom:272.479996pt;}
.yd9{bottom:272.639989pt;}
.y36{bottom:272.959996pt;}
.y377{bottom:274.239985pt;}
.y401{bottom:275.004515pt;}
.y3f7{bottom:275.041384pt;}
.y1c2{bottom:275.679988pt;}
.y208{bottom:276.479996pt;}
.y3ec{bottom:277.919999pt;}
.y284{bottom:279.677388pt;}
.y11{bottom:279.999995pt;}
.y2ad{bottom:280.320003pt;}
.y197{bottom:281.759984pt;}
.y46a{bottom:281.919999pt;}
.y9f{bottom:282.079992pt;}
.y481{bottom:282.399999pt;}
.y233{bottom:284.800003pt;}
.y13d{bottom:286.077392pt;}
.y2f6{bottom:286.080019pt;}
.y331{bottom:286.399999pt;}
.y43e{bottom:286.559992pt;}
.y316{bottom:286.719987pt;}
.y3a3{bottom:288.479996pt;}
.y3f0{bottom:288.639989pt;}
.y348{bottom:289.917399pt;}
.y53{bottom:290.239985pt;}
.y88{bottom:290.399999pt;}
.y3be{bottom:293.279984pt;}
.y112{bottom:293.599991pt;}
.yd8{bottom:293.759984pt;}
.y35{bottom:293.919999pt;}
.y376{bottom:294.079992pt;}
.y3eb{bottom:296.320003pt;}
.y1c1{bottom:296.800003pt;}
.y207{bottom:297.599991pt;}
.y417{bottom:300.349281pt;}
.y2ac{bottom:301.599991pt;}
.y469{bottom:302.719987pt;}
.y196{bottom:303.039993pt;}
.y9e{bottom:303.199987pt;}
.y480{bottom:303.360001pt;}
.y10{bottom:303.840001pt;}
.y3a2{bottom:305.279984pt;}
.y232{bottom:305.919999pt;}
.y13c{bottom:307.357401pt;}
.y330{bottom:307.519995pt;}
.y43d{bottom:307.679988pt;}
.y315{bottom:307.840001pt;}
.y347{bottom:311.197388pt;}
.y283{bottom:311.517395pt;}
.y87{bottom:311.519995pt;}
.y3fc{bottom:313.600019pt;}
.y3cc{bottom:313.759984pt;}
.y375{bottom:313.919999pt;}
.y3bd{bottom:314.399999pt;}
.y111{bottom:314.719987pt;}
.yd7{bottom:314.880000pt;}
.y34{bottom:315.039993pt;}
.y438{bottom:315.999995pt;}
.y167{bottom:317.437399pt;}
.y1c0{bottom:317.919999pt;}
.y52{bottom:318.079992pt;}
.y206{bottom:318.880000pt;}
.y3a1{bottom:322.079992pt;}
.y468{bottom:323.999995pt;}
.y195{bottom:324.159988pt;}
.y9d{bottom:324.320003pt;}
.ycd{bottom:324.959996pt;}
.y231{bottom:327.039993pt;}
.y13b{bottom:328.477396pt;}
.y32f{bottom:328.639989pt;}
.y314{bottom:328.959996pt;}
.y3cb{bottom:332.159988pt;}
.y346{bottom:332.317383pt;}
.y282{bottom:332.637391pt;}
.y86{bottom:332.799983pt;}
.y3ea{bottom:333.119991pt;}
.y2ab{bottom:333.439997pt;}
.y374{bottom:333.759984pt;}
.y39f{bottom:334.880017pt;}
.y496{bottom:335.199987pt;}
.y47f{bottom:335.360001pt;}
.y3bc{bottom:335.679988pt;}
.y110{bottom:335.840001pt;}
.y33{bottom:336.159988pt;}
.y43c{bottom:336.479996pt;}
.y437{bottom:337.119991pt;}
.y166{bottom:338.397400pt;}
.y205{bottom:339.999995pt;}
.y40f{bottom:342.657665pt;}
.y14f{bottom:343.360001pt;}
.y467{bottom:345.120011pt;}
.y9c{bottom:345.439997pt;}
.y51{bottom:345.919977pt;}
.y230{bottom:348.320003pt;}
.y13a{bottom:349.597372pt;}
.y32e{bottom:349.759984pt;}
.y1bf{bottom:350.080012pt;}
.y3ca{bottom:350.559992pt;}
.y2d6{bottom:351.360001pt;}
.y3e9{bottom:351.519995pt;}
.y43b{bottom:351.839981pt;}
.y2c0{bottom:353.120011pt;}
.y345{bottom:353.437377pt;}
.y373{bottom:353.599991pt;}
.y281{bottom:353.757405pt;}
.y11c{bottom:353.760017pt;}
.y85{bottom:353.919977pt;}
.y26e{bottom:354.240005pt;}
.y194{bottom:355.200007pt;}
.y47e{bottom:356.320003pt;}
.y10f{bottom:357.120011pt;}
.yd6{bottom:357.280004pt;}
.y32{bottom:357.439997pt;}
.y436{bottom:358.240005pt;}
.y39d{bottom:358.720017pt;}
.y165{bottom:359.517375pt;}
.y204{bottom:361.120011pt;}
.y14e{bottom:364.320003pt;}
.y2aa{bottom:365.280004pt;}
.y1ca{bottom:366.080017pt;}
.y9b{bottom:366.719987pt;}
.y43a{bottom:367.039973pt;}
.ycc{bottom:367.200007pt;}
.y190{bottom:368.000017pt;}
.y3c9{bottom:368.959976pt;}
.y22f{bottom:369.439997pt;}
.y3e8{bottom:369.919977pt;}
.y139{bottom:370.717407pt;}
.y32d{bottom:371.039973pt;}
.y313{bottom:371.360001pt;}
.y2d5{bottom:372.320003pt;}
.y372{bottom:373.439997pt;}
.y50{bottom:373.759984pt;}
.y2bf{bottom:374.079972pt;}
.y344{bottom:374.557373pt;}
.y280{bottom:374.877401pt;}
.y84{bottom:375.039973pt;}
.y26d{bottom:375.200007pt;}
.y452{bottom:376.320003pt;}
.y466{bottom:377.280004pt;}
.y1d7{bottom:377.599991pt;}
.y10e{bottom:378.240005pt;}
.yd5{bottom:378.399999pt;}
.y31{bottom:378.559992pt;}
.y435{bottom:379.360001pt;}
.y3bb{bottom:379.679988pt;}
.y418{bottom:380.149412pt;}
.y164{bottom:380.637411pt;}
.y212{bottom:382.240005pt;}
.y439{bottom:382.399999pt;}
.y39c{bottom:382.560016pt;}
.y14d{bottom:385.439997pt;}
.y2a9{bottom:386.399999pt;}
.y3c8{bottom:387.360001pt;}
.y9a{bottom:387.839981pt;}
.ycb{bottom:388.320003pt;}
.y312{bottom:390.240005pt;}
.y22e{bottom:390.559992pt;}
.y138{bottom:391.997396pt;}
.y32c{bottom:392.160009pt;}
.y203{bottom:393.120011pt;}
.y371{bottom:393.280004pt;}
.y2d4{bottom:393.599991pt;}
.y3ba{bottom:395.039973pt;}
.y2be{bottom:395.200007pt;}
.y343{bottom:395.837403pt;}
.y27f{bottom:396.317383pt;}
.y26c{bottom:396.479996pt;}
.y465{bottom:398.079972pt;}
.y1d6{bottom:398.559992pt;}
.y495{bottom:398.879980pt;}
.y10d{bottom:399.360001pt;}
.yd4{bottom:399.519995pt;}
.y30{bottom:399.679988pt;}
.y434{bottom:400.479996pt;}
.y4f{bottom:401.599991pt;}
.y163{bottom:401.917399pt;}
.y211{bottom:403.360001pt;}
.y3c7{bottom:405.759984pt;}
.y39a{bottom:406.400016pt;}
.y14c{bottom:406.559992pt;}
.y3e7{bottom:406.719987pt;}
.y83{bottom:407.039973pt;}
.y2a8{bottom:407.519995pt;}
.y99{bottom:408.959976pt;}
.y47d{bottom:409.599991pt;}
.y22d{bottom:411.679988pt;}
.y137{bottom:413.117391pt;}
.y32b{bottom:413.280004pt;}
.y202{bottom:414.079972pt;}
.y2d3{bottom:414.719987pt;}
.y2bd{bottom:416.320003pt;}
.y311{bottom:416.639989pt;}
.yca{bottom:416.959976pt;}
.y26b{bottom:417.599991pt;}
.y27e{bottom:417.917399pt;}
.y1d5{bottom:419.679988pt;}
.y451{bottom:419.839981pt;}
.y1be{bottom:419.999975pt;}
.y2f{bottom:420.799983pt;}
.y433{bottom:421.759984pt;}
.y370{bottom:422.079972pt;}
.y162{bottom:423.037395pt;}
.y3b9{bottom:424.160009pt;}
.y342{bottom:427.837403pt;}
.y82{bottom:427.999975pt;}
.y2a7{bottom:428.639989pt;}
.y4e{bottom:429.439997pt;}
.yf{bottom:430.079972pt;}
.y398{bottom:430.080016pt;}
.y464{bottom:430.240005pt;}
.y47c{bottom:430.559992pt;}
.y494{bottom:430.719987pt;}
.y10c{bottom:431.360001pt;}
.yc9{bottom:432.320003pt;}
.y22c{bottom:432.799983pt;}
.y28b{bottom:432.957389pt;}
.y136{bottom:434.237387pt;}
.y201{bottom:435.200007pt;}
.y210{bottom:435.360001pt;}
.y2d2{bottom:435.839981pt;}
.y18c{bottom:436.160016pt;}
.y2bc{bottom:437.599991pt;}
.y14b{bottom:438.559992pt;}
.y26a{bottom:438.719987pt;}
.y36f{bottom:439.039973pt;}
.y98{bottom:440.959976pt;}
.y299{bottom:441.280004pt;}
.y450{bottom:441.919977pt;}
.y2e{bottom:442.079972pt;}
.y3c6{bottom:442.559992pt;}
.y432{bottom:442.879980pt;}
.y161{bottom:444.157389pt;}
.y32a{bottom:445.280004pt;}
.yc8{bottom:447.679988pt;}
.y310{bottom:448.479996pt;}
.y341{bottom:448.797404pt;}
.y81{bottom:449.119969pt;}
.yd3{bottom:449.439997pt;}
.y2a6{bottom:449.759984pt;}
.y463{bottom:451.039973pt;}
.y47b{bottom:451.679988pt;}
.y10b{bottom:452.320003pt;}
.y3b4{bottom:452.479996pt;}
.y22b{bottom:453.119969pt;}
.y36c{bottom:453.280015pt;}
.ye{bottom:453.599991pt;}
.y396{bottom:453.920015pt;}
.y3e6{bottom:454.240005pt;}
.y135{bottom:455.357381pt;}
.y200{bottom:456.479996pt;}
.y2d1{bottom:456.959976pt;}
.y4d{bottom:457.280004pt;}
.y97{bottom:461.919977pt;}
.y1d4{bottom:462.079972pt;}
.y1bd{bottom:462.240005pt;}
.y298{bottom:462.399999pt;}
.yc7{bottom:463.039973pt;}
.y2d{bottom:463.200007pt;}
.y431{bottom:463.999975pt;}
.yd2{bottom:464.799983pt;}
.y160{bottom:465.277384pt;}
.y329{bottom:466.240005pt;}
.y2bb{bottom:469.439997pt;}
.y340{bottom:469.917399pt;}
.y80{bottom:470.399999pt;}
.y269{bottom:470.719987pt;}
.y2a5{bottom:471.039973pt;}
.y3c5{bottom:471.200007pt;}
.y3e5{bottom:472.639989pt;}
.y10a{bottom:473.599991pt;}
.yd{bottom:476.160009pt;}
.y134{bottom:476.637369pt;}
.y1ff{bottom:477.599991pt;}
.y394{bottom:477.760015pt;}
.y2d0{bottom:478.079972pt;}
.yc6{bottom:478.399999pt;}
.yd1{bottom:480.160009pt;}
.yeb{bottom:482.559992pt;}
.y96{bottom:483.200007pt;}
.y1bc{bottom:483.360001pt;}
.y297{bottom:483.519995pt;}
.y27d{bottom:483.677368pt;}
.y47a{bottom:483.839981pt;}
.y2c{bottom:484.320003pt;}
.y4c{bottom:485.119969pt;}
.y44f{bottom:485.439997pt;}
.y15f{bottom:486.557373pt;}
.y3c4{bottom:486.559992pt;}
.y328{bottom:487.519995pt;}
.y30f{bottom:490.559992pt;}
.yc3{bottom:490.560015pt;}
.y33f{bottom:491.037395pt;}
.y3e4{bottom:491.039973pt;}
.y7f{bottom:491.519995pt;}
.y42e{bottom:491.999975pt;}
.y2a4{bottom:492.160009pt;}
.y22a{bottom:492.479996pt;}
.y109{bottom:494.719987pt;}
.yd0{bottom:495.519995pt;}
.y133{bottom:497.757405pt;}
.y1fe{bottom:498.719987pt;}
.y2cf{bottom:499.360001pt;}
.yc{bottom:499.519995pt;}
.y2ba{bottom:501.280004pt;}
.y392{bottom:501.600013pt;}
.y3c3{bottom:501.759984pt;}
.y268{bottom:502.559992pt;}
.yea{bottom:503.519995pt;}
.y369{bottom:503.680013pt;}
.y462{bottom:503.999975pt;}
.y95{bottom:504.320003pt;}
.y188{bottom:504.320013pt;}
.y1bb{bottom:504.479996pt;}
.y296{bottom:504.639989pt;}
.y2b{bottom:505.439997pt;}
.y15e{bottom:507.677368pt;}
.y44e{bottom:507.679988pt;}
.y327{bottom:508.639989pt;}
.y3e3{bottom:509.439997pt;}
.ycf{bottom:510.719987pt;}
.y30e{bottom:511.839981pt;}
.y33e{bottom:512.317383pt;}
.y7e{bottom:512.639989pt;}
.y4b{bottom:512.959976pt;}
.y42d{bottom:513.119969pt;}
.y2a3{bottom:513.280004pt;}
.y229{bottom:513.439997pt;}
.y430{bottom:513.919977pt;}
.y108{bottom:515.839981pt;}
.y2ce{bottom:517.919977pt;}
.y132{bottom:518.877401pt;}
.y1fd{bottom:519.839981pt;}
.yb{bottom:522.079972pt;}
.y2b9{bottom:522.399999pt;}
.y267{bottom:523.519995pt;}
.ye9{bottom:524.639989pt;}
.y461{bottom:525.119969pt;}
.y390{bottom:525.280013pt;}
.y94{bottom:525.439997pt;}
.y1ba{bottom:525.599991pt;}
.y295{bottom:525.759984pt;}
.yce{bottom:526.079972pt;}
.y2a{bottom:526.719987pt;}
.yc1{bottom:527.360013pt;}
.y3e2{bottom:527.839981pt;}
.y15d{bottom:528.797404pt;}
.y44d{bottom:528.799983pt;}
.y42f{bottom:529.280004pt;}
.y326{bottom:529.759984pt;}
.y30d{bottom:532.959976pt;}
.y7d{bottom:533.759984pt;}
.y42c{bottom:534.240005pt;}
.y2a2{bottom:534.399999pt;}
.y228{bottom:534.559992pt;}
.y23c{bottom:535.999975pt;}
.y2cd{bottom:536.320003pt;}
.y493{bottom:536.799983pt;}
.y107{bottom:536.959976pt;}
.y131{bottom:539.997396pt;}
.y4a{bottom:540.799983pt;}
.y1fc{bottom:541.119969pt;}
.y2b8{bottom:543.519995pt;}
.y33d{bottom:544.157389pt;}
.y266{bottom:544.639989pt;}
.ya{bottom:545.599991pt;}
.ybf{bottom:545.760013pt;}
.ye8{bottom:545.919977pt;}
.y3e1{bottom:546.240005pt;}
.y93{bottom:546.559992pt;}
.y1b9{bottom:546.879980pt;}
.y29{bottom:547.839981pt;}
.y388{bottom:549.120013pt;}
.y381{bottom:549.280004pt;}
.y15c{bottom:549.917399pt;}
.y325{bottom:550.879980pt;}
.y23b{bottom:551.360001pt;}
.y30c{bottom:554.079972pt;}
.y366{bottom:554.240013pt;}
.y14a{bottom:554.879980pt;}
.y7c{bottom:555.039973pt;}
.y2a1{bottom:555.519995pt;}
.y227{bottom:555.839981pt;}
.y460{bottom:557.280004pt;}
.y1d3{bottom:557.439997pt;}
.y492{bottom:557.599991pt;}
.y294{bottom:557.759984pt;}
.y106{bottom:558.079972pt;}
.y42b{bottom:560.799983pt;}
.ybd{bottom:564.160012pt;}
.y3e0{bottom:564.479996pt;}
.y2b7{bottom:564.639989pt;}
.y33c{bottom:565.277384pt;}
.y265{bottom:565.919977pt;}
.ye7{bottom:567.039973pt;}
.y92{bottom:567.679988pt;}
.y2cc{bottom:568.159968pt;}
.y49{bottom:568.639989pt;}
.y130{bottom:568.797404pt;}
.y28{bottom:568.959976pt;}
.y15b{bottom:571.197388pt;}
.y324{bottom:572.159968pt;}
.y183{bottom:572.320012pt;}
.y1fb{bottom:572.959976pt;}
.y2f1{bottom:574.720012pt;}
.y7b{bottom:575.200007pt;}
.y149{bottom:575.999975pt;}
.y42a{bottom:576.639989pt;}
.y2a0{bottom:576.799983pt;}
.y226{bottom:576.959976pt;}
.y45f{bottom:578.240005pt;}
.y1d2{bottom:578.559992pt;}
.y491{bottom:578.719987pt;}
.y293{bottom:578.879980pt;}
.y105{bottom:579.360001pt;}
.y380{bottom:579.999975pt;}
.ybb{bottom:582.560012pt;}
.y12f{bottom:584.157389pt;}
.y3df{bottom:584.159968pt;}
.y2b6{bottom:585.759984pt;}
.y30b{bottom:586.079972pt;}
.y33b{bottom:586.397380pt;}
.y264{bottom:587.039973pt;}
.ye6{bottom:588.159968pt;}
.y91{bottom:588.959976pt;}
.y44c{bottom:589.119969pt;}
.y27{bottom:590.079972pt;}
.y15a{bottom:592.317383pt;}
.y323{bottom:593.280004pt;}
.y20f{bottom:594.079972pt;}
.y1fa{bottom:594.240005pt;}
.y48{bottom:596.320003pt;}
.y29f{bottom:596.959976pt;}
.y429{bottom:597.759984pt;}
.y225{bottom:598.079972pt;}
.y38d{bottom:598.560012pt;}
.y12e{bottom:599.357381pt;}
.y1d1{bottom:599.679988pt;}
.y292{bottom:599.999975pt;}
.y104{bottom:600.479996pt;}
.yb9{bottom:600.960012pt;}
.y3de{bottom:602.559992pt;}
.y363{bottom:604.640012pt;}
.y148{bottom:604.799983pt;}
.y1b8{bottom:606.399999pt;}
.y2b5{bottom:607.039973pt;}
.y33a{bottom:607.517375pt;}
.y263{bottom:608.159968pt;}
.ye5{bottom:609.280004pt;}
.y90{bottom:610.079972pt;}
.y45e{bottom:610.240005pt;}
.y44b{bottom:610.399999pt;}
.y490{bottom:610.719987pt;}
.y4a9{bottom:612.959976pt;}
.y159{bottom:613.437377pt;}
.y7a{bottom:614.559992pt;}
.y12d{bottom:614.717367pt;}
.y20e{bottom:615.199967pt;}
.y1f9{bottom:615.360001pt;}
.y428{bottom:618.879980pt;}
.y224{bottom:619.199967pt;}
.yb5{bottom:619.360011pt;}
.y2cb{bottom:619.679988pt;}
.y147{bottom:620.159968pt;}
.y407{bottom:620.479996pt;}
.y1d0{bottom:620.799983pt;}
.y3dd{bottom:620.959976pt;}
.y291{bottom:621.119969pt;}
.y103{bottom:621.599991pt;}
.y26{bottom:622.079972pt;}
.y47{bottom:624.159968pt;}
.y322{bottom:625.280004pt;}
.y1b7{bottom:627.360001pt;}
.y2b4{bottom:628.159968pt;}
.y30a{bottom:628.320003pt;}
.y339{bottom:628.637369pt;}
.y262{bottom:629.280004pt;}
.y12c{bottom:630.077392pt;}
.ye4{bottom:630.559992pt;}
.y8f{bottom:631.199967pt;}
.y44a{bottom:631.519995pt;}
.y48f{bottom:631.839981pt;}
.y4a8{bottom:634.079972pt;}
.y158{bottom:634.557373pt;}
.y79{bottom:635.519995pt;}
.y406{bottom:635.679988pt;}
.y20d{bottom:636.320003pt;}
.y1f8{bottom:636.479996pt;}
.y3dc{bottom:639.360001pt;}
.y427{bottom:640.159968pt;}
.y223{bottom:640.479996pt;}
.y17b{bottom:640.480011pt;}
.y1cf{bottom:641.919977pt;}
.y290{bottom:642.240005pt;}
.y34c{bottom:642.397380pt;}
.y102{bottom:642.719987pt;}
.y25{bottom:643.039973pt;}
.y251{bottom:646.240005pt;}
.y309{bottom:646.879980pt;}
.y2b3{bottom:648.320003pt;}
.y1b6{bottom:648.479996pt;}
.y338{bottom:649.917399pt;}
.y24a{bottom:650.399999pt;}
.y9{bottom:650.879980pt;}
.y67{bottom:651.519995pt;}
.ye3{bottom:651.679988pt;}
.y46{bottom:651.999975pt;}
.y449{bottom:652.639989pt;}
.y479{bottom:653.280004pt;}
.y360{bottom:654.400011pt;}
.y157{bottom:655.837403pt;}
.y78{bottom:656.799983pt;}
.y29e{bottom:657.280004pt;}
.y1f7{bottom:657.439997pt;}
.y34b{bottom:657.757365pt;}
.y3db{bottom:657.759984pt;}
.y385{bottom:658.399999pt;}
.y8e{bottom:659.999975pt;}
.y40a{bottom:660.960011pt;}
.y261{bottom:661.280004pt;}
.y222{bottom:661.599991pt;}
.y2ca{bottom:661.919977pt;}
.y28f{bottom:662.559992pt;}
.y1ce{bottom:663.199967pt;}
.y45d{bottom:663.360001pt;}
.y48e{bottom:663.679988pt;}
.y101{bottom:663.999975pt;}
.y4a7{bottom:665.919977pt;}
.y250{bottom:667.199967pt;}
.y321{bottom:667.360001pt;}
.y2ea{bottom:668.639989pt;}
.y1b5{bottom:669.759984pt;}
.y249{bottom:671.360001pt;}
.y384{bottom:673.759984pt;}
.y8{bottom:673.919977pt;}
.y478{bottom:674.079972pt;}
.y24{bottom:675.039973pt;}
.yb3{bottom:675.200009pt;}
.y8d{bottom:675.360001pt;}
.y3da{bottom:676.159968pt;}
.y156{bottom:676.957397pt;}
.y308{bottom:677.280004pt;}
.y77{bottom:677.919977pt;}
.y1e8{bottom:678.080009pt;}
.y337{bottom:678.557373pt;}
.y29d{bottom:678.559992pt;}
.y1f6{bottom:678.719987pt;}
.y66{bottom:679.360001pt;}
.y45{bottom:679.839981pt;}
.ye2{bottom:680.320003pt;}
.y3ef{bottom:680.479996pt;}
.y2c9{bottom:681.759984pt;}
.y260{bottom:682.239965pt;}
.y221{bottom:682.719945pt;}
.y45c{bottom:684.159968pt;}
.y2b2{bottom:684.479955pt;}
.y100{bottom:685.120011pt;}
.y4a6{bottom:687.040013pt;}
.y24f{bottom:688.319961pt;}
.y320{bottom:688.479955pt;}
.y2e9{bottom:689.599991pt;}
.y8c{bottom:690.559952pt;}
.y1b4{bottom:690.880020pt;}
.y248{bottom:692.639948pt;}
.y336{bottom:693.917399pt;}
.y3d9{bottom:694.559952pt;}
.y448{bottom:695.040013pt;}
.y48d{bottom:695.519995pt;}
.ye1{bottom:695.679988pt;}
.y23{bottom:696.159968pt;}
.y7{bottom:696.960017pt;}
.y28e{bottom:698.559952pt;}
.y76{bottom:699.040013pt;}
.y1f5{bottom:699.839981pt;}
.y220{bottom:702.880020pt;}
.y25f{bottom:703.519995pt;}
.y35e{bottom:704.960009pt;}
.y426{bottom:704.960017pt;}
.y45b{bottom:705.280004pt;}
.yff{bottom:706.239965pt;}
.y3f1{bottom:706.720009pt;}
.y65{bottom:707.200007pt;}
.y44{bottom:707.679988pt;}
.y4a5{bottom:708.159968pt;}
.y177{bottom:708.640009pt;}
.y155{bottom:708.957357pt;}
.y24e{bottom:709.599991pt;}
.y31f{bottom:709.759984pt;}
.y29c{bottom:710.399959pt;}
.yb2{bottom:710.719945pt;}
.y1b3{bottom:711.999975pt;}
.y3d8{bottom:712.960017pt;}
.y247{bottom:713.759984pt;}
.y447{bottom:716.159968pt;}
.y48c{bottom:716.800024pt;}
.y307{bottom:716.960017pt;}
.y22{bottom:717.280004pt;}
.y75{bottom:720.159968pt;}
.y3c2{bottom:720.479955pt;}
.y1f4{bottom:720.960017pt;}
.y2c8{bottom:724.159968pt;}
.y25e{bottom:724.639948pt;}
.y425{bottom:726.079972pt;}
.y45a{bottom:726.399959pt;}
.y477{bottom:727.040013pt;}
.yfe{bottom:727.360001pt;}
.y154{bottom:729.917399pt;}
.y31e{bottom:730.880020pt;}
.yb1{bottom:731.679988pt;}
.y20c{bottom:731.839981pt;}
.y2e8{bottom:731.999975pt;}
.y246{bottom:734.880020pt;}
.y64{bottom:735.040013pt;}
.y43{bottom:735.519995pt;}
.y6{bottom:735.839981pt;}
.y306{bottom:736.800024pt;}
.y446{bottom:737.280004pt;}
.y48b{bottom:737.759984pt;}
.y21{bottom:738.399959pt;}
.y4a4{bottom:740.159968pt;}
.y1b2{bottom:740.800024pt;}
.y74{bottom:741.280004pt;}
.y24d{bottom:741.439997pt;}
.y1f3{bottom:742.079972pt;}
.y27c{bottom:742.237387pt;}
.y21f{bottom:742.239965pt;}
.y2c7{bottom:743.999975pt;}
.y25d{bottom:745.759984pt;}
.y424{bottom:747.200007pt;}
.yfd{bottom:748.639948pt;}
.y2e7{bottom:750.880020pt;}
.y153{bottom:751.037353pt;}
.y31d{bottom:751.999975pt;}
.yb0{bottom:752.800024pt;}
.y245{bottom:755.200007pt;}
.y1b1{bottom:756.319961pt;}
.y305{bottom:756.639948pt;}
.y3d7{bottom:756.800024pt;}
.y445{bottom:758.399959pt;}
.y459{bottom:758.559952pt;}
.y5{bottom:758.880020pt;}
.y476{bottom:759.200007pt;}
.y20{bottom:759.519995pt;}
.y4a3{bottom:761.120011pt;}
.y73{bottom:762.559952pt;}
.y63{bottom:762.880020pt;}
.y27b{bottom:763.357421pt;}
.y42{bottom:763.360001pt;}
.y25c{bottom:766.880020pt;}
.y35d{bottom:768.159968pt;}
.y423{bottom:768.639948pt;}
.yfc{bottom:769.759984pt;}
.y1ae{bottom:769.760008pt;}
.y48a{bottom:769.919977pt;}
.y152{bottom:772.157389pt;}
.y3d6{bottom:772.159968pt;}
.y31c{bottom:773.120011pt;}
.y24c{bottom:773.280004pt;}
.yaf{bottom:773.919977pt;}
.y304{bottom:776.479955pt;}
.y172{bottom:776.800008pt;}
.y1e5{bottom:778.880008pt;}
.y458{bottom:779.519995pt;}
.y444{bottom:779.679988pt;}
.y475{bottom:779.999975pt;}
.y1f{bottom:780.799943pt;}
.y4{bottom:781.919977pt;}
.y2e6{bottom:782.079972pt;}
.y4a2{bottom:782.239965pt;}
.y35c{bottom:783.360001pt;}
.y72{bottom:783.679988pt;}
.y27a{bottom:784.477376pt;}
.y1f2{bottom:784.479955pt;}
.y2c6{bottom:786.239965pt;}
.y25b{bottom:788.159968pt;}
.y62{bottom:790.719945pt;}
.yfb{bottom:790.880020pt;}
.y422{bottom:791.040013pt;}
.y41{bottom:791.200007pt;}
.y2e4{bottom:794.240008pt;}
.y24b{bottom:794.399959pt;}
.y244{bottom:794.559952pt;}
.yae{bottom:795.200007pt;}
.y35a{bottom:796.320007pt;}
.y303{bottom:796.479955pt;}
.y1e2{bottom:797.280007pt;}
.y457{bottom:800.639948pt;}
.y443{bottom:800.799943pt;}
.y151{bottom:800.957357pt;}
.y1e{bottom:801.919977pt;}
.y4a1{bottom:803.519995pt;}
.y71{bottom:803.839981pt;}
.y279{bottom:805.597412pt;}
.y1f1{bottom:805.599991pt;}
.y2c5{bottom:806.079972pt;}
.y1ab{bottom:806.560007pt;}
.y25a{bottom:809.280004pt;}
.y489{bottom:811.839981pt;}
.y3b3{bottom:811.999975pt;}
.y474{bottom:812.159968pt;}
.y2e3{bottom:812.160007pt;}
.y421{bottom:812.319961pt;}
.y3c1{bottom:812.479955pt;}
.y358{bottom:815.360007pt;}
.y243{bottom:815.519995pt;}
.y1df{bottom:815.680007pt;}
.y150{bottom:816.317383pt;}
.yad{bottom:816.319961pt;}
.y302{bottom:817.439997pt;}
.y61{bottom:818.559952pt;}
.y40{bottom:819.040013pt;}
.y442{bottom:821.919977pt;}
.yfa{bottom:822.880020pt;}
.y1d{bottom:823.040013pt;}
.y4a0{bottom:824.639948pt;}
.y278{bottom:826.717367pt;}
.y1f0{bottom:826.719945pt;}
.y3c0{bottom:827.839981pt;}
.y2e1{bottom:830.080007pt;}
.y456{bottom:832.639948pt;}
.y473{bottom:832.960017pt;}
.y3b2{bottom:833.280004pt;}
.y356{bottom:834.400007pt;}
.y420{bottom:834.719945pt;}
.y1db{bottom:834.720007pt;}
.y242{bottom:836.639948pt;}
.yac{bottom:837.439997pt;}
.y301{bottom:838.559952pt;}
.y259{bottom:841.280004pt;}
.y441{bottom:843.040013pt;}
.y70{bottom:843.200007pt;}
.y1a9{bottom:843.360007pt;}
.yf9{bottom:843.839981pt;}
.y23a{bottom:843.999975pt;}
.y1c{bottom:844.159968pt;}
.y16c{bottom:844.960007pt;}
.y49f{bottom:845.759984pt;}
.y60{bottom:846.399959pt;}
.y3f{bottom:846.880020pt;}
.y1ef{bottom:847.040013pt;}
.y277{bottom:847.997396pt;}
.y21e{bottom:847.999975pt;}
.y2df{bottom:848.160007pt;}
.y2c4{bottom:848.479955pt;}
.y354{bottom:853.440007pt;}
.y455{bottom:853.599991pt;}
.y3b1{bottom:854.399959pt;}
.y41f{bottom:856.159968pt;}
.y241{bottom:857.759984pt;}
.yab{bottom:858.559952pt;}
.y300{bottom:859.999975pt;}
.y258{bottom:862.239965pt;}
.y6f{bottom:864.319961pt;}
.yf8{bottom:864.960017pt;}
.y488{bottom:865.120011pt;}
.y1b{bottom:865.280004pt;}
.y2dd{bottom:866.080005pt;}
.y49e{bottom:866.880020pt;}
.y2c3{bottom:868.319961pt;}
.y276{bottom:869.117351pt;}
.y21d{bottom:869.120011pt;}
.y353{bottom:872.480005pt;}
.y5f{bottom:874.239965pt;}
.y3e{bottom:874.559952pt;}
.y3b0{bottom:875.519995pt;}
.y41e{bottom:878.399959pt;}
.y240{bottom:879.040013pt;}
.yaa{bottom:879.679988pt;}
.y29b{bottom:879.839981pt;}
.y1a7{bottom:880.160005pt;}
.y257{bottom:883.360001pt;}
.y2db{bottom:884.640005pt;}
.y6e{bottom:885.439997pt;}
.y454{bottom:885.599991pt;}
.y472{bottom:886.079972pt;}
.yf7{bottom:886.239965pt;}
.y1ee{bottom:886.399959pt;}
.y1a{bottom:886.559952pt;}
.y49d{bottom:887.999975pt;}
.y275{bottom:890.237387pt;}
.y21c{bottom:890.239965pt;}
.y1da{bottom:890.560005pt;}
.y350{bottom:891.520005pt;}
.y2ff{bottom:891.679988pt;}
.y3af{bottom:896.639948pt;}
.y41d{bottom:899.519995pt;}
.y23f{bottom:900.159968pt;}
.y2c2{bottom:900.319961pt;}
.ya9{bottom:900.960017pt;}
.y3b8{bottom:901.120011pt;}
.y5e{bottom:902.079972pt;}
.y3d{bottom:902.399959pt;}
.y6d{bottom:906.559952pt;}
.y453{bottom:906.719945pt;}
.yf6{bottom:907.360001pt;}
.y19{bottom:907.679988pt;}
.y274{bottom:911.357340pt;}
.y21b{bottom:911.360001pt;}
.y2fe{bottom:912.799943pt;}
.y169{bottom:913.120005pt;}
.y256{bottom:915.360001pt;}
.y1a5{bottom:916.960004pt;}
.y3ae{bottom:917.919977pt;}
.y471{bottom:918.239965pt;}
.y2da{bottom:919.679988pt;}
.y49c{bottom:919.999975pt;}
.y41c{bottom:920.960017pt;}
.y23e{bottom:921.280004pt;}
.ya8{bottom:922.079972pt;}
.y6c{bottom:927.679988pt;}
.yf5{bottom:928.479955pt;}
.y18{bottom:928.799943pt;}
.y5d{bottom:929.759984pt;}
.y3c{bottom:930.239965pt;}
.y2fd{bottom:931.200007pt;}
.y273{bottom:932.637369pt;}
.y21a{bottom:932.639948pt;}
.y255{bottom:936.639948pt;}
.y3ad{bottom:939.040013pt;}
.y2d9{bottom:940.639948pt;}
.y49b{bottom:941.120011pt;}
.y23d{bottom:941.599991pt;}
.ya7{bottom:943.200007pt;}
.y37f{bottom:943.360001pt;}
.y6b{bottom:948.960017pt;}
.yf4{bottom:949.599991pt;}
.y1cd{bottom:949.759984pt;}
.y17{bottom:949.919977pt;}
.y2f8{bottom:951.360004pt;}
.y12b{bottom:952.797363pt;}
.y219{bottom:952.799943pt;}
.y1a3{bottom:953.760004pt;}
.y5c{bottom:957.599991pt;}
.y254{bottom:957.919977pt;}
.y3b{bottom:958.079972pt;}
.y3ac{bottom:960.159968pt;}
.y2d8{bottom:961.759984pt;}
.y49a{bottom:962.239965pt;}
.ya6{bottom:964.319961pt;}
.y272{bottom:964.477376pt;}
.y168{bottom:964.479955pt;}
.yf3{bottom:970.879939pt;}
.y470{bottom:971.040013pt;}
.y16{bottom:971.200007pt;}
.y253{bottom:978.239965pt;}
.y6a{bottom:979.839981pt;}
.y2d7{bottom:980.319961pt;}
.y3{bottom:982.879939pt;}
.y3a{bottom:983.200007pt;}
.y5b{bottom:985.439997pt;}
.y271{bottom:985.597412pt;}
.ya5{bottom:985.599991pt;}
.y1a0{bottom:991.200003pt;}
.yf2{bottom:991.999975pt;}
.y12a{bottom:992.157389pt;}
.y146{bottom:992.159968pt;}
.y15{bottom:992.319961pt;}
.y499{bottom:993.280004pt;}
.y3d5{bottom:994.879939pt;}
.y270{bottom:1005.757405pt;}
.ya4{bottom:1005.759984pt;}
.y2{bottom:1009.919977pt;}
.y129{bottom:1013.117351pt;}
.yf1{bottom:1013.120011pt;}
.y39{bottom:1013.280004pt;}
.y14{bottom:1013.439997pt;}
.y127{bottom:1060.637369pt;}
.y68{bottom:1060.639948pt;}
.h24{height:16.800000pt;}
.h1d{height:17.919999pt;}
.h1b{height:17.920000pt;}
.h1e{height:18.080000pt;}
.h10{height:18.399999pt;}
.he{height:18.400000pt;}
.h2c{height:23.039999pt;}
.h2b{height:23.040000pt;}
.h2d{height:23.199999pt;}
.h2a{height:23.200000pt;}
.h22{height:27.200000pt;}
.h28{height:30.079999pt;}
.h14{height:33.599999pt;}
.h11{height:36.799999pt;}
.h21{height:43.156250pt;}
.h1a{height:44.437500pt;}
.h32{height:44.722500pt;}
.h35{height:45.630048pt;}
.h29{height:48.639999pt;}
.h26{height:49.119999pt;}
.h25{height:49.759999pt;}
.h33{height:51.397500pt;}
.h30{height:52.065000pt;}
.hf{height:55.199999pt;}
.hd{height:55.402500pt;}
.h2f{height:56.737500pt;}
.h15{height:61.410000pt;}
.h7{height:62.812500pt;}
.h1c{height:63.825920pt;}
.h6{height:64.500000pt;}
.h8{height:66.750000pt;}
.h18{height:67.359997pt;}
.h16{height:67.359999pt;}
.h17{height:67.519999pt;}
.h5{height:67.837500pt;}
.hc{height:69.376000pt;}
.h23{height:76.639999pt;}
.h20{height:76.799999pt;}
.h1f{height:78.097500pt;}
.h3{height:78.515625pt;}
.h27{height:79.519997pt;}
.h4{height:80.625000pt;}
.h19{height:87.199999pt;}
.hb{height:100.125000pt;}
.ha{height:155.527500pt;}
.h12{height:158.079996pt;}
.h9{height:200.250000pt;}
.h2e{height:321.279993pt;}
.h31{height:367.039992pt;}
.h34{height:403.999991pt;}
.h13{height:1122.557373pt;}
.h2{height:1122.559975pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:93.919997pt;}
.w28{width:98.239997pt;}
.w26{width:98.239999pt;}
.w27{width:98.399997pt;}
.w1d{width:103.519997pt;}
.w22{width:107.199999pt;}
.w9{width:131.519997pt;}
.w24{width:132.959996pt;}
.w12{width:140.159996pt;}
.w18{width:140.159997pt;}
.w13{width:141.119997pt;}
.w15{width:141.599996pt;}
.w14{width:141.599997pt;}
.w10{width:150.079996pt;}
.we{width:151.519996pt;}
.wb{width:159.519996pt;}
.w21{width:159.999996pt;}
.wd{width:160.959996pt;}
.w1f{width:167.199996pt;}
.w20{width:178.879996pt;}
.w6{width:193.759996pt;}
.w8{width:216.319996pt;}
.w4{width:282.719995pt;}
.w5{width:283.199993pt;}
.wf{width:292.639995pt;}
.wc{width:292.959995pt;}
.w1b{width:300.319993pt;}
.w19{width:300.639993pt;}
.w1a{width:300.799993pt;}
.w2b{width:413.759991pt;}
.w2a{width:414.399991pt;}
.w1e{width:444.799991pt;}
.w17{width:457.599989pt;}
.w11{width:457.599991pt;}
.w1c{width:462.719991pt;}
.w25{width:494.079989pt;}
.w23{width:495.519988pt;}
.w3{width:566.239988pt;}
.w29{width:607.199987pt;}
.w16{width:623.519985pt;}
.w7{width:793.757307pt;}
.w2{width:793.759983pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:7.200003pt;}
.x25{left:8.640004pt;}
.x36{left:10.399997pt;}
.x61{left:11.360013pt;}
.x43{left:12.480005pt;}
.x2b{left:14.080007pt;}
.x24{left:16.320017pt;}
.x65{left:19.679997pt;}
.x29{left:20.959995pt;}
.x2c{left:22.719981pt;}
.x1d{left:23.839996pt;}
.x62{left:25.439997pt;}
.x2a{left:28.319997pt;}
.x30{left:29.600009pt;}
.x17{left:31.039999pt;}
.x33{left:31.999993pt;}
.x35{left:33.439997pt;}
.x20{left:34.399999pt;}
.x2e{left:35.839996pt;}
.x3c{left:36.800000pt;}
.x22{left:38.079991pt;}
.x6f{left:40.159993pt;}
.x2f{left:41.279983pt;}
.x28{left:43.040009pt;}
.x32{left:44.479996pt;}
.x3d{left:45.600009pt;}
.x2d{left:47.039992pt;}
.x34{left:49.439992pt;}
.x31{left:51.519989pt;}
.x46{left:53.279992pt;}
.x37{left:55.040003pt;}
.x71{left:56.103828pt;}
.x45{left:57.759995pt;}
.x3a{left:59.360019pt;}
.x3b{left:64.480008pt;}
.x4a{left:67.040003pt;}
.x48{left:69.279993pt;}
.x49{left:73.759993pt;}
.x4b{left:76.639995pt;}
.x76{left:78.255119pt;}
.x47{left:79.199992pt;}
.x78{left:82.073276pt;}
.x68{left:83.039999pt;}
.x4c{left:84.319999pt;}
.x5b{left:91.520000pt;}
.x11{left:94.559997pt;}
.x67{left:102.560000pt;}
.x7{left:116.960001pt;}
.x10{left:118.399993pt;}
.x5c{left:121.599996pt;}
.x1{left:123.679993pt;}
.x4{left:124.639995pt;}
.x14{left:126.559997pt;}
.x4f{left:132.960001pt;}
.x12{left:134.399993pt;}
.x70{left:135.359996pt;}
.x5e{left:137.919996pt;}
.x55{left:139.039999pt;}
.x3f{left:140.960001pt;}
.x41{left:142.079997pt;}
.x5f{left:143.199997pt;}
.x58{left:146.400004pt;}
.x5d{left:148.639997pt;}
.x13{left:150.399993pt;}
.x57{left:154.079997pt;}
.x74{left:155.334480pt;}
.x73{left:156.350653pt;}
.x56{left:158.239992pt;}
.x66{left:159.519981pt;}
.x15{left:166.399993pt;}
.x6a{left:167.360005pt;}
.x5{left:171.839987pt;}
.x5a{left:175.199996pt;}
.x6{left:184.799988pt;}
.x1e{left:187.839987pt;}
.x75{left:188.799996pt;}
.xd{left:195.679993pt;}
.x52{left:200.639995pt;}
.x77{left:201.759996pt;}
.x63{left:203.039996pt;}
.x3{left:205.759989pt;}
.x51{left:208.319987pt;}
.x69{left:216.639995pt;}
.x64{left:218.720013pt;}
.x42{left:235.999995pt;}
.x72{left:254.737535pt;}
.x8{left:257.119995pt;}
.x53{left:259.839987pt;}
.x40{left:263.519999pt;}
.x2{left:283.519999pt;}
.x4e{left:285.759989pt;}
.xe{left:295.679993pt;}
.xf{left:297.119995pt;}
.x1b{left:300.480001pt;}
.x1a{left:302.559997pt;}
.xa{left:305.440003pt;}
.x50{left:307.519999pt;}
.xc{left:311.039999pt;}
.x21{left:312.319993pt;}
.x6b{left:315.519993pt;}
.x1c{left:324.159993pt;}
.x19{left:326.559997pt;}
.x4d{left:336.159993pt;}
.xb{left:349.119995pt;}
.x9{left:352.960001pt;}
.x18{left:377.599992pt;}
.x38{left:387.519992pt;}
.x54{left:395.199991pt;}
.x1f{left:399.840007pt;}
.x16{left:404.319987pt;}
.x6c{left:414.559991pt;}
.x23{left:444.479991pt;}
.x60{left:490.559989pt;}
.x6d{left:513.439988pt;}
.x44{left:519.199988pt;}
.x26{left:539.039988pt;}
.x39{left:548.479988pt;}
.x3e{left:552.159988pt;}
.x59{left:557.279988pt;}
.x6e{left:612.479987pt;}
}




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