
    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_70ef9aeb5e61298b3ce4a8a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_a27832b60baa297376cc8d77.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_8599903a71d3c44231f24567.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_af49e09bbbf0dcd9756a7c6e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_ae6214f9eaa0473af6a9af8e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_9ef2796ce1e781ea36e9a861.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_bcbcba534b819d483bed4366.woff')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_f9be848e74d892626bf5bc9a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e81d4690b4d688e35709a9ea.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bc6dc2be7f20b21462c214df.woff')format("woff");}.ffd{font-family:ffd;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3c{letter-spacing:-1.572000px;}
.ls3a{letter-spacing:-0.936000px;}
.ls30{letter-spacing:-0.912000px;}
.ls44{letter-spacing:-0.768000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.660000px;}
.ls31{letter-spacing:-0.590400px;}
.ls1f{letter-spacing:-0.541200px;}
.ls7{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.406200px;}
.ls45{letter-spacing:-0.263400px;}
.ls12{letter-spacing:-0.229800px;}
.ls18{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.193200px;}
.ls22{letter-spacing:-0.175800px;}
.lse{letter-spacing:-0.172200px;}
.lsf{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.141000px;}
.ls11{letter-spacing:-0.132600px;}
.ls28{letter-spacing:-0.115200px;}
.ls36{letter-spacing:-0.058320px;}
.ls3b{letter-spacing:-0.048960px;}
.ls37{letter-spacing:-0.041040px;}
.ls25{letter-spacing:-0.037440px;}
.ls2b{letter-spacing:-0.034560px;}
.ls35{letter-spacing:-0.032400px;}
.ls14{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.022320px;}
.ls3e{letter-spacing:0.060600px;}
.ls15{letter-spacing:0.075000px;}
.ls5{letter-spacing:0.086400px;}
.lsb{letter-spacing:0.087600px;}
.ls27{letter-spacing:0.089280px;}
.ls26{letter-spacing:0.089400px;}
.ls21{letter-spacing:0.129600px;}
.ls2{letter-spacing:0.132480px;}
.ls1{letter-spacing:0.149760px;}
.ls1e{letter-spacing:0.174240px;}
.ls38{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.218400px;}
.ls1c{letter-spacing:0.238320px;}
.ls9{letter-spacing:0.238800px;}
.ls42{letter-spacing:0.247800px;}
.lsa{letter-spacing:0.256200px;}
.ls23{letter-spacing:0.265200px;}
.ls41{letter-spacing:0.312480px;}
.ls6{letter-spacing:0.313800px;}
.ls3{letter-spacing:0.316800px;}
.ls2a{letter-spacing:0.371400px;}
.ls32{letter-spacing:0.382320px;}
.ls1a{letter-spacing:0.391800px;}
.ls33{letter-spacing:0.612720px;}
.ls2e{letter-spacing:0.869760px;}
.ls2d{letter-spacing:3.749760px;}
.ls2f{letter-spacing:3.929760px;}
.ls40{letter-spacing:4.469760px;}
.ls39{letter-spacing:5.909760px;}
.ls3f{letter-spacing:16.145280px;}
.lsd{letter-spacing:20.448000px;}
.ls2c{letter-spacing:37.025280px;}
.ls17{letter-spacing:39.161280px;}
.ls29{letter-spacing:51.240000px;}
.ls16{letter-spacing:59.321280px;}
.ls24{letter-spacing:86.717280px;}
.lsc{letter-spacing:111.168000px;}
.ls1d{letter-spacing:121.349280px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(0,52,27),0 0.015em rgb(0,52,27),0.015em 0 rgb(0,52,27),0 -0.015em  rgb(0,52,27);}
.sc4{text-shadow:-0.015em 0 rgb(0,104,56),0 0.015em rgb(0,104,56),0.015em 0 rgb(0,104,56),0 -0.015em  rgb(0,104,56);}
.sc3{text-shadow:-0.015em 0 rgb(186,104,39),0 0.015em rgb(186,104,39),0.015em 0 rgb(186,104,39),0 -0.015em  rgb(186,104,39);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(171,98,46),0 0.015em rgb(171,98,46),0.015em 0 rgb(171,98,46),0 -0.015em  rgb(171,98,46);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(0,52,27);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,104,56);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(186,104,39);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(171,98,46);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-66.240000px;}
.ws9{word-spacing:-19.038240px;}
.wsa{word-spacing:-18.866040px;}
.wse{word-spacing:-18.808440px;}
.wsc{word-spacing:-16.488000px;}
.ws1f{word-spacing:-16.272000px;}
.wsb{word-spacing:-16.128000px;}
.ws20{word-spacing:-15.341640px;}
.ws3{word-spacing:-15.284040px;}
.ws1b{word-spacing:-15.235440px;}
.ws7{word-spacing:-15.226440px;}
.ws6{word-spacing:-15.209040px;}
.ws18{word-spacing:-15.099840px;}
.ws1d{word-spacing:-15.059640px;}
.ws1{word-spacing:-15.056640px;}
.ws11{word-spacing:-15.045240px;}
.ws2b{word-spacing:-15.030840px;}
.ws13{word-spacing:-14.990400px;}
.ws2{word-spacing:-14.970240px;}
.ws10{word-spacing:-14.944320px;}
.ws21{word-spacing:-14.935680px;}
.ws1c{word-spacing:-14.932800px;}
.ws1e{word-spacing:-14.855040px;}
.wsd{word-spacing:-14.837640px;}
.ws17{word-spacing:-14.829240px;}
.ws19{word-spacing:-14.794440px;}
.wsf{word-spacing:-14.777040px;}
.ws12{word-spacing:-14.754240px;}
.ws5{word-spacing:-14.564040px;}
.ws4{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.429040px;}
.ws23{word-spacing:-14.379840px;}
.ws2a{word-spacing:-14.310240px;}
.ws14{word-spacing:-14.250240px;}
.ws22{word-spacing:-14.058240px;}
.ws29{word-spacing:-14.034240px;}
.ws24{word-spacing:-13.724160px;}
.ws1a{word-spacing:-13.505760px;}
.ws25{word-spacing:-13.473360px;}
.ws28{word-spacing:-13.464720px;}
.ws27{word-spacing:-13.447440px;}
.ws26{word-spacing:-13.333560px;}
.ws8{word-spacing:-10.902240px;}
.ws2c{word-spacing:-10.638840px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-17.998320px;}
._d{margin-left:-16.712880px;}
._c{margin-left:-14.724000px;}
._8{margin-left:-12.536160px;}
._4{margin-left:-10.246320px;}
._a{margin-left:-7.875360px;}
._e{margin-left:-6.246240px;}
._b{margin-left:-4.681440px;}
._6{margin-left:-3.638880px;}
._5{margin-left:-2.585520px;}
._0{margin-left:-1.074240px;}
._2{width:1.647360px;}
._11{width:2.951040px;}
._12{width:4.223280px;}
._10{width:5.937600px;}
._16{width:7.104000px;}
._13{width:8.280000px;}
._14{width:9.684000px;}
._19{width:11.130000px;}
._15{width:12.421440px;}
._1e{width:13.579200px;}
._f{width:16.110720px;}
._1f{width:17.340480px;}
._18{width:18.683040px;}
._17{width:19.724160px;}
._1d{width:20.952480px;}
._20{width:22.270560px;}
._1c{width:23.780160px;}
._21{width:24.793920px;}
._1a{width:26.032320px;}
._1b{width:27.040320px;}
._9{width:28.632000px;}
._22{width:29.683680px;}
._27{width:31.861440px;}
._23{width:32.987520px;}
._24{width:34.113600px;}
._3{width:44.447040px;}
._26{width:73.460160px;}
._25{width:126.750720px;}
._1{width:849.185760px;}
.fc5{color:rgb(16,138,66);}
.fcd{color:rgb(0,147,68);}
.fc0{color:rgb(0,104,56);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(89,89,89);}
.fc7{color:rgb(242,242,242);}
.fc8{color:rgb(255,255,255);}
.fcc{color:rgb(36,36,36);}
.fc2{color:rgb(12,92,53);}
.fc3{color:transparent;}
.fc4{color:rgb(171,98,46);}
.fc9{color:rgb(186,104,39);}
.fca{color:rgb(0,148,68);}
.fcb{color:rgb(0,52,27);}
.fs9{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.fs3{font-size:131.760000px;}
.fs2{font-size:149.760000px;}
.fsc{font-size:156.240000px;}
.yf{bottom:-25.380000px;}
.y0{bottom:0.000000px;}
.y324{bottom:3.240000px;}
.ye{bottom:4.140000px;}
.y1ae{bottom:4.500000px;}
.y31d{bottom:4.860000px;}
.y321{bottom:7.020000px;}
.y171{bottom:8.280000px;}
.y166{bottom:8.460000px;}
.y1e6{bottom:8.820000px;}
.y184{bottom:9.000000px;}
.y1f8{bottom:9.030000px;}
.y1f2{bottom:9.360000px;}
.y31f{bottom:9.720000px;}
.y322{bottom:9.900000px;}
.y12{bottom:10.260000px;}
.y25{bottom:10.440000px;}
.y32{bottom:10.620000px;}
.y190{bottom:11.880000px;}
.y312{bottom:13.320000px;}
.yc{bottom:14.220000px;}
.y15{bottom:15.120000px;}
.y18{bottom:15.300000px;}
.y2e1{bottom:16.200000px;}
.y70{bottom:16.380000px;}
.y3b{bottom:16.560000px;}
.y74{bottom:16.605000px;}
.y16f{bottom:17.460000px;}
.y14{bottom:17.640000px;}
.y37{bottom:18.180000px;}
.y9{bottom:19.260000px;}
.y26{bottom:20.340000px;}
.y30{bottom:20.520000px;}
.y221{bottom:20.880000px;}
.y34{bottom:21.060000px;}
.y38{bottom:23.760000px;}
.y1ad{bottom:24.660000px;}
.y170{bottom:26.640000px;}
.y168{bottom:26.820000px;}
.y180{bottom:26.865000px;}
.y1e5{bottom:28.980000px;}
.y192{bottom:29.160000px;}
.y1f7{bottom:29.190000px;}
.y2d{bottom:30.420000px;}
.y24{bottom:30.600000px;}
.y31{bottom:30.780000px;}
.y3a{bottom:31.140000px;}
.y1f5{bottom:31.320000px;}
.y36{bottom:32.760000px;}
.y18f{bottom:35.100000px;}
.y16a{bottom:35.820000px;}
.y17e{bottom:36.000000px;}
.y3{bottom:38.340000px;}
.y1ac{bottom:44.820000px;}
.y179{bottom:45.000000px;}
.y173{bottom:45.045000px;}
.y17d{bottom:45.180000px;}
.y16b{bottom:45.210000px;}
.y39{bottom:45.900000px;}
.y20{bottom:46.260000px;}
.y35{bottom:47.520000px;}
.yb{bottom:48.960000px;}
.y1c4{bottom:49.140000px;}
.y1a3{bottom:49.320000px;}
.y209{bottom:49.350000px;}
.y8{bottom:50.220000px;}
.y2e{bottom:50.760000px;}
.y320{bottom:52.380000px;}
.y1f4{bottom:53.280000px;}
.y177{bottom:54.180000px;}
.y325{bottom:55.440000px;}
.y323{bottom:56.160000px;}
.y326{bottom:56.340000px;}
.y18e{bottom:58.320000px;}
.y2{bottom:58.500000px;}
.y2e0{bottom:61.560000px;}
.y1d{bottom:61.740000px;}
.y178{bottom:63.360000px;}
.y16c{bottom:63.390000px;}
.y174{bottom:63.405000px;}
.y1ab{bottom:64.980000px;}
.y1c3{bottom:69.300000px;}
.y1a2{bottom:69.480000px;}
.y208{bottom:69.510000px;}
.y1db{bottom:69.525000px;}
.y220{bottom:73.440000px;}
.y1d2{bottom:74.010000px;}
.y1f{bottom:77.220000px;}
.y7{bottom:81.180000px;}
.y18d{bottom:81.360000px;}
.y175{bottom:81.765000px;}
.y1aa{bottom:85.170000px;}
.y31c{bottom:89.280000px;}
.y1c2{bottom:89.460000px;}
.y207{bottom:89.490000px;}
.y1a1{bottom:89.640000px;}
.y1ea{bottom:89.670000px;}
.y1da{bottom:89.685000px;}
.y1d1{bottom:94.170000px;}
.y1f0{bottom:94.185000px;}
.y18c{bottom:104.580000px;}
.y1e{bottom:108.180000px;}
.y1a9{bottom:109.650000px;}
.y1e3{bottom:109.800000px;}
.y1e9{bottom:109.830000px;}
.y1a0{bottom:109.845000px;}
.yc9{bottom:110.160000px;}
.yea{bottom:112.680000px;}
.y1c1{bottom:114.120000px;}
.y1d0{bottom:114.330000px;}
.y1ef{bottom:114.345000px;}
.y317{bottom:114.480000px;}
.yc8{bottom:115.380000px;}
.y5f{bottom:116.820000px;}
.y1a5{bottom:117.360000px;}
.y1e7{bottom:117.540000px;}
.y248{bottom:119.160000px;}
.y135{bottom:120.960000px;}
.y17a{bottom:121.896000px;}
.y1c6{bottom:122.760000px;}
.y273{bottom:124.200000px;}
.y18b{bottom:127.800000px;}
.yc7{bottom:129.060000px;}
.y1a8{bottom:129.810000px;}
.y1e2{bottom:129.960000px;}
.y1d9{bottom:130.005000px;}
.y10f{bottom:133.740000px;}
.y1c0{bottom:134.280000px;}
.y19f{bottom:134.505000px;}
.ye9{bottom:135.720000px;}
.y29c{bottom:137.700000px;}
.y1cf{bottom:138.990000px;}
.y134{bottom:141.120000px;}
.y272{bottom:144.360000px;}
.y5e{bottom:146.340000px;}
.y20a{bottom:146.700000px;}
.y2f9{bottom:147.060000px;}
.ya2{bottom:149.760000px;}
.y1a7{bottom:149.970000px;}
.y1d8{bottom:150.165000px;}
.y18a{bottom:150.885000px;}
.y1bf{bottom:154.470000px;}
.y1ee{bottom:154.485000px;}
.y1e1{bottom:154.650000px;}
.y19e{bottom:154.665000px;}
.y10e{bottom:156.960000px;}
.y1ce{bottom:159.150000px;}
.y2bf{bottom:161.280000px;}
.y29b{bottom:167.760000px;}
.ye8{bottom:167.940000px;}
.y176{bottom:168.330000px;}
.y1a6{bottom:170.130000px;}
.y1d7{bottom:170.145000px;}
.y133{bottom:171.180000px;}
.y1f9{bottom:172.080000px;}
.y5d{bottom:172.800000px;}
.y271{bottom:173.520000px;}
.y189{bottom:174.105000px;}
.y1be{bottom:174.630000px;}
.y1e0{bottom:174.810000px;}
.y19d{bottom:174.825000px;}
.y316{bottom:175.860000px;}
.y2f8{bottom:176.220000px;}
.y1cd{bottom:179.130000px;}
.y1ed{bottom:179.145000px;}
.y10d{bottom:180.000000px;}
.y2be{bottom:181.440000px;}
.yc6{bottom:185.760000px;}
.y29a{bottom:187.920000px;}
.y206{bottom:190.290000px;}
.y1d6{bottom:190.305000px;}
.ye7{bottom:190.980000px;}
.y132{bottom:191.340000px;}
.y270{bottom:193.710000px;}
.ya1{bottom:194.790000px;}
.y19c{bottom:194.805000px;}
.y1df{bottom:194.970000px;}
.y188{bottom:197.325000px;}
.y5c{bottom:199.290000px;}
.y1ec{bottom:199.305000px;}
.y2f7{bottom:205.410000px;}
.y247{bottom:206.130000px;}
.y315{bottom:208.110000px;}
.yc5{bottom:209.010000px;}
.y205{bottom:210.450000px;}
.y1d5{bottom:210.465000px;}
.y2bd{bottom:211.350000px;}
.y131{bottom:211.530000px;}
.y26f{bottom:213.690000px;}
.y1bd{bottom:214.950000px;}
.y19b{bottom:214.965000px;}
.y10c{bottom:215.850000px;}
.ya0{bottom:218.010000px;}
.y1cc{bottom:219.450000px;}
.y187{bottom:220.365000px;}
.y33{bottom:221.250000px;}
.ye6{bottom:224.130000px;}
.y2f6{bottom:225.570000px;}
.y5b{bottom:225.750000px;}
.y204{bottom:230.610000px;}
.y2bc{bottom:231.510000px;}
.y26e{bottom:233.850000px;}
.y1bc{bottom:235.110000px;}
.y19a{bottom:235.125000px;}
.y314{bottom:237.270000px;}
.y299{bottom:238.170000px;}
.y246{bottom:238.350000px;}
.y1cb{bottom:239.610000px;}
.y130{bottom:241.410000px;}
.yc4{bottom:241.950000px;}
.y23b{bottom:242.310000px;}
.y186{bottom:243.585000px;}
.y9f{bottom:250.230000px;}
.y203{bottom:250.770000px;}
.y172{bottom:251.310000px;}
.y2bb{bottom:251.670000px;}
.y10b{bottom:252.570000px;}
.y5a{bottom:253.110000px;}
.y26d{bottom:254.010000px;}
.y1bb{bottom:255.090000px;}
.y1de{bottom:255.270000px;}
.y199{bottom:255.285000px;}
.y2f5{bottom:255.630000px;}
.ye5{bottom:257.250000px;}
.y1ca{bottom:259.770000px;}
.y2dd{bottom:260.310000px;}
.y313{bottom:261.930000px;}
.y202{bottom:270.795000px;}
.y245{bottom:272.190000px;}
.y12f{bottom:273.630000px;}
.y2f{bottom:274.170000px;}
.y23a{bottom:274.530000px;}
.yc3{bottom:275.070000px;}
.y1ba{bottom:275.250000px;}
.y198{bottom:275.445000px;}
.y10a{bottom:275.790000px;}
.y1c9{bottom:279.930000px;}
.y2ba{bottom:281.730000px;}
.y9e{bottom:282.270000px;}
.y2f4{bottom:285.510000px;}
.y59{bottom:286.950000px;}
.y2dc{bottom:289.470000px;}
.ye4{bottom:290.190000px;}
.y201{bottom:290.955000px;}
.y26c{bottom:294.330000px;}
.y1b9{bottom:295.410000px;}
.y197{bottom:295.605000px;}
.y12e{bottom:296.850000px;}
.y109{bottom:298.830000px;}
.y1c8{bottom:300.090000px;}
.y311{bottom:300.810000px;}
.y2b9{bottom:301.890000px;}
.y239{bottom:303.690000px;}
.y9d{bottom:305.490000px;}
.yc2{bottom:308.010000px;}
.y1a4{bottom:308.370000px;}
.y244{bottom:308.910000px;}
.y58{bottom:313.410000px;}
.y26b{bottom:314.490000px;}
.y1b8{bottom:315.570000px;}
.y200{bottom:315.615000px;}
.y196{bottom:315.765000px;}
.y2db{bottom:318.630000px;}
.y298{bottom:319.350000px;}
.y12d{bottom:319.890000px;}
.y1c7{bottom:320.295000px;}
.y2b8{bottom:322.050000px;}
.ye3{bottom:323.310000px;}
.y2c{bottom:327.270000px;}
.y108{bottom:331.050000px;}
.y238{bottom:332.850000px;}
.y1ff{bottom:335.775000px;}
.y195{bottom:335.955000px;}
.y9c{bottom:337.710000px;}
.y193{bottom:338.250000px;}
.y57{bottom:339.870000px;}
.y1b7{bottom:340.230000px;}
.y1e8{bottom:340.275000px;}
.yc1{bottom:341.130000px;}
.y12c{bottom:343.110000px;}
.y26a{bottom:343.650000px;}
.y2f3{bottom:344.730000px;}
.y2da{bottom:347.790000px;}
.y2b7{bottom:351.930000px;}
.y16e{bottom:352.695000px;}
.ye2{bottom:354.090000px;}
.y194{bottom:356.115000px;}
.y1b6{bottom:360.390000px;}
.y1fe{bottom:360.435000px;}
.y9b{bottom:360.750000px;}
.y297{bottom:361.650000px;}
.y237{bottom:362.010000px;}
.y269{bottom:363.810000px;}
.yc0{bottom:364.350000px;}
.y2f2{bottom:364.890000px;}
.y56{bottom:366.330000px;}
.y7f{bottom:367.410000px;}
.y310{bottom:370.290000px;}
.y2b6{bottom:372.090000px;}
.y243{bottom:373.170000px;}
.y2d9{bottom:376.770000px;}
.ye1{bottom:378.930000px;}
.y12b{bottom:380.190000px;}
.y1b5{bottom:380.595000px;}
.y268{bottom:383.970000px;}
.y2f1{bottom:385.050000px;}
.y107{bottom:387.210000px;}
.y296{bottom:390.810000px;}
.y236{bottom:390.990000px;}
.y2b5{bottom:392.250000px;}
.y55{bottom:392.790000px;}
.y9a{bottom:392.970000px;}
.ybf{bottom:397.290000px;}
.y16d{bottom:398.955000px;}
.y30f{bottom:399.450000px;}
.y2b{bottom:400.530000px;}
.y1b4{bottom:400.755000px;}
.y1fd{bottom:405.255000px;}
.y242{bottom:405.390000px;}
.y2d8{bottom:405.930000px;}
.y106{bottom:410.430000px;}
.y295{bottom:410.970000px;}
.y2b4{bottom:412.410000px;}
.y267{bottom:412.950000px;}
.y99{bottom:416.190000px;}
.y54{bottom:419.250000px;}
.y12a{bottom:419.790000px;}
.y235{bottom:420.150000px;}
.y1b3{bottom:420.915000px;}
.y2f0{bottom:422.130000px;}
.y1fc{bottom:425.415000px;}
.y169{bottom:427.035000px;}
.y30e{bottom:428.610000px;}
.ybe{bottom:430.410000px;}
.y294{bottom:431.175000px;}
.yf9{bottom:432.255000px;}
.y2b3{bottom:432.615000px;}
.y266{bottom:433.155000px;}
.y7e{bottom:434.775000px;}
.y2d7{bottom:435.135000px;}
.y241{bottom:437.655000px;}
.y1b2{bottom:440.895000px;}
.y2a{bottom:442.155000px;}
.y105{bottom:443.415000px;}
.y53{bottom:445.755000px;}
.y98{bottom:448.275000px;}
.y234{bottom:449.355000px;}
.y1fb{bottom:450.075000px;}
.y293{bottom:451.335000px;}
.y129{bottom:452.055000px;}
.y2b2{bottom:452.775000px;}
.y265{bottom:453.315000px;}
.y30d{bottom:454.035000px;}
.y2ef{bottom:458.715000px;}
.y6{bottom:459.255000px;}
.y1b1{bottom:461.055000px;}
.ybd{bottom:462.495000px;}
.y1c5{bottom:463.935000px;}
.y2d6{bottom:464.295000px;}
.yf8{bottom:469.515000px;}
.y240{bottom:469.695000px;}
.y1fa{bottom:470.235000px;}
.y292{bottom:471.315000px;}
.y97{bottom:471.495000px;}
.y52{bottom:472.215000px;}
.y2b1{bottom:472.935000px;}
.y264{bottom:473.475000px;}
.y15d{bottom:473.655000px;}
.y128{bottom:475.095000px;}
.y7d{bottom:476.535000px;}
.y233{bottom:478.515000px;}
.y1e4{bottom:478.875000px;}
.y30c{bottom:483.915000px;}
.y2ee{bottom:484.095000px;}
.ybc{bottom:485.715000px;}
.y291{bottom:491.475000px;}
.y29{bottom:491.835000px;}
.y2d5{bottom:493.455000px;}
.y263{bottom:493.635000px;}
.y15c{bottom:493.815000px;}
.y127{bottom:498.315000px;}
.y51{bottom:498.675000px;}
.y96{bottom:503.715000px;}
.yf7{bottom:505.875000px;}
.y232{bottom:507.675000px;}
.ybb{bottom:508.935000px;}
.y104{bottom:509.475000px;}
.y2b0{bottom:510.015000px;}
.y167{bottom:510.045000px;}
.y23f{bottom:512.175000px;}
.y262{bottom:513.795000px;}
.y15b{bottom:513.975000px;}
.ye0{bottom:517.935000px;}
.y7c{bottom:518.475000px;}
.y290{bottom:520.635000px;}
.y126{bottom:521.535000px;}
.y2d4{bottom:522.615000px;}
.y50{bottom:525.135000px;}
.y28{bottom:525.495000px;}
.yf6{bottom:526.035000px;}
.y231{bottom:527.835000px;}
.y1dd{bottom:528.735000px;}
.y182{bottom:529.665000px;}
.y103{bottom:532.695000px;}
.y261{bottom:533.955000px;}
.y15a{bottom:534.135000px;}
.y95{bottom:536.655000px;}
.y28f{bottom:540.795000px;}
.yba{bottom:541.155000px;}
.y27{bottom:541.875000px;}
.y2d3{bottom:542.775000px;}
.y2ed{bottom:543.855000px;}
.y125{bottom:544.575000px;}
.yf5{bottom:546.195000px;}
.y181{bottom:546.225000px;}
.ydf{bottom:550.875000px;}
.y4f{bottom:552.495000px;}
.y260{bottom:554.115000px;}
.y159{bottom:554.295000px;}
.y165{bottom:556.485000px;}
.y230{bottom:557.895000px;}
.y94{bottom:559.875000px;}
.y7b{bottom:560.415000px;}
.y28e{bottom:560.955000px;}
.y2d2{bottom:562.935000px;}
.yb9{bottom:564.195000px;}
.y102{bottom:565.815000px;}
.yf4{bottom:566.355000px;}
.y2ec{bottom:573.735000px;}
.y25f{bottom:574.275000px;}
.y158{bottom:574.455000px;}
.y23{bottom:574.815000px;}
.y23e{bottom:575.895000px;}
.y124{bottom:576.795000px;}
.y22f{bottom:578.055000px;}
.y28d{bottom:581.115000px;}
.ya{bottom:581.475000px;}
.yde{bottom:583.995000px;}
.yf3{bottom:586.515000px;}
.y4e{bottom:587.055000px;}
.yb8{bottom:587.415000px;}
.y93{bottom:592.995000px;}
.y215{bottom:593.895000px;}
.y25e{bottom:594.435000px;}
.y2af{bottom:596.415000px;}
.y22e{bottom:598.215000px;}
.y101{bottom:598.755000px;}
.y164{bottom:599.685000px;}
.y123{bottom:600.015000px;}
.y28c{bottom:601.275000px;}
.y7a{bottom:602.355000px;}
.y2d1{bottom:602.715000px;}
.y2eb{bottom:603.615000px;}
.y157{bottom:604.335000px;}
.yf2{bottom:606.675000px;}
.y17f{bottom:610.845000px;}
.y92{bottom:616.035000px;}
.ydd{bottom:617.115000px;}
.y22d{bottom:618.375000px;}
.yb7{bottom:619.635000px;}
.y4d{bottom:621.615000px;}
.y100{bottom:621.975000px;}
.y122{bottom:623.055000px;}
.y25d{bottom:623.415000px;}
.y156{bottom:624.495000px;}
.y2ae{bottom:625.575000px;}
.y214{bottom:626.115000px;}
.y30b{bottom:627.375000px;}
.y163{bottom:629.025000px;}
.y28b{bottom:630.435000px;}
.y2ea{bottom:633.495000px;}
.y22{bottom:636.555000px;}
.yf1{bottom:637.455000px;}
.y23d{bottom:641.775000px;}
.yb6{bottom:642.675000px;}
.y79{bottom:644.295000px;}
.y155{bottom:644.655000px;}
.y2d0{bottom:645.015000px;}
.yff{bottom:645.195000px;}
.y2ad{bottom:645.735000px;}
.y121{bottom:646.275000px;}
.y30a{bottom:647.535000px;}
.y22c{bottom:648.255000px;}
.y91{bottom:649.155000px;}
.ydc{bottom:650.055000px;}
.y28a{bottom:650.595000px;}
.y162{bottom:652.110000px;}
.y4c{bottom:656.355000px;}
.y17c{bottom:657.150000px;}
.y213{bottom:658.155000px;}
.y25c{bottom:660.675000px;}
.yf0{bottom:662.295000px;}
.y1f6{bottom:663.195000px;}
.y2e9{bottom:663.375000px;}
.y154{bottom:664.815000px;}
.yb5{bottom:665.895000px;}
.y22b{bottom:668.415000px;}
.y120{bottom:669.525000px;}
.y289{bottom:670.785000px;}
.y90{bottom:672.405000px;}
.ydb{bottom:673.305000px;}
.y2cf{bottom:674.025000px;}
.y161{bottom:675.330000px;}
.y2ac{bottom:675.825000px;}
.y309{bottom:677.085000px;}
.yfe{bottom:680.865000px;}
.y23c{bottom:685.725000px;}
.y21{bottom:686.265000px;}
.yb4{bottom:689.145000px;}
.y4b{bottom:690.225000px;}
.y212{bottom:690.405000px;}
.y288{bottom:690.765000px;}
.y2ce{bottom:694.185000px;}
.y153{bottom:694.905000px;}
.y8f{bottom:695.445000px;}
.y2ab{bottom:695.985000px;}
.y25b{bottom:697.065000px;}
.y22a{bottom:698.505000px;}
.yd{bottom:700.125000px;}
.y1c{bottom:702.645000px;}
.y11f{bottom:705.165000px;}
.yda{bottom:705.525000px;}
.y308{bottom:707.685000px;}
.y287{bottom:710.925000px;}
.yb3{bottom:712.185000px;}
.y160{bottom:712.590000px;}
.y1f3{bottom:713.265000px;}
.y2cd{bottom:714.345000px;}
.y152{bottom:715.065000px;}
.y191{bottom:715.245000px;}
.y4a{bottom:716.685000px;}
.y25a{bottom:717.225000px;}
.yfd{bottom:717.585000px;}
.y229{bottom:718.665000px;}
.y17b{bottom:721.950000px;}
.y211{bottom:722.625000px;}
.y2aa{bottom:725.865000px;}
.y78{bottom:728.205000px;}
.y8e{bottom:728.565000px;}
.y286{bottom:731.085000px;}
.y2cc{bottom:734.505000px;}
.y151{bottom:735.225000px;}
.yb2{bottom:735.405000px;}
.y6c{bottom:736.845000px;}
.y144{bottom:737.025000px;}
.y259{bottom:737.385000px;}
.y228{bottom:738.825000px;}
.y11e{bottom:741.885000px;}
.y49{bottom:743.865000px;}
.y2a9{bottom:746.025000px;}
.y2e8{bottom:747.105000px;}
.yfc{bottom:749.805000px;}
.y8d{bottom:751.605000px;}
.y210{bottom:754.665000px;}
.y307{bottom:757.005000px;}
.y143{bottom:757.185000px;}
.y15f{bottom:757.950000px;}
.yb1{bottom:758.625000px;}
.y285{bottom:760.245000px;}
.yd9{bottom:761.685000px;}
.y11d{bottom:765.105000px;}
.y185{bottom:765.285000px;}
.y258{bottom:766.545000px;}
.y2e7{bottom:767.265000px;}
.y227{bottom:768.705000px;}
.y6b{bottom:769.065000px;}
.y77{bottom:769.965000px;}
.y2cb{bottom:774.825000px;}
.y2a8{bottom:776.085000px;}
.y306{bottom:777.165000px;}
.y48{bottom:778.605000px;}
.y284{bottom:780.405000px;}
.yfb{bottom:780.585000px;}
.y8c{bottom:784.725000px;}
.y150{bottom:785.265000px;}
.y257{bottom:786.705000px;}
.y20f{bottom:786.885000px;}
.y142{bottom:787.245000px;}
.y2e6{bottom:787.425000px;}
.y11c{bottom:788.145000px;}
.y1f1{bottom:788.865000px;}
.yb0{bottom:790.665000px;}
.yd8{bottom:794.625000px;}
.y305{bottom:797.325000px;}
.y283{bottom:800.565000px;}
.y6a{bottom:801.105000px;}
.y1dc{bottom:804.885000px;}
.yfa{bottom:805.245000px;}
.y14f{bottom:805.425000px;}
.y256{bottom:806.865000px;}
.y141{bottom:807.405000px;}
.y2e5{bottom:807.585000px;}
.y11b{bottom:811.365000px;}
.y76{bottom:811.905000px;}
.y47{bottom:812.445000px;}
.y2a7{bottom:813.165000px;}
.yae{bottom:813.885000px;}
.y8b{bottom:816.945000px;}
.y226{bottom:818.925000px;}
.y20e{bottom:819.105000px;}
.yaf{bottom:819.825000px;}
.y1eb{bottom:820.545000px;}
.y282{bottom:820.725000px;}
.y15e{bottom:824.220000px;}
.y255{bottom:827.025000px;}
.yd7{bottom:827.745000px;}
.y21e{bottom:829.185000px;}
.y1b{bottom:833.145000px;}
.y69{bottom:833.325000px;}
.y304{bottom:834.405000px;}
.y14e{bottom:835.485000px;}
.yad{bottom:837.105000px;}
.y140{bottom:837.285000px;}
.y46{bottom:838.905000px;}
.y8a{bottom:839.985000px;}
.y281{bottom:840.885000px;}
.y11a{bottom:843.585000px;}
.y2e4{bottom:844.665000px;}
.y254{bottom:847.185000px;}
.y2ca{bottom:848.445000px;}
.y225{bottom:848.985000px;}
.y21d{bottom:849.345000px;}
.y2a6{bottom:849.705000px;}
.yd6{bottom:850.965000px;}
.y20d{bottom:851.145000px;}
.y75{bottom:853.845000px;}
.y1d4{bottom:854.925000px;}
.y14d{bottom:855.645000px;}
.y13f{bottom:857.445000px;}
.yac{bottom:860.145000px;}
.y280{bottom:861.045000px;}
.y89{bottom:863.205000px;}
.y45{bottom:865.005000px;}
.y68{bottom:865.545000px;}
.y119{bottom:866.625000px;}
.y253{bottom:867.345000px;}
.y2c9{bottom:868.605000px;}
.y224{bottom:869.145000px;}
.y2a5{bottom:869.865000px;}
.y303{bottom:870.945000px;}
.yd5{bottom:874.005000px;}
.y1a{bottom:875.625000px;}
.y14c{bottom:875.805000px;}
.y21c{bottom:878.505000px;}
.y27f{bottom:881.025000px;}
.y2e3{bottom:881.205000px;}
.yab{bottom:883.365000px;}
.y88{bottom:886.425000px;}
.y252{bottom:887.505000px;}
.y2c8{bottom:888.765000px;}
.y44{bottom:889.665000px;}
.y118{bottom:889.845000px;}
.y13e{bottom:890.565000px;}
.y73{bottom:895.785000px;}
.yd4{bottom:897.225000px;}
.y67{bottom:897.765000px;}
.y223{bottom:898.305000px;}
.y21b{bottom:898.485000px;}
.y2a4{bottom:899.925000px;}
.y302{bottom:900.105000px;}
.y27e{bottom:901.185000px;}
.y14b{bottom:905.865000px;}
.yaa{bottom:906.630000px;}
.y2c7{bottom:908.970000px;}
.y87{bottom:909.510000px;}
.y2e2{bottom:910.410000px;}
.y117{bottom:913.110000px;}
.y19{bottom:913.290000px;}
.y13d{bottom:913.650000px;}
.y43{bottom:914.370000px;}
.y20c{bottom:915.630000px;}
.y251{bottom:916.530000px;}
.y21a{bottom:918.690000px;}
.y2a3{bottom:920.130000px;}
.y301{bottom:920.310000px;}
.y27d{bottom:921.390000px;}
.y14a{bottom:926.070000px;}
.y66{bottom:926.970000px;}
.y222{bottom:927.510000px;}
.yd3{bottom:929.490000px;}
.ya9{bottom:929.670000px;}
.y2df{bottom:935.790000px;}
.y250{bottom:936.690000px;}
.y72{bottom:937.770000px;}
.y20b{bottom:938.670000px;}
.y2c6{bottom:938.850000px;}
.y42{bottom:939.030000px;}
.y300{bottom:940.470000px;}
.y86{bottom:941.730000px;}
.y149{bottom:946.050000px;}
.y219{bottom:947.850000px;}
.y116{bottom:948.930000px;}
.y2a2{bottom:950.010000px;}
.y27c{bottom:950.550000px;}
.y13c{bottom:950.730000px;}
.yd2{bottom:952.530000px;}
.y21f{bottom:952.890000px;}
.y17{bottom:955.770000px;}
.y24f{bottom:956.850000px;}
.y2c5{bottom:959.010000px;}
.ya8{bottom:961.890000px;}
.y41{bottom:964.050000px;}
.y85{bottom:964.950000px;}
.y218{bottom:968.010000px;}
.y2ff{bottom:969.450000px;}
.y2a1{bottom:970.170000px;}
.y27b{bottom:970.710000px;}
.y65{bottom:971.430000px;}
.yd1{bottom:975.750000px;}
.y148{bottom:976.110000px;}
.y2c4{bottom:979.170000px;}
.y71{bottom:979.710000px;}
.ya7{bottom:985.110000px;}
.y115{bottom:985.470000px;}
.y84{bottom:987.990000px;}
.y2fe{bottom:989.610000px;}
.y13b{bottom:990.330000px;}
.y40{bottom:990.510000px;}
.y27a{bottom:990.870000px;}
.y24e{bottom:993.930000px;}
.y147{bottom:996.270000px;}
.y217{bottom:997.170000px;}
.y16{bottom:998.430000px;}
.yd0{bottom:998.970000px;}
.y2c3{bottom:999.330000px;}
.y2a0{bottom:1000.230000px;}
.ya6{bottom:1008.150000px;}
.y114{bottom:1008.690000px;}
.y279{bottom:1011.030000px;}
.y31b{bottom:1013.550000px;}
.y146{bottom:1016.430000px;}
.y3f{bottom:1016.970000px;}
.y216{bottom:1017.330000px;}
.y2fd{bottom:1018.770000px;}
.y13a{bottom:1019.490000px;}
.y64{bottom:1019.670000px;}
.y83{bottom:1020.210000px;}
.y29f{bottom:1020.390000px;}
.y6f{bottom:1021.650000px;}
.ycf{bottom:1022.010000px;}
.y2c2{bottom:1029.390000px;}
.y183{bottom:1029.750000px;}
.yef{bottom:1029.930000px;}
.y24d{bottom:1030.470000px;}
.y278{bottom:1031.190000px;}
.y2fc{bottom:1038.930000px;}
.y139{bottom:1039.650000px;}
.ya5{bottom:1040.370000px;}
.y113{bottom:1040.730000px;}
.y13{bottom:1040.910000px;}
.y31a{bottom:1042.710000px;}
.y82{bottom:1043.430000px;}
.y3e{bottom:1044.150000px;}
.yce{bottom:1045.230000px;}
.y145{bottom:1046.490000px;}
.y63{bottom:1048.830000px;}
.y2c1{bottom:1049.550000px;}
.y29e{bottom:1050.450000px;}
.y24c{bottom:1050.630000px;}
.yee{bottom:1052.970000px;}
.y2de{bottom:1057.650000px;}
.y2fb{bottom:1059.090000px;}
.y277{bottom:1060.350000px;}
.y1b0{bottom:1060.890000px;}
.y6e{bottom:1063.410000px;}
.ya4{bottom:1063.590000px;}
.y81{bottom:1066.650000px;}
.y62{bottom:1068.990000px;}
.y138{bottom:1069.710000px;}
.y29d{bottom:1070.610000px;}
.y24b{bottom:1070.790000px;}
.y112{bottom:1073.850000px;}
.y319{bottom:1074.930000px;}
.yed{bottom:1076.190000px;}
.y3d{bottom:1078.890000px;}
.y2fa{bottom:1079.250000px;}
.y276{bottom:1080.510000px;}
.ycd{bottom:1082.490000px;}
.y11{bottom:1083.390000px;}
.y1d3{bottom:1086.270000px;}
.ya3{bottom:1086.810000px;}
.y61{bottom:1089.150000px;}
.y80{bottom:1089.690000px;}
.y137{bottom:1089.870000px;}
.y1af{bottom:1090.770000px;}
.y24a{bottom:1090.950000px;}
.ycc{bottom:1094.550000px;}
.yec{bottom:1099.410000px;}
.y2c0{bottom:1099.590000px;}
.y275{bottom:1100.490000px;}
.y111{bottom:1106.970000px;}
.y318{bottom:1107.150000px;}
.y5{bottom:1108.590000px;}
.ycb{bottom:1117.590000px;}
.y136{bottom:1119.750000px;}
.y274{bottom:1120.650000px;}
.y10{bottom:1124.970000px;}
.y3c{bottom:1127.490000px;}
.y6d{bottom:1127.850000px;}
.y249{bottom:1130.730000px;}
.y4{bottom:1131.810000px;}
.y60{bottom:1133.610000px;}
.yeb{bottom:1136.490000px;}
.y110{bottom:1139.910000px;}
.yca{bottom:1140.810000px;}
.y31e{bottom:1161.900000px;}
.y1{bottom:1194.120000px;}
.h54{height:14.580000px;}
.h4f{height:16.200000px;}
.h52{height:18.360000px;}
.h53{height:21.420000px;}
.h27{height:27.360000px;}
.h31{height:29.160000px;}
.h9{height:30.240000px;}
.h40{height:30.960000px;}
.hb{height:32.040000px;}
.h12{height:32.076000px;}
.h11{height:32.220000px;}
.h51{height:33.120000px;}
.he{height:36.936000px;}
.h4e{height:37.980000px;}
.h20{height:38.671172px;}
.h1c{height:41.040000px;}
.h1e{height:41.076000px;}
.h23{height:41.185547px;}
.h1b{height:41.220000px;}
.h1d{height:41.256000px;}
.h1f{height:41.535703px;}
.hc{height:41.580000px;}
.hd{height:41.760000px;}
.h2b{height:45.540000px;}
.h30{height:45.576000px;}
.h29{height:45.720000px;}
.h50{height:47.980898px;}
.h33{height:49.140000px;}
.h43{height:49.176000px;}
.h3c{height:49.320000px;}
.h16{height:49.394180px;}
.h2{height:50.520937px;}
.h10{height:52.200000px;}
.h14{height:52.380000px;}
.h48{height:53.302500px;}
.h4d{height:55.980000px;}
.h21{height:59.439023px;}
.h28{height:61.189805px;}
.h2e{height:63.900000px;}
.h2f{height:64.080000px;}
.h36{height:65.016000px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h24{height:68.554688px;}
.h38{height:69.300000px;}
.h4c{height:69.480000px;}
.h3a{height:69.516000px;}
.h17{height:70.380000px;}
.h6{height:71.613281px;}
.h13{height:72.360000px;}
.h15{height:73.620000px;}
.h41{height:73.722656px;}
.h42{height:74.880000px;}
.h22{height:80.208984px;}
.h2d{height:82.260000px;}
.h2a{height:82.296000px;}
.h19{height:86.255508px;}
.h18{height:91.177734px;}
.h7{height:93.636000px;}
.h2c{height:100.656000px;}
.h4a{height:102.832031px;}
.h5{height:107.280000px;}
.h47{height:107.419922px;}
.h4b{height:107.640000px;}
.h1a{height:114.486328px;}
.h45{height:119.520000px;}
.ha{height:125.455078px;}
.hf{height:129.780000px;}
.h49{height:148.763672px;}
.h8{height:148.955625px;}
.h46{height:159.978164px;}
.h35{height:190.290000px;}
.h3f{height:219.450000px;}
.h3b{height:230.610000px;}
.h32{height:263.730000px;}
.h3d{height:275.430000px;}
.h39{height:340.455000px;}
.h3e{height:360.435000px;}
.h34{height:376.095000px;}
.h44{height:490.215000px;}
.h37{height:526.035000px;}
.h25{height:892.980000px;}
.h26{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2a{width:24.120000px;}
.w28{width:31.860000px;}
.w19{width:49.716000px;}
.w24{width:52.560000px;}
.wd{width:76.140000px;}
.w26{width:83.556000px;}
.w1d{width:87.120000px;}
.w2f{width:99.000000px;}
.w31{width:99.036000px;}
.w30{width:99.180000px;}
.w2e{width:99.216000px;}
.w2c{width:115.020000px;}
.w1a{width:115.920000px;}
.we{width:126.936000px;}
.w29{width:148.716000px;}
.w2d{width:151.950000px;}
.w21{width:159.150000px;}
.w9{width:168.510000px;}
.w8{width:168.690000px;}
.wa{width:169.050000px;}
.wb{width:171.390000px;}
.w6{width:171.930000px;}
.w1e{width:181.110000px;}
.w13{width:190.290000px;}
.w1b{width:192.630000px;}
.w2b{width:233.895000px;}
.w1c{width:236.730000px;}
.wf{width:237.270000px;}
.w10{width:237.855000px;}
.w5{width:252.975000px;}
.w27{width:276.510000px;}
.w12{width:352.875000px;}
.w3{width:379.185000px;}
.w4{width:485.205000px;}
.w14{width:487.725000px;}
.w7{width:507.705000px;}
.wc{width:508.245000px;}
.w22{width:520.305000px;}
.w11{width:524.805000px;}
.w25{width:573.405000px;}
.w20{width:636.405000px;}
.w1f{width:678.930000px;}
.w23{width:680.370000px;}
.w15{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w18{width:1262.879981px;}
.w16{width:1262.880000px;}
.w17{width:1263.000000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x6{left:10.800000px;}
.xd{left:12.060000px;}
.x49{left:14.940000px;}
.x16{left:16.380000px;}
.x3e{left:21.096000px;}
.x46{left:22.140000px;}
.x15{left:23.580000px;}
.x14{left:27.720000px;}
.x52{left:29.370000px;}
.x18{left:31.500000px;}
.x1f{left:33.120000px;}
.x17{left:34.200000px;}
.x1c{left:41.940000px;}
.xf{left:47.160000px;}
.x11{left:51.660000px;}
.x4f{left:58.170000px;}
.x1a{left:59.400000px;}
.x22{left:68.400000px;}
.x1d{left:80.280000px;}
.x50{left:84.285000px;}
.x13{left:86.265000px;}
.x23{left:93.780000px;}
.x19{left:95.985000px;}
.x54{left:99.576000px;}
.x1e{left:102.105000px;}
.x4{left:106.415987px;}
.x1b{left:110.205000px;}
.x2e{left:111.275987px;}
.x4e{left:117.894000px;}
.x3f{left:120.054000px;}
.x43{left:122.034000px;}
.x21{left:128.205000px;}
.x2a{left:133.415987px;}
.x25{left:148.895987px;}
.x2c{left:153.929987px;}
.x38{left:157.530000px;}
.x2b{left:160.409987px;}
.x45{left:164.909987px;}
.xe{left:183.270000px;}
.x53{left:207.210000px;}
.x47{left:231.525000px;}
.x44{left:266.475000px;}
.x3{left:271.514987px;}
.x29{left:272.594987px;}
.x39{left:274.170000px;}
.xa{left:279.075000px;}
.x28{left:298.335000px;}
.x36{left:302.114987px;}
.x10{left:310.935000px;}
.x2d{left:322.454987px;}
.x30{left:324.074987px;}
.x33{left:327.314987px;}
.x41{left:333.794987px;}
.x42{left:346.394987px;}
.x24{left:368.894987px;}
.x4a{left:382.935000px;}
.x26{left:386.174987px;}
.x27{left:390.314987px;}
.x8{left:402.555000px;}
.x7{left:404.175000px;}
.x5{left:409.575000px;}
.x4b{left:414.795000px;}
.x55{left:417.135000px;}
.x51{left:425.415000px;}
.x34{left:446.504987px;}
.xb{left:448.485000px;}
.x3a{left:467.535000px;}
.x20{left:503.385000px;}
.x56{left:523.905000px;}
.x12{left:548.925000px;}
.x4c{left:563.505000px;}
.x4d{left:587.625000px;}
.xc{left:617.730000px;}
.x1{left:683.969987px;}
.x3b{left:704.985000px;}
.x48{left:734.190000px;}
.x2f{left:743.549987px;}
.x40{left:749.129987px;}
.x31{left:770.009987px;}
.x2{left:778.319987px;}
.x32{left:779.579987px;}
.x3c{left:793.005000px;}
.x35{left:799.559987px;}
.x3d{left:974.850000px;}
.x37{left:1139.939981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3c{letter-spacing:-1.397333pt;}
.ls3a{letter-spacing:-0.832000pt;}
.ls30{letter-spacing:-0.810667pt;}
.ls44{letter-spacing:-0.682667pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.586667pt;}
.ls31{letter-spacing:-0.524800pt;}
.ls1f{letter-spacing:-0.481067pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.361067pt;}
.ls45{letter-spacing:-0.234133pt;}
.ls12{letter-spacing:-0.204267pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.171733pt;}
.ls22{letter-spacing:-0.156267pt;}
.lse{letter-spacing:-0.153067pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.125333pt;}
.ls11{letter-spacing:-0.117867pt;}
.ls28{letter-spacing:-0.102400pt;}
.ls36{letter-spacing:-0.051840pt;}
.ls3b{letter-spacing:-0.043520pt;}
.ls37{letter-spacing:-0.036480pt;}
.ls25{letter-spacing:-0.033280pt;}
.ls2b{letter-spacing:-0.030720pt;}
.ls35{letter-spacing:-0.028800pt;}
.ls14{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.019840pt;}
.ls3e{letter-spacing:0.053867pt;}
.ls15{letter-spacing:0.066667pt;}
.ls5{letter-spacing:0.076800pt;}
.lsb{letter-spacing:0.077867pt;}
.ls27{letter-spacing:0.079360pt;}
.ls26{letter-spacing:0.079467pt;}
.ls21{letter-spacing:0.115200pt;}
.ls2{letter-spacing:0.117760pt;}
.ls1{letter-spacing:0.133120pt;}
.ls1e{letter-spacing:0.154880pt;}
.ls38{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.194133pt;}
.ls1c{letter-spacing:0.211840pt;}
.ls9{letter-spacing:0.212267pt;}
.ls42{letter-spacing:0.220267pt;}
.lsa{letter-spacing:0.227733pt;}
.ls23{letter-spacing:0.235733pt;}
.ls41{letter-spacing:0.277760pt;}
.ls6{letter-spacing:0.278933pt;}
.ls3{letter-spacing:0.281600pt;}
.ls2a{letter-spacing:0.330133pt;}
.ls32{letter-spacing:0.339840pt;}
.ls1a{letter-spacing:0.348267pt;}
.ls33{letter-spacing:0.544640pt;}
.ls2e{letter-spacing:0.773120pt;}
.ls2d{letter-spacing:3.333120pt;}
.ls2f{letter-spacing:3.493120pt;}
.ls40{letter-spacing:3.973120pt;}
.ls39{letter-spacing:5.253120pt;}
.ls3f{letter-spacing:14.351360pt;}
.lsd{letter-spacing:18.176000pt;}
.ls2c{letter-spacing:32.911360pt;}
.ls17{letter-spacing:34.810027pt;}
.ls29{letter-spacing:45.546667pt;}
.ls16{letter-spacing:52.730027pt;}
.ls24{letter-spacing:77.082027pt;}
.lsc{letter-spacing:98.816000pt;}
.ls1d{letter-spacing:107.866027pt;}
.ws15{word-spacing:-58.880000pt;}
.ws9{word-spacing:-16.922880pt;}
.wsa{word-spacing:-16.769813pt;}
.wse{word-spacing:-16.718613pt;}
.wsc{word-spacing:-14.656000pt;}
.ws1f{word-spacing:-14.464000pt;}
.wsb{word-spacing:-14.336000pt;}
.ws20{word-spacing:-13.637013pt;}
.ws3{word-spacing:-13.585813pt;}
.ws1b{word-spacing:-13.542613pt;}
.ws7{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.519147pt;}
.ws18{word-spacing:-13.422080pt;}
.ws1d{word-spacing:-13.386347pt;}
.ws1{word-spacing:-13.383680pt;}
.ws11{word-spacing:-13.373547pt;}
.ws2b{word-spacing:-13.360747pt;}
.ws13{word-spacing:-13.324800pt;}
.ws2{word-spacing:-13.306880pt;}
.ws10{word-spacing:-13.283840pt;}
.ws21{word-spacing:-13.276160pt;}
.ws1c{word-spacing:-13.273600pt;}
.ws1e{word-spacing:-13.204480pt;}
.wsd{word-spacing:-13.189013pt;}
.ws17{word-spacing:-13.181547pt;}
.ws19{word-spacing:-13.150613pt;}
.wsf{word-spacing:-13.135147pt;}
.ws12{word-spacing:-13.114880pt;}
.ws5{word-spacing:-12.945813pt;}
.ws4{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.825813pt;}
.ws23{word-spacing:-12.782080pt;}
.ws2a{word-spacing:-12.720213pt;}
.ws14{word-spacing:-12.666880pt;}
.ws22{word-spacing:-12.496213pt;}
.ws29{word-spacing:-12.474880pt;}
.ws24{word-spacing:-12.199253pt;}
.ws1a{word-spacing:-12.005120pt;}
.ws25{word-spacing:-11.976320pt;}
.ws28{word-spacing:-11.968640pt;}
.ws27{word-spacing:-11.953280pt;}
.ws26{word-spacing:-11.852053pt;}
.ws8{word-spacing:-9.690880pt;}
.ws2c{word-spacing:-9.456747pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-15.998507pt;}
._d{margin-left:-14.855893pt;}
._c{margin-left:-13.088000pt;}
._8{margin-left:-11.143253pt;}
._4{margin-left:-9.107840pt;}
._a{margin-left:-7.000320pt;}
._e{margin-left:-5.552213pt;}
._b{margin-left:-4.161280pt;}
._6{margin-left:-3.234560pt;}
._5{margin-left:-2.298240pt;}
._0{margin-left:-0.954880pt;}
._2{width:1.464320pt;}
._11{width:2.623147pt;}
._12{width:3.754027pt;}
._10{width:5.277867pt;}
._16{width:6.314667pt;}
._13{width:7.360000pt;}
._14{width:8.608000pt;}
._19{width:9.893333pt;}
._15{width:11.041280pt;}
._1e{width:12.070400pt;}
._f{width:14.320640pt;}
._1f{width:15.413760pt;}
._18{width:16.607147pt;}
._17{width:17.532587pt;}
._1d{width:18.624427pt;}
._20{width:19.796053pt;}
._1c{width:21.137920pt;}
._21{width:22.039040pt;}
._1a{width:23.139840pt;}
._1b{width:24.035840pt;}
._9{width:25.450667pt;}
._22{width:26.385493pt;}
._27{width:28.321280pt;}
._23{width:29.322240pt;}
._24{width:30.323200pt;}
._3{width:39.508480pt;}
._26{width:65.297920pt;}
._25{width:112.667307pt;}
._1{width:754.831787pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.fs3{font-size:117.120000pt;}
.fs2{font-size:133.120000pt;}
.fsc{font-size:138.880000pt;}
.yf{bottom:-22.560000pt;}
.y0{bottom:0.000000pt;}
.y324{bottom:2.880000pt;}
.ye{bottom:3.680000pt;}
.y1ae{bottom:4.000000pt;}
.y31d{bottom:4.320000pt;}
.y321{bottom:6.240000pt;}
.y171{bottom:7.360000pt;}
.y166{bottom:7.520000pt;}
.y1e6{bottom:7.840000pt;}
.y184{bottom:8.000000pt;}
.y1f8{bottom:8.026667pt;}
.y1f2{bottom:8.320000pt;}
.y31f{bottom:8.640000pt;}
.y322{bottom:8.800000pt;}
.y12{bottom:9.120000pt;}
.y25{bottom:9.280000pt;}
.y32{bottom:9.440000pt;}
.y190{bottom:10.560000pt;}
.y312{bottom:11.840000pt;}
.yc{bottom:12.640000pt;}
.y15{bottom:13.440000pt;}
.y18{bottom:13.600000pt;}
.y2e1{bottom:14.400000pt;}
.y70{bottom:14.560000pt;}
.y3b{bottom:14.720000pt;}
.y74{bottom:14.760000pt;}
.y16f{bottom:15.520000pt;}
.y14{bottom:15.680000pt;}
.y37{bottom:16.160000pt;}
.y9{bottom:17.120000pt;}
.y26{bottom:18.080000pt;}
.y30{bottom:18.240000pt;}
.y221{bottom:18.560000pt;}
.y34{bottom:18.720000pt;}
.y38{bottom:21.120000pt;}
.y1ad{bottom:21.920000pt;}
.y170{bottom:23.680000pt;}
.y168{bottom:23.840000pt;}
.y180{bottom:23.880000pt;}
.y1e5{bottom:25.760000pt;}
.y192{bottom:25.920000pt;}
.y1f7{bottom:25.946667pt;}
.y2d{bottom:27.040000pt;}
.y24{bottom:27.200000pt;}
.y31{bottom:27.360000pt;}
.y3a{bottom:27.680000pt;}
.y1f5{bottom:27.840000pt;}
.y36{bottom:29.120000pt;}
.y18f{bottom:31.200000pt;}
.y16a{bottom:31.840000pt;}
.y17e{bottom:32.000000pt;}
.y3{bottom:34.080000pt;}
.y1ac{bottom:39.840000pt;}
.y179{bottom:40.000000pt;}
.y173{bottom:40.040000pt;}
.y17d{bottom:40.160000pt;}
.y16b{bottom:40.186667pt;}
.y39{bottom:40.800000pt;}
.y20{bottom:41.120000pt;}
.y35{bottom:42.240000pt;}
.yb{bottom:43.520000pt;}
.y1c4{bottom:43.680000pt;}
.y1a3{bottom:43.840000pt;}
.y209{bottom:43.866667pt;}
.y8{bottom:44.640000pt;}
.y2e{bottom:45.120000pt;}
.y320{bottom:46.560000pt;}
.y1f4{bottom:47.360000pt;}
.y177{bottom:48.160000pt;}
.y325{bottom:49.280000pt;}
.y323{bottom:49.920000pt;}
.y326{bottom:50.080000pt;}
.y18e{bottom:51.840000pt;}
.y2{bottom:52.000000pt;}
.y2e0{bottom:54.720000pt;}
.y1d{bottom:54.880000pt;}
.y178{bottom:56.320000pt;}
.y16c{bottom:56.346667pt;}
.y174{bottom:56.360000pt;}
.y1ab{bottom:57.760000pt;}
.y1c3{bottom:61.600000pt;}
.y1a2{bottom:61.760000pt;}
.y208{bottom:61.786667pt;}
.y1db{bottom:61.800000pt;}
.y220{bottom:65.280000pt;}
.y1d2{bottom:65.786667pt;}
.y1f{bottom:68.640000pt;}
.y7{bottom:72.160000pt;}
.y18d{bottom:72.320000pt;}
.y175{bottom:72.680000pt;}
.y1aa{bottom:75.706667pt;}
.y31c{bottom:79.360000pt;}
.y1c2{bottom:79.520000pt;}
.y207{bottom:79.546667pt;}
.y1a1{bottom:79.680000pt;}
.y1ea{bottom:79.706667pt;}
.y1da{bottom:79.720000pt;}
.y1d1{bottom:83.706667pt;}
.y1f0{bottom:83.720000pt;}
.y18c{bottom:92.960000pt;}
.y1e{bottom:96.160000pt;}
.y1a9{bottom:97.466667pt;}
.y1e3{bottom:97.600000pt;}
.y1e9{bottom:97.626667pt;}
.y1a0{bottom:97.640000pt;}
.yc9{bottom:97.920000pt;}
.yea{bottom:100.160000pt;}
.y1c1{bottom:101.440000pt;}
.y1d0{bottom:101.626667pt;}
.y1ef{bottom:101.640000pt;}
.y317{bottom:101.760000pt;}
.yc8{bottom:102.560000pt;}
.y5f{bottom:103.840000pt;}
.y1a5{bottom:104.320000pt;}
.y1e7{bottom:104.480000pt;}
.y248{bottom:105.920000pt;}
.y135{bottom:107.520000pt;}
.y17a{bottom:108.352000pt;}
.y1c6{bottom:109.120000pt;}
.y273{bottom:110.400000pt;}
.y18b{bottom:113.600000pt;}
.yc7{bottom:114.720000pt;}
.y1a8{bottom:115.386667pt;}
.y1e2{bottom:115.520000pt;}
.y1d9{bottom:115.560000pt;}
.y10f{bottom:118.880000pt;}
.y1c0{bottom:119.360000pt;}
.y19f{bottom:119.560000pt;}
.ye9{bottom:120.640000pt;}
.y29c{bottom:122.400000pt;}
.y1cf{bottom:123.546667pt;}
.y134{bottom:125.440000pt;}
.y272{bottom:128.320000pt;}
.y5e{bottom:130.080000pt;}
.y20a{bottom:130.400000pt;}
.y2f9{bottom:130.720000pt;}
.ya2{bottom:133.120000pt;}
.y1a7{bottom:133.306667pt;}
.y1d8{bottom:133.480000pt;}
.y18a{bottom:134.120000pt;}
.y1bf{bottom:137.306667pt;}
.y1ee{bottom:137.320000pt;}
.y1e1{bottom:137.466667pt;}
.y19e{bottom:137.480000pt;}
.y10e{bottom:139.520000pt;}
.y1ce{bottom:141.466667pt;}
.y2bf{bottom:143.360000pt;}
.y29b{bottom:149.120000pt;}
.ye8{bottom:149.280000pt;}
.y176{bottom:149.626667pt;}
.y1a6{bottom:151.226667pt;}
.y1d7{bottom:151.240000pt;}
.y133{bottom:152.160000pt;}
.y1f9{bottom:152.960000pt;}
.y5d{bottom:153.600000pt;}
.y271{bottom:154.240000pt;}
.y189{bottom:154.760000pt;}
.y1be{bottom:155.226667pt;}
.y1e0{bottom:155.386667pt;}
.y19d{bottom:155.400000pt;}
.y316{bottom:156.320000pt;}
.y2f8{bottom:156.640000pt;}
.y1cd{bottom:159.226667pt;}
.y1ed{bottom:159.240000pt;}
.y10d{bottom:160.000000pt;}
.y2be{bottom:161.280000pt;}
.yc6{bottom:165.120000pt;}
.y29a{bottom:167.040000pt;}
.y206{bottom:169.146667pt;}
.y1d6{bottom:169.160000pt;}
.ye7{bottom:169.760000pt;}
.y132{bottom:170.080000pt;}
.y270{bottom:172.186667pt;}
.ya1{bottom:173.146667pt;}
.y19c{bottom:173.160000pt;}
.y1df{bottom:173.306667pt;}
.y188{bottom:175.400000pt;}
.y5c{bottom:177.146667pt;}
.y1ec{bottom:177.160000pt;}
.y2f7{bottom:182.586667pt;}
.y247{bottom:183.226667pt;}
.y315{bottom:184.986667pt;}
.yc5{bottom:185.786667pt;}
.y205{bottom:187.066667pt;}
.y1d5{bottom:187.080000pt;}
.y2bd{bottom:187.866667pt;}
.y131{bottom:188.026667pt;}
.y26f{bottom:189.946667pt;}
.y1bd{bottom:191.066667pt;}
.y19b{bottom:191.080000pt;}
.y10c{bottom:191.866667pt;}
.ya0{bottom:193.786667pt;}
.y1cc{bottom:195.066667pt;}
.y187{bottom:195.880000pt;}
.y33{bottom:196.666667pt;}
.ye6{bottom:199.226667pt;}
.y2f6{bottom:200.506667pt;}
.y5b{bottom:200.666667pt;}
.y204{bottom:204.986667pt;}
.y2bc{bottom:205.786667pt;}
.y26e{bottom:207.866667pt;}
.y1bc{bottom:208.986667pt;}
.y19a{bottom:209.000000pt;}
.y314{bottom:210.906667pt;}
.y299{bottom:211.706667pt;}
.y246{bottom:211.866667pt;}
.y1cb{bottom:212.986667pt;}
.y130{bottom:214.586667pt;}
.yc4{bottom:215.066667pt;}
.y23b{bottom:215.386667pt;}
.y186{bottom:216.520000pt;}
.y9f{bottom:222.426667pt;}
.y203{bottom:222.906667pt;}
.y172{bottom:223.386667pt;}
.y2bb{bottom:223.706667pt;}
.y10b{bottom:224.506667pt;}
.y5a{bottom:224.986667pt;}
.y26d{bottom:225.786667pt;}
.y1bb{bottom:226.746667pt;}
.y1de{bottom:226.906667pt;}
.y199{bottom:226.920000pt;}
.y2f5{bottom:227.226667pt;}
.ye5{bottom:228.666667pt;}
.y1ca{bottom:230.906667pt;}
.y2dd{bottom:231.386667pt;}
.y313{bottom:232.826667pt;}
.y202{bottom:240.706667pt;}
.y245{bottom:241.946667pt;}
.y12f{bottom:243.226667pt;}
.y2f{bottom:243.706667pt;}
.y23a{bottom:244.026667pt;}
.yc3{bottom:244.506667pt;}
.y1ba{bottom:244.666667pt;}
.y198{bottom:244.840000pt;}
.y10a{bottom:245.146667pt;}
.y1c9{bottom:248.826667pt;}
.y2ba{bottom:250.426667pt;}
.y9e{bottom:250.906667pt;}
.y2f4{bottom:253.786667pt;}
.y59{bottom:255.066667pt;}
.y2dc{bottom:257.306667pt;}
.ye4{bottom:257.946667pt;}
.y201{bottom:258.626667pt;}
.y26c{bottom:261.626667pt;}
.y1b9{bottom:262.586667pt;}
.y197{bottom:262.760000pt;}
.y12e{bottom:263.866667pt;}
.y109{bottom:265.626667pt;}
.y1c8{bottom:266.746667pt;}
.y311{bottom:267.386667pt;}
.y2b9{bottom:268.346667pt;}
.y239{bottom:269.946667pt;}
.y9d{bottom:271.546667pt;}
.yc2{bottom:273.786667pt;}
.y1a4{bottom:274.106667pt;}
.y244{bottom:274.586667pt;}
.y58{bottom:278.586667pt;}
.y26b{bottom:279.546667pt;}
.y1b8{bottom:280.506667pt;}
.y200{bottom:280.546667pt;}
.y196{bottom:280.680000pt;}
.y2db{bottom:283.226667pt;}
.y298{bottom:283.866667pt;}
.y12d{bottom:284.346667pt;}
.y1c7{bottom:284.706667pt;}
.y2b8{bottom:286.266667pt;}
.ye3{bottom:287.386667pt;}
.y2c{bottom:290.906667pt;}
.y108{bottom:294.266667pt;}
.y238{bottom:295.866667pt;}
.y1ff{bottom:298.466667pt;}
.y195{bottom:298.626667pt;}
.y9c{bottom:300.186667pt;}
.y193{bottom:300.666667pt;}
.y57{bottom:302.106667pt;}
.y1b7{bottom:302.426667pt;}
.y1e8{bottom:302.466667pt;}
.yc1{bottom:303.226667pt;}
.y12c{bottom:304.986667pt;}
.y26a{bottom:305.466667pt;}
.y2f3{bottom:306.426667pt;}
.y2da{bottom:309.146667pt;}
.y2b7{bottom:312.826667pt;}
.y16e{bottom:313.506667pt;}
.ye2{bottom:314.746667pt;}
.y194{bottom:316.546667pt;}
.y1b6{bottom:320.346667pt;}
.y1fe{bottom:320.386667pt;}
.y9b{bottom:320.666667pt;}
.y297{bottom:321.466667pt;}
.y237{bottom:321.786667pt;}
.y269{bottom:323.386667pt;}
.yc0{bottom:323.866667pt;}
.y2f2{bottom:324.346667pt;}
.y56{bottom:325.626667pt;}
.y7f{bottom:326.586667pt;}
.y310{bottom:329.146667pt;}
.y2b6{bottom:330.746667pt;}
.y243{bottom:331.706667pt;}
.y2d9{bottom:334.906667pt;}
.ye1{bottom:336.826667pt;}
.y12b{bottom:337.946667pt;}
.y1b5{bottom:338.306667pt;}
.y268{bottom:341.306667pt;}
.y2f1{bottom:342.266667pt;}
.y107{bottom:344.186667pt;}
.y296{bottom:347.386667pt;}
.y236{bottom:347.546667pt;}
.y2b5{bottom:348.666667pt;}
.y55{bottom:349.146667pt;}
.y9a{bottom:349.306667pt;}
.ybf{bottom:353.146667pt;}
.y16d{bottom:354.626667pt;}
.y30f{bottom:355.066667pt;}
.y2b{bottom:356.026667pt;}
.y1b4{bottom:356.226667pt;}
.y1fd{bottom:360.226667pt;}
.y242{bottom:360.346667pt;}
.y2d8{bottom:360.826667pt;}
.y106{bottom:364.826667pt;}
.y295{bottom:365.306667pt;}
.y2b4{bottom:366.586667pt;}
.y267{bottom:367.066667pt;}
.y99{bottom:369.946667pt;}
.y54{bottom:372.666667pt;}
.y12a{bottom:373.146667pt;}
.y235{bottom:373.466667pt;}
.y1b3{bottom:374.146667pt;}
.y2f0{bottom:375.226667pt;}
.y1fc{bottom:378.146667pt;}
.y169{bottom:379.586667pt;}
.y30e{bottom:380.986667pt;}
.ybe{bottom:382.586667pt;}
.y294{bottom:383.266667pt;}
.yf9{bottom:384.226667pt;}
.y2b3{bottom:384.546667pt;}
.y266{bottom:385.026667pt;}
.y7e{bottom:386.466667pt;}
.y2d7{bottom:386.786667pt;}
.y241{bottom:389.026667pt;}
.y1b2{bottom:391.906667pt;}
.y2a{bottom:393.026667pt;}
.y105{bottom:394.146667pt;}
.y53{bottom:396.226667pt;}
.y98{bottom:398.466667pt;}
.y234{bottom:399.426667pt;}
.y1fb{bottom:400.066667pt;}
.y293{bottom:401.186667pt;}
.y129{bottom:401.826667pt;}
.y2b2{bottom:402.466667pt;}
.y265{bottom:402.946667pt;}
.y30d{bottom:403.586667pt;}
.y2ef{bottom:407.746667pt;}
.y6{bottom:408.226667pt;}
.y1b1{bottom:409.826667pt;}
.ybd{bottom:411.106667pt;}
.y1c5{bottom:412.386667pt;}
.y2d6{bottom:412.706667pt;}
.yf8{bottom:417.346667pt;}
.y240{bottom:417.506667pt;}
.y1fa{bottom:417.986667pt;}
.y292{bottom:418.946667pt;}
.y97{bottom:419.106667pt;}
.y52{bottom:419.746667pt;}
.y2b1{bottom:420.386667pt;}
.y264{bottom:420.866667pt;}
.y15d{bottom:421.026667pt;}
.y128{bottom:422.306667pt;}
.y7d{bottom:423.586667pt;}
.y233{bottom:425.346667pt;}
.y1e4{bottom:425.666667pt;}
.y30c{bottom:430.146667pt;}
.y2ee{bottom:430.306667pt;}
.ybc{bottom:431.746667pt;}
.y291{bottom:436.866667pt;}
.y29{bottom:437.186667pt;}
.y2d5{bottom:438.626667pt;}
.y263{bottom:438.786667pt;}
.y15c{bottom:438.946667pt;}
.y127{bottom:442.946667pt;}
.y51{bottom:443.266667pt;}
.y96{bottom:447.746667pt;}
.yf7{bottom:449.666667pt;}
.y232{bottom:451.266667pt;}
.ybb{bottom:452.386667pt;}
.y104{bottom:452.866667pt;}
.y2b0{bottom:453.346667pt;}
.y167{bottom:453.373333pt;}
.y23f{bottom:455.266667pt;}
.y262{bottom:456.706667pt;}
.y15b{bottom:456.866667pt;}
.ye0{bottom:460.386667pt;}
.y7c{bottom:460.866667pt;}
.y290{bottom:462.786667pt;}
.y126{bottom:463.586667pt;}
.y2d4{bottom:464.546667pt;}
.y50{bottom:466.786667pt;}
.y28{bottom:467.106667pt;}
.yf6{bottom:467.586667pt;}
.y231{bottom:469.186667pt;}
.y1dd{bottom:469.986667pt;}
.y182{bottom:470.813333pt;}
.y103{bottom:473.506667pt;}
.y261{bottom:474.626667pt;}
.y15a{bottom:474.786667pt;}
.y95{bottom:477.026667pt;}
.y28f{bottom:480.706667pt;}
.yba{bottom:481.026667pt;}
.y27{bottom:481.666667pt;}
.y2d3{bottom:482.466667pt;}
.y2ed{bottom:483.426667pt;}
.y125{bottom:484.066667pt;}
.yf5{bottom:485.506667pt;}
.y181{bottom:485.533333pt;}
.ydf{bottom:489.666667pt;}
.y4f{bottom:491.106667pt;}
.y260{bottom:492.546667pt;}
.y159{bottom:492.706667pt;}
.y165{bottom:494.653333pt;}
.y230{bottom:495.906667pt;}
.y94{bottom:497.666667pt;}
.y7b{bottom:498.146667pt;}
.y28e{bottom:498.626667pt;}
.y2d2{bottom:500.386667pt;}
.yb9{bottom:501.506667pt;}
.y102{bottom:502.946667pt;}
.yf4{bottom:503.426667pt;}
.y2ec{bottom:509.986667pt;}
.y25f{bottom:510.466667pt;}
.y158{bottom:510.626667pt;}
.y23{bottom:510.946667pt;}
.y23e{bottom:511.906667pt;}
.y124{bottom:512.706667pt;}
.y22f{bottom:513.826667pt;}
.y28d{bottom:516.546667pt;}
.ya{bottom:516.866667pt;}
.yde{bottom:519.106667pt;}
.yf3{bottom:521.346667pt;}
.y4e{bottom:521.826667pt;}
.yb8{bottom:522.146667pt;}
.y93{bottom:527.106667pt;}
.y215{bottom:527.906667pt;}
.y25e{bottom:528.386667pt;}
.y2af{bottom:530.146667pt;}
.y22e{bottom:531.746667pt;}
.y101{bottom:532.226667pt;}
.y164{bottom:533.053333pt;}
.y123{bottom:533.346667pt;}
.y28c{bottom:534.466667pt;}
.y7a{bottom:535.426667pt;}
.y2d1{bottom:535.746667pt;}
.y2eb{bottom:536.546667pt;}
.y157{bottom:537.186667pt;}
.yf2{bottom:539.266667pt;}
.y17f{bottom:542.973333pt;}
.y92{bottom:547.586667pt;}
.ydd{bottom:548.546667pt;}
.y22d{bottom:549.666667pt;}
.yb7{bottom:550.786667pt;}
.y4d{bottom:552.546667pt;}
.y100{bottom:552.866667pt;}
.y122{bottom:553.826667pt;}
.y25d{bottom:554.146667pt;}
.y156{bottom:555.106667pt;}
.y2ae{bottom:556.066667pt;}
.y214{bottom:556.546667pt;}
.y30b{bottom:557.666667pt;}
.y163{bottom:559.133333pt;}
.y28b{bottom:560.386667pt;}
.y2ea{bottom:563.106667pt;}
.y22{bottom:565.826667pt;}
.yf1{bottom:566.626667pt;}
.y23d{bottom:570.466667pt;}
.yb6{bottom:571.266667pt;}
.y79{bottom:572.706667pt;}
.y155{bottom:573.026667pt;}
.y2d0{bottom:573.346667pt;}
.yff{bottom:573.506667pt;}
.y2ad{bottom:573.986667pt;}
.y121{bottom:574.466667pt;}
.y30a{bottom:575.586667pt;}
.y22c{bottom:576.226667pt;}
.y91{bottom:577.026667pt;}
.ydc{bottom:577.826667pt;}
.y28a{bottom:578.306667pt;}
.y162{bottom:579.653333pt;}
.y4c{bottom:583.426667pt;}
.y17c{bottom:584.133333pt;}
.y213{bottom:585.026667pt;}
.y25c{bottom:587.266667pt;}
.yf0{bottom:588.706667pt;}
.y1f6{bottom:589.506667pt;}
.y2e9{bottom:589.666667pt;}
.y154{bottom:590.946667pt;}
.yb5{bottom:591.906667pt;}
.y22b{bottom:594.146667pt;}
.y120{bottom:595.133333pt;}
.y289{bottom:596.253333pt;}
.y90{bottom:597.693333pt;}
.ydb{bottom:598.493333pt;}
.y2cf{bottom:599.133333pt;}
.y161{bottom:600.293333pt;}
.y2ac{bottom:600.733333pt;}
.y309{bottom:601.853333pt;}
.yfe{bottom:605.213333pt;}
.y23c{bottom:609.533333pt;}
.y21{bottom:610.013333pt;}
.yb4{bottom:612.573333pt;}
.y4b{bottom:613.533333pt;}
.y212{bottom:613.693333pt;}
.y288{bottom:614.013333pt;}
.y2ce{bottom:617.053333pt;}
.y153{bottom:617.693333pt;}
.y8f{bottom:618.173333pt;}
.y2ab{bottom:618.653333pt;}
.y25b{bottom:619.613333pt;}
.y22a{bottom:620.893333pt;}
.yd{bottom:622.333333pt;}
.y1c{bottom:624.573333pt;}
.y11f{bottom:626.813333pt;}
.yda{bottom:627.133333pt;}
.y308{bottom:629.053333pt;}
.y287{bottom:631.933333pt;}
.yb3{bottom:633.053333pt;}
.y160{bottom:633.413333pt;}
.y1f3{bottom:634.013333pt;}
.y2cd{bottom:634.973333pt;}
.y152{bottom:635.613333pt;}
.y191{bottom:635.773333pt;}
.y4a{bottom:637.053333pt;}
.y25a{bottom:637.533333pt;}
.yfd{bottom:637.853333pt;}
.y229{bottom:638.813333pt;}
.y17b{bottom:641.733333pt;}
.y211{bottom:642.333333pt;}
.y2aa{bottom:645.213333pt;}
.y78{bottom:647.293333pt;}
.y8e{bottom:647.613333pt;}
.y286{bottom:649.853333pt;}
.y2cc{bottom:652.893333pt;}
.y151{bottom:653.533333pt;}
.yb2{bottom:653.693333pt;}
.y6c{bottom:654.973333pt;}
.y144{bottom:655.133333pt;}
.y259{bottom:655.453333pt;}
.y228{bottom:656.733333pt;}
.y11e{bottom:659.453333pt;}
.y49{bottom:661.213333pt;}
.y2a9{bottom:663.133333pt;}
.y2e8{bottom:664.093333pt;}
.yfc{bottom:666.493333pt;}
.y8d{bottom:668.093333pt;}
.y210{bottom:670.813333pt;}
.y307{bottom:672.893333pt;}
.y143{bottom:673.053333pt;}
.y15f{bottom:673.733333pt;}
.yb1{bottom:674.333333pt;}
.y285{bottom:675.773333pt;}
.yd9{bottom:677.053333pt;}
.y11d{bottom:680.093333pt;}
.y185{bottom:680.253333pt;}
.y258{bottom:681.373333pt;}
.y2e7{bottom:682.013333pt;}
.y227{bottom:683.293333pt;}
.y6b{bottom:683.613333pt;}
.y77{bottom:684.413333pt;}
.y2cb{bottom:688.733333pt;}
.y2a8{bottom:689.853333pt;}
.y306{bottom:690.813333pt;}
.y48{bottom:692.093333pt;}
.y284{bottom:693.693333pt;}
.yfb{bottom:693.853333pt;}
.y8c{bottom:697.533333pt;}
.y150{bottom:698.013333pt;}
.y257{bottom:699.293333pt;}
.y20f{bottom:699.453333pt;}
.y142{bottom:699.773333pt;}
.y2e6{bottom:699.933333pt;}
.y11c{bottom:700.573333pt;}
.y1f1{bottom:701.213333pt;}
.yb0{bottom:702.813333pt;}
.yd8{bottom:706.333333pt;}
.y305{bottom:708.733333pt;}
.y283{bottom:711.613333pt;}
.y6a{bottom:712.093333pt;}
.y1dc{bottom:715.453333pt;}
.yfa{bottom:715.773333pt;}
.y14f{bottom:715.933333pt;}
.y256{bottom:717.213333pt;}
.y141{bottom:717.693333pt;}
.y2e5{bottom:717.853333pt;}
.y11b{bottom:721.213333pt;}
.y76{bottom:721.693333pt;}
.y47{bottom:722.173333pt;}
.y2a7{bottom:722.813333pt;}
.yae{bottom:723.453333pt;}
.y8b{bottom:726.173333pt;}
.y226{bottom:727.933333pt;}
.y20e{bottom:728.093333pt;}
.yaf{bottom:728.733333pt;}
.y1eb{bottom:729.373333pt;}
.y282{bottom:729.533333pt;}
.y15e{bottom:732.640000pt;}
.y255{bottom:735.133333pt;}
.yd7{bottom:735.773333pt;}
.y21e{bottom:737.053333pt;}
.y1b{bottom:740.573333pt;}
.y69{bottom:740.733333pt;}
.y304{bottom:741.693333pt;}
.y14e{bottom:742.653333pt;}
.yad{bottom:744.093333pt;}
.y140{bottom:744.253333pt;}
.y46{bottom:745.693333pt;}
.y8a{bottom:746.653333pt;}
.y281{bottom:747.453333pt;}
.y11a{bottom:749.853333pt;}
.y2e4{bottom:750.813333pt;}
.y254{bottom:753.053333pt;}
.y2ca{bottom:754.173333pt;}
.y225{bottom:754.653333pt;}
.y21d{bottom:754.973333pt;}
.y2a6{bottom:755.293333pt;}
.yd6{bottom:756.413333pt;}
.y20d{bottom:756.573333pt;}
.y75{bottom:758.973333pt;}
.y1d4{bottom:759.933333pt;}
.y14d{bottom:760.573333pt;}
.y13f{bottom:762.173333pt;}
.yac{bottom:764.573333pt;}
.y280{bottom:765.373333pt;}
.y89{bottom:767.293333pt;}
.y45{bottom:768.893333pt;}
.y68{bottom:769.373333pt;}
.y119{bottom:770.333333pt;}
.y253{bottom:770.973333pt;}
.y2c9{bottom:772.093333pt;}
.y224{bottom:772.573333pt;}
.y2a5{bottom:773.213333pt;}
.y303{bottom:774.173333pt;}
.yd5{bottom:776.893333pt;}
.y1a{bottom:778.333333pt;}
.y14c{bottom:778.493333pt;}
.y21c{bottom:780.893333pt;}
.y27f{bottom:783.133333pt;}
.y2e3{bottom:783.293333pt;}
.yab{bottom:785.213333pt;}
.y88{bottom:787.933333pt;}
.y252{bottom:788.893333pt;}
.y2c8{bottom:790.013333pt;}
.y44{bottom:790.813333pt;}
.y118{bottom:790.973333pt;}
.y13e{bottom:791.613333pt;}
.y73{bottom:796.253333pt;}
.yd4{bottom:797.533333pt;}
.y67{bottom:798.013333pt;}
.y223{bottom:798.493333pt;}
.y21b{bottom:798.653333pt;}
.y2a4{bottom:799.933333pt;}
.y302{bottom:800.093333pt;}
.y27e{bottom:801.053333pt;}
.y14b{bottom:805.213333pt;}
.yaa{bottom:805.893333pt;}
.y2c7{bottom:807.973333pt;}
.y87{bottom:808.453333pt;}
.y2e2{bottom:809.253333pt;}
.y117{bottom:811.653333pt;}
.y19{bottom:811.813333pt;}
.y13d{bottom:812.133333pt;}
.y43{bottom:812.773333pt;}
.y20c{bottom:813.893333pt;}
.y251{bottom:814.693333pt;}
.y21a{bottom:816.613333pt;}
.y2a3{bottom:817.893333pt;}
.y301{bottom:818.053333pt;}
.y27d{bottom:819.013333pt;}
.y14a{bottom:823.173333pt;}
.y66{bottom:823.973333pt;}
.y222{bottom:824.453333pt;}
.yd3{bottom:826.213333pt;}
.ya9{bottom:826.373333pt;}
.y2df{bottom:831.813333pt;}
.y250{bottom:832.613333pt;}
.y72{bottom:833.573333pt;}
.y20b{bottom:834.373333pt;}
.y2c6{bottom:834.533333pt;}
.y42{bottom:834.693333pt;}
.y300{bottom:835.973333pt;}
.y86{bottom:837.093333pt;}
.y149{bottom:840.933333pt;}
.y219{bottom:842.533333pt;}
.y116{bottom:843.493333pt;}
.y2a2{bottom:844.453333pt;}
.y27c{bottom:844.933333pt;}
.y13c{bottom:845.093333pt;}
.yd2{bottom:846.693333pt;}
.y21f{bottom:847.013333pt;}
.y17{bottom:849.573333pt;}
.y24f{bottom:850.533333pt;}
.y2c5{bottom:852.453333pt;}
.ya8{bottom:855.013333pt;}
.y41{bottom:856.933333pt;}
.y85{bottom:857.733333pt;}
.y218{bottom:860.453333pt;}
.y2ff{bottom:861.733333pt;}
.y2a1{bottom:862.373333pt;}
.y27b{bottom:862.853333pt;}
.y65{bottom:863.493333pt;}
.yd1{bottom:867.333333pt;}
.y148{bottom:867.653333pt;}
.y2c4{bottom:870.373333pt;}
.y71{bottom:870.853333pt;}
.ya7{bottom:875.653333pt;}
.y115{bottom:875.973333pt;}
.y84{bottom:878.213333pt;}
.y2fe{bottom:879.653333pt;}
.y13b{bottom:880.293333pt;}
.y40{bottom:880.453333pt;}
.y27a{bottom:880.773333pt;}
.y24e{bottom:883.493333pt;}
.y147{bottom:885.573333pt;}
.y217{bottom:886.373333pt;}
.y16{bottom:887.493333pt;}
.yd0{bottom:887.973333pt;}
.y2c3{bottom:888.293333pt;}
.y2a0{bottom:889.093333pt;}
.ya6{bottom:896.133333pt;}
.y114{bottom:896.613333pt;}
.y279{bottom:898.693333pt;}
.y31b{bottom:900.933333pt;}
.y146{bottom:903.493333pt;}
.y3f{bottom:903.973333pt;}
.y216{bottom:904.293333pt;}
.y2fd{bottom:905.573333pt;}
.y13a{bottom:906.213333pt;}
.y64{bottom:906.373333pt;}
.y83{bottom:906.853333pt;}
.y29f{bottom:907.013333pt;}
.y6f{bottom:908.133333pt;}
.ycf{bottom:908.453333pt;}
.y2c2{bottom:915.013333pt;}
.y183{bottom:915.333333pt;}
.yef{bottom:915.493333pt;}
.y24d{bottom:915.973333pt;}
.y278{bottom:916.613333pt;}
.y2fc{bottom:923.493333pt;}
.y139{bottom:924.133333pt;}
.ya5{bottom:924.773333pt;}
.y113{bottom:925.093333pt;}
.y13{bottom:925.253333pt;}
.y31a{bottom:926.853333pt;}
.y82{bottom:927.493333pt;}
.y3e{bottom:928.133333pt;}
.yce{bottom:929.093333pt;}
.y145{bottom:930.213333pt;}
.y63{bottom:932.293333pt;}
.y2c1{bottom:932.933333pt;}
.y29e{bottom:933.733333pt;}
.y24c{bottom:933.893333pt;}
.yee{bottom:935.973333pt;}
.y2de{bottom:940.133333pt;}
.y2fb{bottom:941.413333pt;}
.y277{bottom:942.533333pt;}
.y1b0{bottom:943.013333pt;}
.y6e{bottom:945.253333pt;}
.ya4{bottom:945.413333pt;}
.y81{bottom:948.133333pt;}
.y62{bottom:950.213333pt;}
.y138{bottom:950.853333pt;}
.y29d{bottom:951.653333pt;}
.y24b{bottom:951.813333pt;}
.y112{bottom:954.533333pt;}
.y319{bottom:955.493333pt;}
.yed{bottom:956.613333pt;}
.y3d{bottom:959.013333pt;}
.y2fa{bottom:959.333333pt;}
.y276{bottom:960.453333pt;}
.ycd{bottom:962.213333pt;}
.y11{bottom:963.013333pt;}
.y1d3{bottom:965.573333pt;}
.ya3{bottom:966.053333pt;}
.y61{bottom:968.133333pt;}
.y80{bottom:968.613333pt;}
.y137{bottom:968.773333pt;}
.y1af{bottom:969.573333pt;}
.y24a{bottom:969.733333pt;}
.ycc{bottom:972.933333pt;}
.yec{bottom:977.253333pt;}
.y2c0{bottom:977.413333pt;}
.y275{bottom:978.213333pt;}
.y111{bottom:983.973333pt;}
.y318{bottom:984.133333pt;}
.y5{bottom:985.413333pt;}
.ycb{bottom:993.413333pt;}
.y136{bottom:995.333333pt;}
.y274{bottom:996.133333pt;}
.y10{bottom:999.973333pt;}
.y3c{bottom:1002.213333pt;}
.y6d{bottom:1002.533333pt;}
.y249{bottom:1005.093333pt;}
.y4{bottom:1006.053333pt;}
.y60{bottom:1007.653333pt;}
.yeb{bottom:1010.213333pt;}
.y110{bottom:1013.253333pt;}
.yca{bottom:1014.053333pt;}
.y31e{bottom:1032.800000pt;}
.y1{bottom:1061.440000pt;}
.h54{height:12.960000pt;}
.h4f{height:14.400000pt;}
.h52{height:16.320000pt;}
.h53{height:19.040000pt;}
.h27{height:24.320000pt;}
.h31{height:25.920000pt;}
.h9{height:26.880000pt;}
.h40{height:27.520000pt;}
.hb{height:28.480000pt;}
.h12{height:28.512000pt;}
.h11{height:28.640000pt;}
.h51{height:29.440000pt;}
.he{height:32.832000pt;}
.h4e{height:33.760000pt;}
.h20{height:34.374375pt;}
.h1c{height:36.480000pt;}
.h1e{height:36.512000pt;}
.h23{height:36.609375pt;}
.h1b{height:36.640000pt;}
.h1d{height:36.672000pt;}
.h1f{height:36.920625pt;}
.hc{height:36.960000pt;}
.hd{height:37.120000pt;}
.h2b{height:40.480000pt;}
.h30{height:40.512000pt;}
.h29{height:40.640000pt;}
.h50{height:42.649687pt;}
.h33{height:43.680000pt;}
.h43{height:43.712000pt;}
.h3c{height:43.840000pt;}
.h16{height:43.905937pt;}
.h2{height:44.907500pt;}
.h10{height:46.400000pt;}
.h14{height:46.560000pt;}
.h48{height:47.380000pt;}
.h4d{height:49.760000pt;}
.h21{height:52.834688pt;}
.h28{height:54.390938pt;}
.h2e{height:56.800000pt;}
.h2f{height:56.960000pt;}
.h36{height:57.792000pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h24{height:60.937500pt;}
.h38{height:61.600000pt;}
.h4c{height:61.760000pt;}
.h3a{height:61.792000pt;}
.h17{height:62.560000pt;}
.h6{height:63.656250pt;}
.h13{height:64.320000pt;}
.h15{height:65.440000pt;}
.h41{height:65.531250pt;}
.h42{height:66.560000pt;}
.h22{height:71.296875pt;}
.h2d{height:73.120000pt;}
.h2a{height:73.152000pt;}
.h19{height:76.671562pt;}
.h18{height:81.046875pt;}
.h7{height:83.232000pt;}
.h2c{height:89.472000pt;}
.h4a{height:91.406250pt;}
.h5{height:95.360000pt;}
.h47{height:95.484375pt;}
.h4b{height:95.680000pt;}
.h1a{height:101.765625pt;}
.h45{height:106.240000pt;}
.ha{height:111.515625pt;}
.hf{height:115.360000pt;}
.h49{height:132.234375pt;}
.h8{height:132.405000pt;}
.h46{height:142.202812pt;}
.h35{height:169.146667pt;}
.h3f{height:195.066667pt;}
.h3b{height:204.986667pt;}
.h32{height:234.426667pt;}
.h3d{height:244.826667pt;}
.h39{height:302.626667pt;}
.h3e{height:320.386667pt;}
.h34{height:334.306667pt;}
.h44{height:435.746667pt;}
.h37{height:467.586667pt;}
.h25{height:793.760000pt;}
.h26{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2a{width:21.440000pt;}
.w28{width:28.320000pt;}
.w19{width:44.192000pt;}
.w24{width:46.720000pt;}
.wd{width:67.680000pt;}
.w26{width:74.272000pt;}
.w1d{width:77.440000pt;}
.w2f{width:88.000000pt;}
.w31{width:88.032000pt;}
.w30{width:88.160000pt;}
.w2e{width:88.192000pt;}
.w2c{width:102.240000pt;}
.w1a{width:103.040000pt;}
.we{width:112.832000pt;}
.w29{width:132.192000pt;}
.w2d{width:135.066667pt;}
.w21{width:141.466667pt;}
.w9{width:149.786667pt;}
.w8{width:149.946667pt;}
.wa{width:150.266667pt;}
.wb{width:152.346667pt;}
.w6{width:152.826667pt;}
.w1e{width:160.986667pt;}
.w13{width:169.146667pt;}
.w1b{width:171.226667pt;}
.w2b{width:207.906667pt;}
.w1c{width:210.426667pt;}
.wf{width:210.906667pt;}
.w10{width:211.426667pt;}
.w5{width:224.866667pt;}
.w27{width:245.786667pt;}
.w12{width:313.666667pt;}
.w3{width:337.053333pt;}
.w4{width:431.293333pt;}
.w14{width:433.533333pt;}
.w7{width:451.293333pt;}
.wc{width:451.773333pt;}
.w22{width:462.493333pt;}
.w11{width:466.493333pt;}
.w25{width:509.693333pt;}
.w20{width:565.693333pt;}
.w1f{width:603.493333pt;}
.w23{width:604.773333pt;}
.w15{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w18{width:1122.559983pt;}
.w16{width:1122.560000pt;}
.w17{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x6{left:9.600000pt;}
.xd{left:10.720000pt;}
.x49{left:13.280000pt;}
.x16{left:14.560000pt;}
.x3e{left:18.752000pt;}
.x46{left:19.680000pt;}
.x15{left:20.960000pt;}
.x14{left:24.640000pt;}
.x52{left:26.106667pt;}
.x18{left:28.000000pt;}
.x1f{left:29.440000pt;}
.x17{left:30.400000pt;}
.x1c{left:37.280000pt;}
.xf{left:41.920000pt;}
.x11{left:45.920000pt;}
.x4f{left:51.706667pt;}
.x1a{left:52.800000pt;}
.x22{left:60.800000pt;}
.x1d{left:71.360000pt;}
.x50{left:74.920000pt;}
.x13{left:76.680000pt;}
.x23{left:83.360000pt;}
.x19{left:85.320000pt;}
.x54{left:88.512000pt;}
.x1e{left:90.760000pt;}
.x4{left:94.591988pt;}
.x1b{left:97.960000pt;}
.x2e{left:98.911988pt;}
.x4e{left:104.794667pt;}
.x3f{left:106.714667pt;}
.x43{left:108.474667pt;}
.x21{left:113.960000pt;}
.x2a{left:118.591988pt;}
.x25{left:132.351988pt;}
.x2c{left:136.826655pt;}
.x38{left:140.026667pt;}
.x2b{left:142.586655pt;}
.x45{left:146.586655pt;}
.xe{left:162.906667pt;}
.x53{left:184.186667pt;}
.x47{left:205.800000pt;}
.x44{left:236.866667pt;}
.x3{left:241.346655pt;}
.x29{left:242.306655pt;}
.x39{left:243.706667pt;}
.xa{left:248.066667pt;}
.x28{left:265.186667pt;}
.x36{left:268.546655pt;}
.x10{left:276.386667pt;}
.x2d{left:286.626655pt;}
.x30{left:288.066655pt;}
.x33{left:290.946655pt;}
.x41{left:296.706655pt;}
.x42{left:307.906655pt;}
.x24{left:327.906655pt;}
.x4a{left:340.386667pt;}
.x26{left:343.266655pt;}
.x27{left:346.946655pt;}
.x8{left:357.826667pt;}
.x7{left:359.266667pt;}
.x5{left:364.066667pt;}
.x4b{left:368.706667pt;}
.x55{left:370.786667pt;}
.x51{left:378.146667pt;}
.x34{left:396.893322pt;}
.xb{left:398.653333pt;}
.x3a{left:415.586667pt;}
.x20{left:447.453333pt;}
.x56{left:465.693333pt;}
.x12{left:487.933333pt;}
.x4c{left:500.893333pt;}
.x4d{left:522.333333pt;}
.xc{left:549.093333pt;}
.x1{left:607.973322pt;}
.x3b{left:626.653333pt;}
.x48{left:652.613333pt;}
.x2f{left:660.933322pt;}
.x40{left:665.893322pt;}
.x31{left:684.453322pt;}
.x2{left:691.839988pt;}
.x32{left:692.959988pt;}
.x3c{left:704.893333pt;}
.x35{left:710.719988pt;}
.x3d{left:866.533333pt;}
.x37{left:1013.279983pt;}
}




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