
    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_65a0a85bdfce05b4c10f6d78.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_009fedc932d8bf2f07145b3b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ebd640153c0b4f6bfff797c4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8d0fc5e0543680e3e0d2914e.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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_0f94b1d09f638cde243f41d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_f7873dda7bf798d3ea2fffc5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_153ae2d72f0ea6aeae62da7d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bdfdc5091d8b0fcd4207f609.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.119629;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.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);}
.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);}
.v1{vertical-align:-3.132000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls27{letter-spacing:-1.044000px;}
.ls12{letter-spacing:-0.709920px;}
.ls5{letter-spacing:-0.375840px;}
.ls29{letter-spacing:-0.365400px;}
.ls13{letter-spacing:-0.363312px;}
.ls19{letter-spacing:-0.334080px;}
.ls9{letter-spacing:-0.302760px;}
.ls11{letter-spacing:-0.104400px;}
.ls18{letter-spacing:-0.020880px;}
.ls6{letter-spacing:-0.015660px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.020880px;}
.ls2a{letter-spacing:0.104400px;}
.lsf{letter-spacing:0.156600px;}
.ls15{letter-spacing:0.163860px;}
.ls10{letter-spacing:0.208800px;}
.lsc{letter-spacing:0.334080px;}
.ls1f{letter-spacing:0.349740px;}
.ls1c{letter-spacing:0.365400px;}
.ls1e{letter-spacing:0.375840px;}
.ls17{letter-spacing:0.416220px;}
.ls1a{letter-spacing:0.417600px;}
.lsb{letter-spacing:0.438480px;}
.lse{letter-spacing:0.443700px;}
.ls16{letter-spacing:0.459720px;}
.lsd{letter-spacing:0.511560px;}
.ls1{letter-spacing:0.663420px;}
.ls1b{letter-spacing:0.668160px;}
.ls2{letter-spacing:0.681960px;}
.ls25{letter-spacing:0.709920px;}
.lsa{letter-spacing:0.741240px;}
.ls2b{letter-spacing:0.939600px;}
.ls14{letter-spacing:0.947160px;}
.ls22{letter-spacing:2.422080px;}
.ls4{letter-spacing:2.474280px;}
.ls24{letter-spacing:4.510080px;}
.ls28{letter-spacing:9.730080px;}
.ls7{letter-spacing:13.070880px;}
.ls8{letter-spacing:13.123080px;}
.ls23{letter-spacing:21.161880px;}
.ls26{letter-spacing:26.434080px;}
.ls1d{letter-spacing:46.217880px;}
.ls3{letter-spacing:49.558680px;}
.ls21{letter-spacing:734.553180px;}
.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;}
}
.ws1a{word-spacing:-57.420000px;}
.ws17{word-spacing:-18.123840px;}
.ws15{word-spacing:-18.082080px;}
.wsb{word-spacing:-17.748000px;}
.ws16{word-spacing:-17.434800px;}
.ws3{word-spacing:-17.413920px;}
.ws18{word-spacing:-17.393040px;}
.ws19{word-spacing:-17.079840px;}
.ws4{word-spacing:-17.038080px;}
.ws7{word-spacing:-16.704000px;}
.ws8{word-spacing:-16.401240px;}
.ws9{word-spacing:-15.962760px;}
.ws6{word-spacing:-15.660000px;}
.wse{word-spacing:-14.720400px;}
.wsf{word-spacing:-14.668200px;}
.wsc{word-spacing:-14.511600px;}
.wsd{word-spacing:-14.407200px;}
.ws1c{word-spacing:-14.146200px;}
.wsa{word-spacing:-13.572000px;}
.ws5{word-spacing:-13.044780px;}
.ws14{word-spacing:-13.039560px;}
.ws1b{word-spacing:-11.609280px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:0.409680px;}
.ws13{word-spacing:1.040520px;}
.ws12{word-spacing:1.149240px;}
.ws1{word-spacing:1.658640px;}
.ws2{word-spacing:1.704960px;}
.ws10{word-spacing:2.367840px;}
._14{margin-left:-14.469840px;}
._1a{margin-left:-11.995560px;}
._15{margin-left:-10.377360px;}
._17{margin-left:-9.176760px;}
._19{margin-left:-7.929180px;}
._16{margin-left:-6.248340px;}
._1b{margin-left:-5.178240px;}
._18{margin-left:-3.674880px;}
._5{margin-left:-2.505600px;}
._1{margin-left:-1.315440px;}
._0{width:1.315440px;}
._2{width:2.385540px;}
._8{width:4.071600px;}
._6{width:5.888160px;}
._7{width:6.926940px;}
._c{width:8.017920px;}
._b{width:9.082800px;}
._11{width:10.774080px;}
._27{width:12.026880px;}
._e{width:13.279680px;}
._d{width:14.720400px;}
._a{width:16.035840px;}
._28{width:17.105940px;}
._29{width:18.337860px;}
._9{width:19.507140px;}
._13{width:21.422880px;}
._12{width:22.487760px;}
._2a{width:23.803200px;}
._1c{width:25.029900px;}
._1e{width:26.559360px;}
._1d{width:27.624240px;}
._1f{width:28.939680px;}
._24{width:29.941920px;}
._23{width:31.168620px;}
._20{width:32.572800px;}
._2c{width:33.888240px;}
._22{width:35.015760px;}
._21{width:36.080640px;}
._26{width:37.918080px;}
._35{width:40.590720px;}
._34{width:41.906160px;}
._2b{width:45.038160px;}
._25{width:46.217880px;}
._2f{width:47.314080px;}
._3{width:48.608640px;}
._4{width:49.824900px;}
._10{width:51.427440px;}
._37{width:53.557200px;}
._2d{width:54.705600px;}
._30{width:60.995700px;}
._33{width:79.944300px;}
._32{width:84.083760px;}
._31{width:85.216500px;}
._36{width:96.653520px;}
._2e{width:125.269560px;}
._3b{width:140.324040px;}
._3a{width:141.441120px;}
._39{width:166.121280px;}
._3c{width:196.752240px;}
._f{width:734.553180px;}
._38{width:793.836720px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(46,116,181);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc5{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:34.452000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:46.980000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:52.200000px;}
.fs3{font-size:57.420000px;}
.fs2{font-size:62.640000px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.381625px;}
.y171{bottom:2.871000px;}
.y2cd{bottom:2.910150px;}
.y163{bottom:3.132000px;}
.y179{bottom:3.158100px;}
.y161{bottom:3.393000px;}
.y2d5{bottom:3.432150px;}
.yd1{bottom:5.206950px;}
.yb6{bottom:5.220000px;}
.ydc{bottom:5.233050px;}
.yda{bottom:5.259150px;}
.y10c{bottom:5.481000px;}
.yb5{bottom:5.494050px;}
.y208{bottom:5.742000px;}
.y20a{bottom:6.003000px;}
.y292{bottom:8.874000px;}
.y21f{bottom:13.297950px;}
.yb3{bottom:13.311000px;}
.y22a{bottom:13.572000px;}
.y257{bottom:13.833000px;}
.y24e{bottom:14.094000px;}
.y24a{bottom:14.355000px;}
.y293{bottom:14.616000px;}
.y26a{bottom:14.642100px;}
.y26d{bottom:14.877000px;}
.y251{bottom:15.907950px;}
.y270{bottom:16.182000px;}
.y289{bottom:16.443000px;}
.y164{bottom:18.009000px;}
.y167{bottom:18.035100px;}
.y180{bottom:18.048150px;}
.y160{bottom:18.270000px;}
.y166{bottom:18.296100px;}
.y17e{bottom:18.309150px;}
.yd0{bottom:22.432950px;}
.yb9{bottom:22.446000px;}
.y25d{bottom:22.459050px;}
.y269{bottom:22.472100px;}
.yd9{bottom:22.485150px;}
.ybb{bottom:22.707000px;}
.yb8{bottom:22.720050px;}
.ycc{bottom:22.733100px;}
.y118{bottom:22.746150px;}
.yc4{bottom:22.968000px;}
.ycb{bottom:22.994100px;}
.y117{bottom:23.007150px;}
.y26f{bottom:31.842000px;}
.y28a{bottom:32.103000px;}
.y288{bottom:32.129100px;}
.y229{bottom:32.350950px;}
.y21e{bottom:32.364000px;}
.y17b{bottom:32.886000px;}
.y17f{bottom:32.925150px;}
.y175{bottom:33.147000px;}
.y178{bottom:33.173100px;}
.y17d{bottom:33.186150px;}
.y174{bottom:33.408000px;}
.y177{bottom:33.434100px;}
.y27c{bottom:33.447150px;}
.y278{bottom:33.669000px;}
.y273{bottom:33.695100px;}
.y254{bottom:34.713000px;}
.y295{bottom:37.062000px;}
.yc1{bottom:39.665475px;}
.yd5{bottom:39.672000px;}
.y115{bottom:39.698100px;}
.yd8{bottom:39.711150px;}
.ycf{bottom:39.933000px;}
.yc0{bottom:39.939525px;}
.yd4{bottom:39.959100px;}
.yc7{bottom:39.972150px;}
.yce{bottom:40.194000px;}
.yc6{bottom:40.233150px;}
.y275{bottom:43.587000px;}
.y2c7{bottom:48.024000px;}
.y2dc{bottom:48.050100px;}
.y2d6{bottom:48.063150px;}
.y2c6{bottom:48.285000px;}
.y2da{bottom:48.311100px;}
.y2d4{bottom:48.324150px;}
.y5{bottom:48.578625px;}
.y102{bottom:48.839625px;}
.y281{bottom:49.094100px;}
.y27b{bottom:49.107150px;}
.y277{bottom:49.329000px;}
.y272{bottom:49.355100px;}
.y217{bottom:51.142950px;}
.y228{bottom:51.403950px;}
.y21d{bottom:51.417000px;}
.y25a{bottom:51.678000px;}
.y255{bottom:55.332000px;}
.y253{bottom:55.593000px;}
.ye2{bottom:56.898000px;}
.y114{bottom:56.924100px;}
.y27a{bottom:56.937150px;}
.ye1{bottom:57.159000px;}
.y10b{bottom:57.185100px;}
.y111{bottom:57.198150px;}
.y108{bottom:57.446100px;}
.y10f{bottom:57.459150px;}
.y100{bottom:58.050000px;}
.y2d0{bottom:62.901000px;}
.y2e5{bottom:62.940150px;}
.y2cf{bottom:63.162000px;}
.y2db{bottom:63.188100px;}
.y2e2{bottom:63.201150px;}
.y2df{bottom:63.423000px;}
.y2d9{bottom:63.449100px;}
.y2e9{bottom:63.462150px;}
.y280{bottom:66.320100px;}
.y21c{bottom:70.209000px;}
.y227{bottom:70.470000px;}
.y216{bottom:71.239950px;}
.y113{bottom:74.150100px;}
.y10a{bottom:74.411100px;}
.y110{bottom:74.424150px;}
.y107{bottom:74.672100px;}
.y10e{bottom:74.685150px;}
.y2e1{bottom:78.078150px;}
.y1{bottom:82.080000px;}
.y226{bottom:89.509950px;}
.y29f{bottom:90.071100px;}
.y215{bottom:90.292950px;}
.y22c{bottom:91.350000px;}
.y109{bottom:91.637100px;}
.y106{bottom:91.898100px;}
.y95{bottom:98.690625px;}
.y246{bottom:99.734625px;}
.y203{bottom:99.995625px;}
.y50{bottom:100.256625px;}
.y1e7{bottom:106.520625px;}
.y1da{bottom:106.781625px;}
.y225{bottom:108.341100px;}
.y1be{bottom:108.863100px;}
.y21b{bottom:109.359000px;}
.y214{bottom:110.128950px;}
.y22b{bottom:110.429100px;}
.y27e{bottom:116.693100px;}
.y1fe{bottom:119.048625px;}
.y2bf{bottom:120.092625px;}
.y233{bottom:122.180625px;}
.y1fa{bottom:122.441625px;}
.y4f{bottom:124.529625px;}
.y94{bottom:125.834625px;}
.y202{bottom:126.878625px;}
.y224{bottom:127.394100px;}
.y21a{bottom:128.177100px;}
.y19b{bottom:128.705625px;}
.y213{bottom:129.221100px;}
.y1e6{bottom:133.658100px;}
.y1d9{bottom:134.193150px;}
.y1d3{bottom:144.894150px;}
.y134{bottom:145.938150px;}
.yeb{bottom:146.186100px;}
.y2be{bottom:147.008250px;}
.y219{bottom:147.230100px;}
.y4e{bottom:147.269250px;}
.y212{bottom:148.274100px;}
.y232{bottom:149.357250px;}
.y82{bottom:149.618250px;}
.y3{bottom:150.000000px;}
.y93{bottom:152.750250px;}
.y201{bottom:153.794250px;}
.y19a{bottom:155.621250px;}
.y285{bottom:159.236100px;}
.y1e5{bottom:160.580250px;}
.y218{bottom:166.283100px;}
.y211{bottom:167.327100px;}
.y21{bottom:167.888250px;}
.y1d8{bottom:168.932250px;}
.y4d{bottom:170.237250px;}
.y1d2{bottom:171.803250px;}
.yea{bottom:173.108250px;}
.y2bd{bottom:174.152250px;}
.y231{bottom:176.240250px;}
.y81{bottom:177.023250px;}
.y2ce{bottom:178.958250px;}
.y92{bottom:179.894250px;}
.y13e{bottom:180.938250px;}
.y199{bottom:182.765250px;}
.y1ac{bottom:183.287250px;}
.ybf{bottom:184.163625px;}
.y2ea{bottom:184.178250px;}
.y210{bottom:186.119100px;}
.y223{bottom:186.380100px;}
.y2de{bottom:187.832250px;}
.y1e4{bottom:187.985250px;}
.y1f9{bottom:192.161250px;}
.y20{bottom:195.032250px;}
.y4c{bottom:195.815250px;}
.y1d7{bottom:196.076250px;}
.y2b{bottom:198.947250px;}
.y133{bottom:199.991250px;}
.ye9{bottom:200.252250px;}
.y230{bottom:203.384250px;}
.y80{bottom:203.906250px;}
.y20f{bottom:205.172100px;}
.y274{bottom:206.624250px;}
.y91{bottom:206.777250px;}
.y13d{bottom:207.821250px;}
.y2bc{bottom:208.865250px;}
.y28b{bottom:209.165400px;}
.y29b{bottom:209.495250px;}
.y198{bottom:209.648250px;}
.y1ab{bottom:210.692250px;}
.y170{bottom:214.715250px;}
.y1f8{bottom:219.305250px;}
.y4b{bottom:221.132250px;}
.y1f{bottom:221.915250px;}
.y1ba{bottom:222.698250px;}
.y20e{bottom:223.964100px;}
.y222{bottom:224.225100px;}
.y2e8{bottom:225.677250px;}
.y2a{bottom:225.830250px;}
.ye8{bottom:227.135250px;}
.y263{bottom:230.132250px;}
.y22f{bottom:230.267250px;}
.y1d6{bottom:230.528250px;}
.y7f{bottom:230.789250px;}
.y132{bottom:232.094250px;}
.y15e{bottom:233.399250px;}
.y13c{bottom:234.965250px;}
.y2bb{bottom:236.009250px;}
.y197{bottom:236.792250px;}
.y1aa{bottom:239.663250px;}
.y2f1{bottom:242.312400px;}
.y20c{bottom:244.061100px;}
.y20d{bottom:244.322100px;}
.y221{bottom:244.583100px;}
.y1f7{bottom:246.449250px;}
.y116{bottom:246.557250px;}
.y4a{bottom:246.710250px;}
.ybe{bottom:247.358250px;}
.y90{bottom:248.015250px;}
.y1b9{bottom:249.842250px;}
.y29{bottom:252.974250px;}
.ye7{bottom:254.018250px;}
.y16f{bottom:255.953250px;}
.ye0{bottom:257.015250px;}
.y1e{bottom:257.150250px;}
.y22e{bottom:257.411250px;}
.y7e{bottom:257.672250px;}
.y131{bottom:258.977250px;}
.y1e3{bottom:260.021250px;}
.y15d{bottom:260.543250px;}
.y13b{bottom:261.848250px;}
.y200{bottom:262.109250px;}
.y196{bottom:263.675250px;}
.y2cc{bottom:265.349250px;}
.y276{bottom:266.171400px;}
.y262{bottom:267.194250px;}
.y49{bottom:269.678250px;}
.y2ba{bottom:270.722250px;}
.y1f6{bottom:273.332250px;}
.y2dd{bottom:274.262400px;}
.y8f{bottom:276.725250px;}
.y1d1{bottom:279.857250px;}
.ye6{bottom:281.162250px;}
.y16e{bottom:282.614400px;}
.y28{bottom:284.033250px;}
.y7d{bottom:284.555250px;}
.y284{bottom:285.746400px;}
.y130{bottom:286.121250px;}
.y29a{bottom:286.268400px;}
.y1e2{bottom:287.165250px;}
.y15c{bottom:287.426250px;}
.y13a{bottom:288.992250px;}
.y1d{bottom:291.602250px;}
.y22d{bottom:292.385250px;}
.y48{bottom:292.646250px;}
.ybd{bottom:293.294250px;}
.y2b9{bottom:297.905400px;}
.y195{bottom:298.688400px;}
.y1f5{bottom:300.254400px;}
.y1b8{bottom:303.908400px;}
.y261{bottom:304.256250px;}
.y1d0{bottom:307.027350px;}
.ye5{bottom:308.071350px;}
.y7c{bottom:311.725350px;}
.y2e7{bottom:312.107400px;}
.y12f{bottom:313.043400px;}
.y1e1{bottom:314.335350px;}
.y47{bottom:315.379350px;}
.y139{bottom:315.914400px;}
.y1c{bottom:318.772350px;}
.y299{bottom:319.154400px;}
.y2f0{bottom:319.415400px;}
.y2cb{bottom:321.764400px;}
.y15b{bottom:322.426350px;}
.y16d{bottom:323.852400px;}
.y1f4{bottom:327.659400px;}
.y1b7{bottom:330.778350px;}
.y2b8{bottom:332.618400px;}
.y194{bottom:333.388350px;}
.y1cf{bottom:333.923400px;}
.yac{bottom:335.215350px;}
.y1fd{bottom:335.489400px;}
.ydf{bottom:337.403250px;}
.y46{bottom:338.360400px;}
.y7b{bottom:338.621400px;}
.ybc{bottom:339.230250px;}
.y12e{bottom:340.174350px;}
.y1e0{bottom:340.957350px;}
.y260{bottom:341.318250px;}
.y26c{bottom:342.905400px;}
.y138{bottom:343.058400px;}
.y2c1{bottom:343.306350px;}
.y112{bottom:344.471400px;}
.y287{bottom:345.254400px;}
.y1b{bottom:345.668400px;}
.y2d8{bottom:345.776400px;}
.y245{bottom:349.048350px;}
.y15a{bottom:350.353350px;}
.y1f3{bottom:354.268350px;}
.y45{bottom:357.413400px;}
.y1b6{bottom:357.922350px;}
.y2b7{bottom:359.749350px;}
.y193{bottom:360.284400px;}
.y2ef{bottom:360.914400px;}
.y1ce{bottom:361.054350px;}
.yab{bottom:362.098350px;}
.y16c{bottom:365.351400px;}
.y7a{bottom:365.752350px;}
.y12d{bottom:367.057350px;}
.y1df{bottom:368.114400px;}
.y137{bottom:369.928350px;}
.y2c0{bottom:372.029400px;}
.y1a{bottom:372.799350px;}
.y2ca{bottom:378.166500px;}
.y25f{bottom:378.406350px;}
.y159{bottom:378.554400px;}
.y298{bottom:378.688500px;}
.y44{bottom:380.368350px;}
.y1f2{bottom:381.412350px;}
.yde{bottom:383.378400px;}
.y244{bottom:383.774400px;}
.y1b5{bottom:384.818400px;}
.yba{bottom:385.192350px;}
.y192{bottom:387.428400px;}
.y1cd{bottom:387.937350px;}
.yaa{bottom:389.242350px;}
.y79{bottom:392.648400px;}
.y12c{bottom:394.214400px;}
.y2b6{bottom:394.462350px;}
.y1de{bottom:394.984350px;}
.y136{bottom:397.085400px;}
.y2e6{bottom:398.785500px;}
.y27{bottom:399.682350px;}
.y43{bottom:403.088400px;}
.y2c9{bottom:404.788500px;}
.y286{bottom:405.049500px;}
.y158{bottom:406.729350px;}
.y16b{bottom:406.876500px;}
.y19{bottom:407.773350px;}
.y1f1{bottom:408.308400px;}
.y243{bottom:410.918400px;}
.y191{bottom:414.298350px;}
.y1cc{bottom:415.094400px;}
.y25e{bottom:415.468350px;}
.ya9{bottom:416.138400px;}
.y220{bottom:418.613400px;}
.y78{bottom:419.779350px;}
.y271{bottom:419.926500px;}
.y1b4{bottom:420.053400px;}
.y297{bottom:420.970500px;}
.y12b{bottom:421.084350px;}
.y181{bottom:421.231500px;}
.y1dd{bottom:422.128350px;}
.y135{bottom:423.968400px;}
.y42{bottom:426.043350px;}
.ydd{bottom:429.301350px;}
.y2b5{bottom:429.449400px;}
.yb7{bottom:431.128350px;}
.y2d7{bottom:432.193500px;}
.y157{bottom:434.656350px;}
.y26{bottom:434.917350px;}
.y1f0{bottom:435.439350px;}
.y242{bottom:437.788350px;}
.y1cb{bottom:442.003500px;}
.y10d{bottom:442.111500px;}
.y18{bottom:442.525500px;}
.ya8{bottom:443.308500px;}
.y1fc{bottom:443.569500px;}
.y77{bottom:446.701500px;}
.y12a{bottom:448.267500px;}
.y16a{bottom:448.375500px;}
.y2a2{bottom:449.089650px;}
.y1dc{bottom:449.311500px;}
.y190{bottom:449.572500px;}
.yff{bottom:451.138500px;}
.y41{bottom:451.660500px;}
.y25c{bottom:452.269350px;}
.y1b3{bottom:454.531500px;}
.y2e4{bottom:455.161500px;}
.y2b4{bottom:456.358500px;}
.y2c8{bottom:461.164500px;}
.y1ef{bottom:462.622500px;}
.y17c{bottom:462.730500px;}
.y156{bottom:462.883500px;}
.y296{bottom:463.252500px;}
.y283{bottom:464.557500px;}
.y241{bottom:464.971500px;}
.y1ca{bottom:469.147500px;}
.y17{bottom:469.408500px;}
.ya7{bottom:470.191500px;}
.ye4{bottom:470.452500px;}
.y2d3{bottom:473.692500px;}
.y76{bottom:473.845500px;}
.yb1{bottom:475.150500px;}
.ydb{bottom:475.237350px;}
.y129{bottom:476.194500px;}
.y40{bottom:476.977500px;}
.yb4{bottom:477.064350px;}
.yfe{bottom:478.021500px;}
.y26e{bottom:479.473650px;}
.y1b2{bottom:481.675500px;}
.y18f{bottom:484.024500px;}
.y291{bottom:488.347650px;}
.y2ee{bottom:488.869650px;}
.y1ee{bottom:489.505500px;}
.y282{bottom:489.639600px;}
.y169{bottom:489.652650px;}
.y155{bottom:490.810500px;}
.y2b3{bottom:491.332500px;}
.y240{bottom:492.898500px;}
.y1c9{bottom:496.030500px;}
.y25{bottom:496.552500px;}
.ya6{bottom:497.335500px;}
.ye3{bottom:497.596500px;}
.y25b{bottom:497.683350px;}
.y3f{bottom:499.945500px;}
.y75{bottom:500.728500px;}
.y128{bottom:503.338500px;}
.y16{bottom:504.643500px;}
.yfd{bottom:505.165500px;}
.yb2{bottom:505.774350px;}
.yb0{bottom:507.514500px;}
.y1b1{bottom:508.819500px;}
.y18e{bottom:511.168500px;}
.y1ed{bottom:516.388500px;}
.y2c5{bottom:517.579650px;}
.y154{bottom:517.954500px;}
.y2b2{bottom:518.215500px;}
.y17a{bottom:519.145650px;}
.y23f{bottom:520.042500px;}
.yd7{bottom:521.173350px;}
.y3e{bottom:522.913500px;}
.y1c8{bottom:523.174500px;}
.ya5{bottom:524.218500px;}
.y29e{bottom:525.670650px;}
.y74{bottom:527.872500px;}
.y127{bottom:530.221500px;}
.y168{bottom:531.151650px;}
.y24{bottom:531.526500px;}
.y27f{bottom:531.934650px;}
.yfc{bottom:532.048500px;}
.y149{bottom:532.831500px;}
.y259{bottom:534.784500px;}
.yaf{bottom:535.180500px;}
.y1a3{bottom:535.702500px;}
.y18d{bottom:538.051500px;}
.y26b{bottom:538.981650px;}
.y15{bottom:539.095500px;}
.y105{bottom:539.764650px;}
.y2e3{bottom:541.591650px;}
.y1d5{bottom:543.532500px;}
.y153{bottom:544.837500px;}
.y294{bottom:545.245650px;}
.y3d{bottom:545.881500px;}
.y23e{bottom:546.925500px;}
.y1c7{bottom:550.057500px;}
.ya4{bottom:551.362500px;}
.y1ec{bottom:551.623500px;}
.yae{bottom:552.406500px;}
.y2b1{bottom:553.189500px;}
.y73{bottom:554.755500px;}
.y126{bottom:557.365500px;}
.yfb{bottom:559.192500px;}
.y206{bottom:559.453500px;}
.y1a2{bottom:562.585500px;}
.y1b0{bottom:562.846500px;}
.y268{bottom:564.037650px;}
.y60{bottom:564.934500px;}
.y14{bottom:566.239500px;}
.y148{bottom:567.544500px;}
.y2a1{bottom:567.952650px;}
.y1d4{bottom:570.415500px;}
.y3c{bottom:571.198500px;}
.y152{bottom:571.981500px;}
.y165{bottom:572.650650px;}
.y6b{bottom:573.547500px;}
.y23d{bottom:574.069500px;}
.y2ed{bottom:575.260650px;}
.y176{bottom:575.521650px;}
.y1c6{bottom:576.940500px;}
.ya3{bottom:578.245500px;}
.y1fb{bottom:578.506500px;}
.y2b0{bottom:580.072500px;}
.yad{bottom:581.377500px;}
.y72{bottom:581.899500px;}
.y125{bottom:584.248500px;}
.yd6{bottom:584.374500px;}
.yfa{bottom:586.075500px;}
.y267{bottom:589.119750px;}
.y1a1{bottom:589.755600px;}
.y5f{bottom:590.277600px;}
.y13{bottom:593.148600px;}
.y3b{bottom:594.205650px;}
.y147{bottom:594.727650px;}
.y290{bottom:597.210750px;}
.y1a9{bottom:597.585600px;}
.y23c{bottom:600.978600px;}
.y2d2{bottom:601.647750px;}
.y265{bottom:603.366750px;}
.y1c5{bottom:604.110600px;}
.ya2{bottom:605.415600px;}
.y6a{bottom:608.299650px;}
.y71{bottom:608.808600px;}
.y258{bottom:609.691500px;}
.y2a0{bottom:610.260750px;}
.y2c3{bottom:611.196750px;}
.y124{bottom:611.418600px;}
.yf9{bottom:613.245600px;}
.y266{bottom:613.914750px;}
.y162{bottom:614.175750px;}
.y5e{bottom:614.550600px;}
.y2af{bottom:615.085650px;}
.y1a0{bottom:616.638600px;}
.y2ec{bottom:616.785750px;}
.y1af{bottom:616.899600px;}
.y3a{bottom:619.770600px;}
.y23{bottom:620.292600px;}
.y28f{bottom:622.266750px;}
.y146{bottom:622.654650px;}
.y1a8{bottom:624.468600px;}
.y2c4{bottom:625.659750px;}
.y27d{bottom:625.920750px;}
.y2e0{bottom:628.008750px;}
.y23b{bottom:628.135650px;}
.y12{bottom:628.383600px;}
.yd3{bottom:630.310500px;}
.y1c4{bottom:630.993600px;}
.y173{bottom:631.923750px;}
.ya1{bottom:632.298600px;}
.y29d{bottom:635.316750px;}
.y70{bottom:635.952600px;}
.y264{bottom:636.030900px;}
.y123{bottom:638.314650px;}
.y5d{bottom:638.575650px;}
.yf8{bottom:640.128600px;}
.y1ff{bottom:640.389600px;}
.y8e{bottom:641.707650px;}
.y2ae{bottom:641.955600px;}
.y39{bottom:642.738600px;}
.y69{bottom:643.260600px;}
.y19f{bottom:643.782600px;}
.y2c2{bottom:643.860900px;}
.y103{bottom:646.209900px;}
.y256{bottom:646.753500px;}
.y18c{bottom:647.175600px;}
.y28e{bottom:647.322750px;}
.y145{bottom:650.829600px;}
.y279{bottom:650.976750px;}
.y1a7{bottom:651.625650px;}
.y28c{bottom:654.039900px;}
.y104{bottom:654.891750px;}
.y23a{bottom:655.005600px;}
.y22{bottom:655.279650px;}
.y15f{bottom:655.413750px;}
.y1c3{bottom:658.137600px;}
.ya0{bottom:659.442600px;}
.y11{bottom:662.835600px;}
.y38{bottom:665.445600px;}
.yf7{bottom:667.272600px;}
.y1eb{bottom:667.533600px;}
.y29c{bottom:668.202750px;}
.y8d{bottom:668.577600px;}
.y151{bottom:669.634650px;}
.y19e{bottom:670.665600px;}
.y28d{bottom:672.378750px;}
.y2d1{bottom:673.161750px;}
.y18b{bottom:674.319600px;}
.y2ad{bottom:676.929600px;}
.y144{bottom:677.712600px;}
.y68{bottom:677.973600px;}
.y1a6{bottom:678.495600px;}
.y239{bottom:683.454600px;}
.y252{bottom:683.841600px;}
.y1c2{bottom:685.020600px;}
.y9f{bottom:686.325600px;}
.y5c{bottom:687.121650px;}
.y2eb{bottom:688.077900px;}
.y37{bottom:688.426650px;}
.y172{bottom:688.599900px;}
.y10{bottom:689.979600px;}
.y122{bottom:692.328600px;}
.yd2{bottom:693.498600px;}
.yf6{bottom:694.155600px;}
.y1ea{bottom:694.429650px;}
.y8c{bottom:695.734650px;}
.y20b{bottom:695.860650px;}
.y150{bottom:696.765600px;}
.y19d{bottom:697.809600px;}
.y18a{bottom:701.202600px;}
.y2ac{bottom:703.812600px;}
.y1a5{bottom:705.639600px;}
.y143{bottom:705.900600px;}
.y238{bottom:710.350650px;}
.y5b{bottom:711.394650px;}
.y1c1{bottom:712.164600px;}
.y67{bottom:712.947600px;}
.y9e{bottom:713.469600px;}
.y36{bottom:714.004650px;}
.yf{bottom:716.862600px;}
.y101{bottom:720.072900px;}
.y121{bottom:720.529650px;}
.yf5{bottom:721.299600px;}
.y8b{bottom:722.604600px;}
.y14f{bottom:724.692600px;}
.y189{bottom:728.359650px;}
.y1a4{bottom:732.522600px;}
.y142{bottom:734.101650px;}
.y5a{bottom:735.432750px;}
.y237{bottom:737.520750px;}
.y2ab{bottom:738.825750px;}
.y1c0{bottom:739.086750px;}
.ycd{bottom:739.447650px;}
.y35{bottom:739.608750px;}
.y9d{bottom:740.391750px;}
.ye{bottom:744.045750px;}
.y120{bottom:747.438750px;}
.y66{bottom:747.699750px;}
.yf4{bottom:748.221750px;}
.y205{bottom:748.482750px;}
.y14e{bottom:751.875750px;}
.y6f{bottom:752.136750px;}
.y188{bottom:755.268750px;}
.y8a{bottom:757.878750px;}
.y59{bottom:759.705750px;}
.y250{bottom:762.154650px;}
.y236{bottom:764.142750px;}
.y34{bottom:764.925750px;}
.y2aa{bottom:765.708750px;}
.y9c{bottom:767.535750px;}
.y141{bottom:770.145750px;}
.y1bf{bottom:774.060750px;}
.y11f{bottom:774.582750px;}
.yf3{bottom:775.365750px;}
.y1e9{bottom:775.626750px;}
.y14d{bottom:778.758750px;}
.yd{bottom:779.019750px;}
.y187{bottom:782.412750px;}
.y65{bottom:782.673750px;}
.y58{bottom:783.978750px;}
.y6e{bottom:786.588750px;}
.y1ae{bottom:786.849750px;}
.y33{bottom:790.503750px;}
.y89{bottom:792.330750px;}
.y9b{bottom:794.418750px;}
.y234{bottom:794.679750px;}
.y2a9{bottom:800.682750px;}
.y24f{bottom:801.291600px;}
.yf2{bottom:802.248750px;}
.yca{bottom:802.609650px;}
.y140{bottom:804.858750px;}
.y14c{bottom:805.902750px;}
.y57{bottom:807.990750px;}
.y186{bottom:809.295750px;}
.y11e{bottom:809.556750px;}
.yc{bottom:813.732750px;}
.y32{bottom:816.081750px;}
.y64{bottom:817.386750px;}
.y88{bottom:819.474750px;}
.y9a{bottom:821.562750px;}
.y2a8{bottom:827.565750px;}
.yf1{bottom:829.392750px;}
.y14b{bottom:832.785750px;}
.y56{bottom:833.046750px;}
.y185{bottom:837.483750px;}
.y24d{bottom:838.392750px;}
.yb{bottom:840.615750px;}
.y13f{bottom:840.876750px;}
.y31{bottom:841.398750px;}
.y87{bottom:847.401750px;}
.y99{bottom:848.445750px;}
.yc9{bottom:848.571750px;}
.y11d{bottom:852.099750px;}
.y63{bottom:852.360750px;}
.yf0{bottom:856.275750px;}
.y55{bottom:859.668750px;}
.y19c{bottom:859.929750px;}
.y2a7{bottom:862.539750px;}
.y30{bottom:864.366750px;}
.ya{bottom:867.759750px;}
.y14a{bottom:868.020750px;}
.y235{bottom:874.284750px;}
.y86{bottom:874.545750px;}
.y24c{bottom:875.193750px;}
.y98{bottom:875.589750px;}
.y1db{bottom:878.199750px;}
.y11c{bottom:878.982750px;}
.yef{bottom:883.445850px;}
.y204{bottom:883.706850px;}
.y54{bottom:885.285900px;}
.y62{bottom:887.112900px;}
.y2f{bottom:887.360850px;}
.y2a6{bottom:889.448850px;}
.y184{bottom:892.580850px;}
.yc8{bottom:894.507750px;}
.y9{bottom:894.668850px;}
.y1bd{bottom:899.988750px;}
.y85{bottom:901.467900px;}
.y97{bottom:902.498850px;}
.y1ad{bottom:902.759850px;}
.y11b{bottom:906.165900px;}
.y53{bottom:909.545850px;}
.y2e{bottom:910.341900px;}
.y24b{bottom:912.255750px;}
.y248{bottom:916.605900px;}
.y183{bottom:919.476900px;}
.y8{bottom:921.825900px;}
.y61{bottom:922.086900px;}
.y2a5{bottom:924.435900px;}
.y84{bottom:928.598850px;}
.y96{bottom:929.655900px;}
.y2d{bottom:933.035850px;}
.y52{bottom:933.831900px;}
.yee{bottom:937.485900px;}
.y1e8{bottom:937.746900px;}
.yc5{bottom:940.443750px;}
.y11a{bottom:940.865850px;}
.y182{bottom:947.651850px;}
.y6d{bottom:948.695850px;}
.y247{bottom:948.956850px;}
.y249{bottom:949.317750px;}
.y2a4{bottom:951.305850px;}
.y83{bottom:956.525850px;}
.y7{bottom:956.786850px;}
.y51{bottom:957.830850px;}
.y2c{bottom:958.365900px;}
.y207{bottom:959.135850px;}
.yed{bottom:964.355850px;}
.y119{bottom:968.009850px;}
.y209{bottom:972.833850px;}
.y6c{bottom:983.930850px;}
.y2a3{bottom:986.540850px;}
.yec{bottom:991.499850px;}
.y6{bottom:991.760850px;}
.y1bb{bottom:994.122900px;}
.yc3{bottom:1003.631850px;}
.y1bc{bottom:1032.341850px;}
.y4{bottom:1041.651000px;}
.yc2{bottom:1049.580900px;}
.h46{height:15.138000px;}
.h1c{height:15.170625px;}
.ha{height:17.226000px;}
.h2f{height:17.245575px;}
.h39{height:17.258625px;}
.h23{height:19.053000px;}
.h42{height:25.056000px;}
.h3b{height:25.088625px;}
.h1d{height:29.754000px;}
.h1b{height:30.015000px;}
.h1a{height:30.047625px;}
.hd{height:32.872950px;}
.h9{height:32.918625px;}
.h2d{height:33.147000px;}
.hb{height:34.452000px;}
.h44{height:34.484625px;}
.he{height:34.713000px;}
.h10{height:34.745625px;}
.h28{height:36.279000px;}
.h29{height:36.311625px;}
.h27{height:36.540000px;}
.h26{height:36.572625px;}
.h2a{height:38.367000px;}
.h3c{height:42.282000px;}
.h2e{height:42.314625px;}
.h40{height:44.402625px;}
.h20{height:44.892000px;}
.h21{height:44.924625px;}
.h1e{height:45.153000px;}
.h1f{height:45.185625px;}
.h4d{height:47.229785px;}
.h3{height:48.998672px;}
.h41{height:49.054950px;}
.h5{height:50.062500px;}
.h32{height:51.678000px;}
.hc{height:51.710625px;}
.h11{height:51.939000px;}
.hf{height:51.971625px;}
.h8{height:54.442969px;}
.h35{height:54.442981px;}
.h3f{height:54.442986px;}
.h3e{height:54.442989px;}
.h31{height:54.443015px;}
.h7{height:59.887266px;}
.h45{height:60.030000px;}
.h48{height:60.062625px;}
.h6{height:65.331563px;}
.h12{height:68.904000px;}
.h37{height:68.936625px;}
.h36{height:69.165000px;}
.h33{height:69.197625px;}
.h2c{height:74.124000px;}
.h47{height:74.907000px;}
.h4c{height:74.939625px;}
.h4a{height:75.168000px;}
.h49{height:75.200625px;}
.h2b{height:77.778000px;}
.h18{height:86.162625px;}
.h17{height:86.423625px;}
.h4b{height:90.077625px;}
.h3d{height:101.300625px;}
.h43{height:101.822625px;}
.h16{height:103.649625px;}
.h22{height:120.875625px;}
.h38{height:128.444625px;}
.h34{height:128.705625px;}
.h3a{height:170.994150px;}
.h30{height:188.246250px;}
.h24{height:265.202100px;}
.h25{height:265.502250px;}
.h19{height:698.100000px;}
.h15{height:776.997000px;}
.h13{height:893.100000px;}
.h14{height:893.250000px;}
.h4{height:1067.700000px;}
.h2{height:1098.549000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w33{width:45.675000px;}
.w30{width:46.197000px;}
.w31{width:52.983000px;}
.w19{width:59.540625px;}
.w40{width:59.769000px;}
.w11{width:59.801625px;}
.w37{width:62.640000px;}
.w3{width:68.910000px;}
.w38{width:69.687000px;}
.w41{width:71.775000px;}
.w3d{width:73.341000px;}
.w2d{width:75.168000px;}
.w1a{width:76.473000px;}
.w12{width:76.734000px;}
.w39{width:77.549625px;}
.w3a{width:82.769625px;}
.w32{width:83.030625px;}
.w26{width:84.596625px;}
.w2e{width:85.379625px;}
.w6{width:87.467625px;}
.w4{width:87.728625px;}
.w15{width:88.479000px;}
.w1c{width:88.511625px;}
.w14{width:88.772625px;}
.w3b{width:91.611000px;}
.w16{width:91.643625px;}
.w3c{width:96.080625px;}
.w2c{width:100.517625px;}
.w2b{width:107.303625px;}
.w1b{width:111.479625px;}
.w13{width:111.740625px;}
.wf{width:114.840000px;}
.w2f{width:126.356625px;}
.w25{width:126.617625px;}
.w28{width:143.576100px;}
.w17{width:143.837100px;}
.wd{width:144.098100px;}
.wa{width:144.359100px;}
.w34{width:187.163100px;}
.w27{width:194.510250px;}
.w23{width:221.132250px;}
.w44{width:227.918250px;}
.w45{width:228.140100px;}
.w43{width:228.153150px;}
.w46{width:228.179250px;}
.w2a{width:232.838100px;}
.w22{width:239.924250px;}
.w18{width:252.413100px;}
.w10{width:252.687150px;}
.w1f{width:276.229350px;}
.w1e{width:276.242400px;}
.w20{width:278.030250px;}
.wb{width:288.470250px;}
.w3e{width:356.617350px;}
.w36{width:430.493400px;}
.w3f{width:431.002350px;}
.w5{width:467.581500px;}
.we{width:480.853350px;}
.wc{width:481.114350px;}
.w24{width:551.140650px;}
.w21{width:554.259600px;}
.w1d{width:554.520600px;}
.w2{width:776.996988px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.w29{width:911.868750px;}
.w35{width:912.129750px;}
.w42{width:913.173750px;}
.w9{width:1098.548984px;}
.w7{width:1262.700000px;}
.w8{width:1263.000000px;}
.x0{left:0.000000px;}
.x52{left:6.003000px;}
.x1c{left:7.047000px;}
.x2c{left:8.091000px;}
.x65{left:9.135000px;}
.x39{left:10.962000px;}
.x6b{left:12.253950px;}
.x4{left:13.500000px;}
.x3{left:15.000000px;}
.x34{left:16.704000px;}
.x7c{left:17.787150px;}
.x37{left:18.831150px;}
.x2f{left:19.836000px;}
.x63{left:20.880000px;}
.x32{left:21.924000px;}
.x40{left:23.490000px;}
.x41{left:24.781950px;}
.x3c{left:25.878150px;}
.x5{left:27.000000px;}
.x3f{left:28.188000px;}
.x1b{left:29.238525px;}
.x3e{left:30.798000px;}
.x77{left:32.651100px;}
.x36{left:34.191000px;}
.x64{left:35.274150px;}
.x38{left:37.062000px;}
.x24{left:38.634525px;}
.x6{left:40.500000px;}
.x69{left:41.538150px;}
.x68{left:42.804000px;}
.x1f{left:43.880625px;}
.x5a{left:46.444950px;}
.x7a{left:48.050100px;}
.x58{left:49.890150px;}
.x3d{left:51.978150px;}
.x1d{left:53.244000px;}
.x3b{left:55.632150px;}
.x1{left:58.050012px;}
.x5e{left:59.494950px;}
.x1e{left:62.666100px;}
.x3a{left:64.467000px;}
.x28{left:67.500000px;}
.x66{left:68.904000px;}
.x6c{left:70.992000px;}
.x51{left:73.119150px;}
.x83{left:77.282100px;}
.x21{left:82.080016px;}
.x2a{left:84.035475px;}
.x4f{left:85.908150px;}
.x85{left:87.696000px;}
.x22{left:92.426609px;}
.x81{left:96.315525px;}
.x46{left:105.998613px;}
.x9{left:110.957613px;}
.x27{left:128.151000px;}
.xa{left:129.488613px;}
.x10{left:134.441088px;}
.xc{left:145.155138px;}
.x7e{left:146.969100px;}
.x11{left:148.013088px;}
.x76{left:151.667100px;}
.x13{left:152.711088px;}
.x17{left:158.492238px;}
.x44{left:166.583238px;}
.x18{left:169.007625px;}
.x12{left:171.281238px;}
.x23{left:174.506625px;}
.xd{left:175.718238px;}
.x45{left:189.812238px;}
.x4b{left:190.856238px;}
.x49{left:197.374725px;}
.x79{left:200.219625px;}
.x1a{left:205.472250px;}
.x4d{left:220.877775px;}
.x7{left:235.226238px;}
.x20{left:238.880238px;}
.x75{left:248.376150px;}
.x19{left:256.736250px;}
.x4e{left:261.956250px;}
.x16{left:271.792338px;}
.x80{left:295.784775px;}
.x53{left:298.235250px;}
.x56{left:302.818725px;}
.x48{left:307.562388px;}
.x7d{left:317.695725px;}
.x25{left:318.872250px;}
.x74{left:320.057775px;}
.x6d{left:327.104775px;}
.x62{left:329.701725px;}
.x6a{left:335.717775px;}
.x7b{left:367.037775px;}
.x67{left:377.216775px;}
.x54{left:383.621400px;}
.x78{left:390.266775px;}
.x82{left:403.436250px;}
.x57{left:408.917250px;}
.x2b{left:427.187250px;}
.x4a{left:445.504500px;}
.x2d{left:486.982350px;}
.x50{left:502.402500px;}
.x59{left:516.227400px;}
.x4c{left:541.222638px;}
.x2e{left:563.729400px;}
.x42{left:575.635484px;}
.x55{left:578.653650px;}
.x6e{left:604.993500px;}
.x26{left:607.342500px;}
.x5b{left:616.999500px;}
.x84{left:631.615500px;}
.x7f{left:638.079738px;}
.x14{left:645.909738px;}
.xb{left:651.651738px;}
.x29{left:652.956738px;}
.xe{left:654.783738px;}
.x8{left:658.176738px;}
.xf{left:659.481738px;}
.x47{left:666.006738px;}
.x6f{left:667.894500px;}
.x15{left:672.792738px;}
.x30{left:675.463500px;}
.x5c{left:692.428500px;}
.x70{left:737.842500px;}
.x2{left:759.731838px;}
.x31{left:764.242650px;}
.x5d{left:778.075650px;}
.x71{left:815.659650px;}
.x33{left:852.982650px;}
.x86{left:860.029650px;}
.x72{left:898.683750px;}
.x5f{left:904.686750px;}
.x35{left:944.619750px;}
.x60{left:951.144750px;}
.x73{left:990.555750px;}
.x43{left:993.326834px;}
.x61{left:1004.388750px;}
@media print{
.v1{vertical-align:-2.784000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls27{letter-spacing:-0.928000pt;}
.ls12{letter-spacing:-0.631040pt;}
.ls5{letter-spacing:-0.334080pt;}
.ls29{letter-spacing:-0.324800pt;}
.ls13{letter-spacing:-0.322944pt;}
.ls19{letter-spacing:-0.296960pt;}
.ls9{letter-spacing:-0.269120pt;}
.ls11{letter-spacing:-0.092800pt;}
.ls18{letter-spacing:-0.018560pt;}
.ls6{letter-spacing:-0.013920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.018560pt;}
.ls2a{letter-spacing:0.092800pt;}
.lsf{letter-spacing:0.139200pt;}
.ls15{letter-spacing:0.145653pt;}
.ls10{letter-spacing:0.185600pt;}
.lsc{letter-spacing:0.296960pt;}
.ls1f{letter-spacing:0.310880pt;}
.ls1c{letter-spacing:0.324800pt;}
.ls1e{letter-spacing:0.334080pt;}
.ls17{letter-spacing:0.369973pt;}
.ls1a{letter-spacing:0.371200pt;}
.lsb{letter-spacing:0.389760pt;}
.lse{letter-spacing:0.394400pt;}
.ls16{letter-spacing:0.408640pt;}
.lsd{letter-spacing:0.454720pt;}
.ls1{letter-spacing:0.589707pt;}
.ls1b{letter-spacing:0.593920pt;}
.ls2{letter-spacing:0.606187pt;}
.ls25{letter-spacing:0.631040pt;}
.lsa{letter-spacing:0.658880pt;}
.ls2b{letter-spacing:0.835200pt;}
.ls14{letter-spacing:0.841920pt;}
.ls22{letter-spacing:2.152960pt;}
.ls4{letter-spacing:2.199360pt;}
.ls24{letter-spacing:4.008960pt;}
.ls28{letter-spacing:8.648960pt;}
.ls7{letter-spacing:11.618560pt;}
.ls8{letter-spacing:11.664960pt;}
.ls23{letter-spacing:18.810560pt;}
.ls26{letter-spacing:23.496960pt;}
.ls1d{letter-spacing:41.082560pt;}
.ls3{letter-spacing:44.052160pt;}
.ls21{letter-spacing:652.936160pt;}
.ws1a{word-spacing:-51.040000pt;}
.ws17{word-spacing:-16.110080pt;}
.ws15{word-spacing:-16.072960pt;}
.wsb{word-spacing:-15.776000pt;}
.ws16{word-spacing:-15.497600pt;}
.ws3{word-spacing:-15.479040pt;}
.ws18{word-spacing:-15.460480pt;}
.ws19{word-spacing:-15.182080pt;}
.ws4{word-spacing:-15.144960pt;}
.ws7{word-spacing:-14.848000pt;}
.ws8{word-spacing:-14.578880pt;}
.ws9{word-spacing:-14.189120pt;}
.ws6{word-spacing:-13.920000pt;}
.wse{word-spacing:-13.084800pt;}
.wsf{word-spacing:-13.038400pt;}
.wsc{word-spacing:-12.899200pt;}
.wsd{word-spacing:-12.806400pt;}
.ws1c{word-spacing:-12.574400pt;}
.wsa{word-spacing:-12.064000pt;}
.ws5{word-spacing:-11.595360pt;}
.ws14{word-spacing:-11.590720pt;}
.ws1b{word-spacing:-10.319360pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:0.364160pt;}
.ws13{word-spacing:0.924907pt;}
.ws12{word-spacing:1.021547pt;}
.ws1{word-spacing:1.474347pt;}
.ws2{word-spacing:1.515520pt;}
.ws10{word-spacing:2.104747pt;}
._14{margin-left:-12.862080pt;}
._1a{margin-left:-10.662720pt;}
._15{margin-left:-9.224320pt;}
._17{margin-left:-8.157120pt;}
._19{margin-left:-7.048160pt;}
._16{margin-left:-5.554080pt;}
._1b{margin-left:-4.602880pt;}
._18{margin-left:-3.266560pt;}
._5{margin-left:-2.227200pt;}
._1{margin-left:-1.169280pt;}
._0{width:1.169280pt;}
._2{width:2.120480pt;}
._8{width:3.619200pt;}
._6{width:5.233920pt;}
._7{width:6.157280pt;}
._c{width:7.127040pt;}
._b{width:8.073600pt;}
._11{width:9.576960pt;}
._27{width:10.690560pt;}
._e{width:11.804160pt;}
._d{width:13.084800pt;}
._a{width:14.254080pt;}
._28{width:15.205280pt;}
._29{width:16.300320pt;}
._9{width:17.339680pt;}
._13{width:19.042560pt;}
._12{width:19.989120pt;}
._2a{width:21.158400pt;}
._1c{width:22.248800pt;}
._1e{width:23.608320pt;}
._1d{width:24.554880pt;}
._1f{width:25.724160pt;}
._24{width:26.615040pt;}
._23{width:27.705440pt;}
._20{width:28.953600pt;}
._2c{width:30.122880pt;}
._22{width:31.125120pt;}
._21{width:32.071680pt;}
._26{width:33.704960pt;}
._35{width:36.080640pt;}
._34{width:37.249920pt;}
._2b{width:40.033920pt;}
._25{width:41.082560pt;}
._2f{width:42.056960pt;}
._3{width:43.207680pt;}
._4{width:44.288800pt;}
._10{width:45.713280pt;}
._37{width:47.606400pt;}
._2d{width:48.627200pt;}
._30{width:54.218400pt;}
._33{width:71.061600pt;}
._32{width:74.741120pt;}
._31{width:75.748000pt;}
._36{width:85.914240pt;}
._2e{width:111.350720pt;}
._3b{width:124.732480pt;}
._3a{width:125.725440pt;}
._39{width:147.663360pt;}
._3c{width:174.890880pt;}
._f{width:652.936160pt;}
._38{width:705.632640pt;}
.fs5{font-size:30.624000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:41.760000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:46.400000pt;}
.fs3{font-size:51.040000pt;}
.fs2{font-size:55.680000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.117000pt;}
.y171{bottom:2.552000pt;}
.y2cd{bottom:2.586800pt;}
.y163{bottom:2.784000pt;}
.y179{bottom:2.807200pt;}
.y161{bottom:3.016000pt;}
.y2d5{bottom:3.050800pt;}
.yd1{bottom:4.628400pt;}
.yb6{bottom:4.640000pt;}
.ydc{bottom:4.651600pt;}
.yda{bottom:4.674800pt;}
.y10c{bottom:4.872000pt;}
.yb5{bottom:4.883600pt;}
.y208{bottom:5.104000pt;}
.y20a{bottom:5.336000pt;}
.y292{bottom:7.888000pt;}
.y21f{bottom:11.820400pt;}
.yb3{bottom:11.832000pt;}
.y22a{bottom:12.064000pt;}
.y257{bottom:12.296000pt;}
.y24e{bottom:12.528000pt;}
.y24a{bottom:12.760000pt;}
.y293{bottom:12.992000pt;}
.y26a{bottom:13.015200pt;}
.y26d{bottom:13.224000pt;}
.y251{bottom:14.140400pt;}
.y270{bottom:14.384000pt;}
.y289{bottom:14.616000pt;}
.y164{bottom:16.008000pt;}
.y167{bottom:16.031200pt;}
.y180{bottom:16.042800pt;}
.y160{bottom:16.240000pt;}
.y166{bottom:16.263200pt;}
.y17e{bottom:16.274800pt;}
.yd0{bottom:19.940400pt;}
.yb9{bottom:19.952000pt;}
.y25d{bottom:19.963600pt;}
.y269{bottom:19.975200pt;}
.yd9{bottom:19.986800pt;}
.ybb{bottom:20.184000pt;}
.yb8{bottom:20.195600pt;}
.ycc{bottom:20.207200pt;}
.y118{bottom:20.218800pt;}
.yc4{bottom:20.416000pt;}
.ycb{bottom:20.439200pt;}
.y117{bottom:20.450800pt;}
.y26f{bottom:28.304000pt;}
.y28a{bottom:28.536000pt;}
.y288{bottom:28.559200pt;}
.y229{bottom:28.756400pt;}
.y21e{bottom:28.768000pt;}
.y17b{bottom:29.232000pt;}
.y17f{bottom:29.266800pt;}
.y175{bottom:29.464000pt;}
.y178{bottom:29.487200pt;}
.y17d{bottom:29.498800pt;}
.y174{bottom:29.696000pt;}
.y177{bottom:29.719200pt;}
.y27c{bottom:29.730800pt;}
.y278{bottom:29.928000pt;}
.y273{bottom:29.951200pt;}
.y254{bottom:30.856000pt;}
.y295{bottom:32.944000pt;}
.yc1{bottom:35.258200pt;}
.yd5{bottom:35.264000pt;}
.y115{bottom:35.287200pt;}
.yd8{bottom:35.298800pt;}
.ycf{bottom:35.496000pt;}
.yc0{bottom:35.501800pt;}
.yd4{bottom:35.519200pt;}
.yc7{bottom:35.530800pt;}
.yce{bottom:35.728000pt;}
.yc6{bottom:35.762800pt;}
.y275{bottom:38.744000pt;}
.y2c7{bottom:42.688000pt;}
.y2dc{bottom:42.711200pt;}
.y2d6{bottom:42.722800pt;}
.y2c6{bottom:42.920000pt;}
.y2da{bottom:42.943200pt;}
.y2d4{bottom:42.954800pt;}
.y5{bottom:43.181000pt;}
.y102{bottom:43.413000pt;}
.y281{bottom:43.639200pt;}
.y27b{bottom:43.650800pt;}
.y277{bottom:43.848000pt;}
.y272{bottom:43.871200pt;}
.y217{bottom:45.460400pt;}
.y228{bottom:45.692400pt;}
.y21d{bottom:45.704000pt;}
.y25a{bottom:45.936000pt;}
.y255{bottom:49.184000pt;}
.y253{bottom:49.416000pt;}
.ye2{bottom:50.576000pt;}
.y114{bottom:50.599200pt;}
.y27a{bottom:50.610800pt;}
.ye1{bottom:50.808000pt;}
.y10b{bottom:50.831200pt;}
.y111{bottom:50.842800pt;}
.y108{bottom:51.063200pt;}
.y10f{bottom:51.074800pt;}
.y100{bottom:51.600000pt;}
.y2d0{bottom:55.912000pt;}
.y2e5{bottom:55.946800pt;}
.y2cf{bottom:56.144000pt;}
.y2db{bottom:56.167200pt;}
.y2e2{bottom:56.178800pt;}
.y2df{bottom:56.376000pt;}
.y2d9{bottom:56.399200pt;}
.y2e9{bottom:56.410800pt;}
.y280{bottom:58.951200pt;}
.y21c{bottom:62.408000pt;}
.y227{bottom:62.640000pt;}
.y216{bottom:63.324400pt;}
.y113{bottom:65.911200pt;}
.y10a{bottom:66.143200pt;}
.y110{bottom:66.154800pt;}
.y107{bottom:66.375200pt;}
.y10e{bottom:66.386800pt;}
.y2e1{bottom:69.402800pt;}
.y1{bottom:72.960000pt;}
.y226{bottom:79.564400pt;}
.y29f{bottom:80.063200pt;}
.y215{bottom:80.260400pt;}
.y22c{bottom:81.200000pt;}
.y109{bottom:81.455200pt;}
.y106{bottom:81.687200pt;}
.y95{bottom:87.725000pt;}
.y246{bottom:88.653000pt;}
.y203{bottom:88.885000pt;}
.y50{bottom:89.117000pt;}
.y1e7{bottom:94.685000pt;}
.y1da{bottom:94.917000pt;}
.y225{bottom:96.303200pt;}
.y1be{bottom:96.767200pt;}
.y21b{bottom:97.208000pt;}
.y214{bottom:97.892400pt;}
.y22b{bottom:98.159200pt;}
.y27e{bottom:103.727200pt;}
.y1fe{bottom:105.821000pt;}
.y2bf{bottom:106.749000pt;}
.y233{bottom:108.605000pt;}
.y1fa{bottom:108.837000pt;}
.y4f{bottom:110.693000pt;}
.y94{bottom:111.853000pt;}
.y202{bottom:112.781000pt;}
.y224{bottom:113.239200pt;}
.y21a{bottom:113.935200pt;}
.y19b{bottom:114.405000pt;}
.y213{bottom:114.863200pt;}
.y1e6{bottom:118.807200pt;}
.y1d9{bottom:119.282800pt;}
.y1d3{bottom:128.794800pt;}
.y134{bottom:129.722800pt;}
.yeb{bottom:129.943200pt;}
.y2be{bottom:130.674000pt;}
.y219{bottom:130.871200pt;}
.y4e{bottom:130.906000pt;}
.y212{bottom:131.799200pt;}
.y232{bottom:132.762000pt;}
.y82{bottom:132.994000pt;}
.y3{bottom:133.333333pt;}
.y93{bottom:135.778000pt;}
.y201{bottom:136.706000pt;}
.y19a{bottom:138.330000pt;}
.y285{bottom:141.543200pt;}
.y1e5{bottom:142.738000pt;}
.y218{bottom:147.807200pt;}
.y211{bottom:148.735200pt;}
.y21{bottom:149.234000pt;}
.y1d8{bottom:150.162000pt;}
.y4d{bottom:151.322000pt;}
.y1d2{bottom:152.714000pt;}
.yea{bottom:153.874000pt;}
.y2bd{bottom:154.802000pt;}
.y231{bottom:156.658000pt;}
.y81{bottom:157.354000pt;}
.y2ce{bottom:159.074000pt;}
.y92{bottom:159.906000pt;}
.y13e{bottom:160.834000pt;}
.y199{bottom:162.458000pt;}
.y1ac{bottom:162.922000pt;}
.ybf{bottom:163.701000pt;}
.y2ea{bottom:163.714000pt;}
.y210{bottom:165.439200pt;}
.y223{bottom:165.671200pt;}
.y2de{bottom:166.962000pt;}
.y1e4{bottom:167.098000pt;}
.y1f9{bottom:170.810000pt;}
.y20{bottom:173.362000pt;}
.y4c{bottom:174.058000pt;}
.y1d7{bottom:174.290000pt;}
.y2b{bottom:176.842000pt;}
.y133{bottom:177.770000pt;}
.ye9{bottom:178.002000pt;}
.y230{bottom:180.786000pt;}
.y80{bottom:181.250000pt;}
.y20f{bottom:182.375200pt;}
.y274{bottom:183.666000pt;}
.y91{bottom:183.802000pt;}
.y13d{bottom:184.730000pt;}
.y2bc{bottom:185.658000pt;}
.y28b{bottom:185.924800pt;}
.y29b{bottom:186.218000pt;}
.y198{bottom:186.354000pt;}
.y1ab{bottom:187.282000pt;}
.y170{bottom:190.858000pt;}
.y1f8{bottom:194.938000pt;}
.y4b{bottom:196.562000pt;}
.y1f{bottom:197.258000pt;}
.y1ba{bottom:197.954000pt;}
.y20e{bottom:199.079200pt;}
.y222{bottom:199.311200pt;}
.y2e8{bottom:200.602000pt;}
.y2a{bottom:200.738000pt;}
.ye8{bottom:201.898000pt;}
.y263{bottom:204.562000pt;}
.y22f{bottom:204.682000pt;}
.y1d6{bottom:204.914000pt;}
.y7f{bottom:205.146000pt;}
.y132{bottom:206.306000pt;}
.y15e{bottom:207.466000pt;}
.y13c{bottom:208.858000pt;}
.y2bb{bottom:209.786000pt;}
.y197{bottom:210.482000pt;}
.y1aa{bottom:213.034000pt;}
.y2f1{bottom:215.388800pt;}
.y20c{bottom:216.943200pt;}
.y20d{bottom:217.175200pt;}
.y221{bottom:217.407200pt;}
.y1f7{bottom:219.066000pt;}
.y116{bottom:219.162000pt;}
.y4a{bottom:219.298000pt;}
.ybe{bottom:219.874000pt;}
.y90{bottom:220.458000pt;}
.y1b9{bottom:222.082000pt;}
.y29{bottom:224.866000pt;}
.ye7{bottom:225.794000pt;}
.y16f{bottom:227.514000pt;}
.ye0{bottom:228.458000pt;}
.y1e{bottom:228.578000pt;}
.y22e{bottom:228.810000pt;}
.y7e{bottom:229.042000pt;}
.y131{bottom:230.202000pt;}
.y1e3{bottom:231.130000pt;}
.y15d{bottom:231.594000pt;}
.y13b{bottom:232.754000pt;}
.y200{bottom:232.986000pt;}
.y196{bottom:234.378000pt;}
.y2cc{bottom:235.866000pt;}
.y276{bottom:236.596800pt;}
.y262{bottom:237.506000pt;}
.y49{bottom:239.714000pt;}
.y2ba{bottom:240.642000pt;}
.y1f6{bottom:242.962000pt;}
.y2dd{bottom:243.788800pt;}
.y8f{bottom:245.978000pt;}
.y1d1{bottom:248.762000pt;}
.ye6{bottom:249.922000pt;}
.y16e{bottom:251.212800pt;}
.y28{bottom:252.474000pt;}
.y7d{bottom:252.938000pt;}
.y284{bottom:253.996800pt;}
.y130{bottom:254.330000pt;}
.y29a{bottom:254.460800pt;}
.y1e2{bottom:255.258000pt;}
.y15c{bottom:255.490000pt;}
.y13a{bottom:256.882000pt;}
.y1d{bottom:259.202000pt;}
.y22d{bottom:259.898000pt;}
.y48{bottom:260.130000pt;}
.ybd{bottom:260.706000pt;}
.y2b9{bottom:264.804800pt;}
.y195{bottom:265.500800pt;}
.y1f5{bottom:266.892800pt;}
.y1b8{bottom:270.140800pt;}
.y261{bottom:270.450000pt;}
.y1d0{bottom:272.913200pt;}
.ye5{bottom:273.841200pt;}
.y7c{bottom:277.089200pt;}
.y2e7{bottom:277.428800pt;}
.y12f{bottom:278.260800pt;}
.y1e1{bottom:279.409200pt;}
.y47{bottom:280.337200pt;}
.y139{bottom:280.812800pt;}
.y1c{bottom:283.353200pt;}
.y299{bottom:283.692800pt;}
.y2f0{bottom:283.924800pt;}
.y2cb{bottom:286.012800pt;}
.y15b{bottom:286.601200pt;}
.y16d{bottom:287.868800pt;}
.y1f4{bottom:291.252800pt;}
.y1b7{bottom:294.025200pt;}
.y2b8{bottom:295.660800pt;}
.y194{bottom:296.345200pt;}
.y1cf{bottom:296.820800pt;}
.yac{bottom:297.969200pt;}
.y1fd{bottom:298.212800pt;}
.ydf{bottom:299.914000pt;}
.y46{bottom:300.764800pt;}
.y7b{bottom:300.996800pt;}
.ybc{bottom:301.538000pt;}
.y12e{bottom:302.377200pt;}
.y1e0{bottom:303.073200pt;}
.y260{bottom:303.394000pt;}
.y26c{bottom:304.804800pt;}
.y138{bottom:304.940800pt;}
.y2c1{bottom:305.161200pt;}
.y112{bottom:306.196800pt;}
.y287{bottom:306.892800pt;}
.y1b{bottom:307.260800pt;}
.y2d8{bottom:307.356800pt;}
.y245{bottom:310.265200pt;}
.y15a{bottom:311.425200pt;}
.y1f3{bottom:314.905200pt;}
.y45{bottom:317.700800pt;}
.y1b6{bottom:318.153200pt;}
.y2b7{bottom:319.777200pt;}
.y193{bottom:320.252800pt;}
.y2ef{bottom:320.812800pt;}
.y1ce{bottom:320.937200pt;}
.yab{bottom:321.865200pt;}
.y16c{bottom:324.756800pt;}
.y7a{bottom:325.113200pt;}
.y12d{bottom:326.273200pt;}
.y1df{bottom:327.212800pt;}
.y137{bottom:328.825200pt;}
.y2c0{bottom:330.692800pt;}
.y1a{bottom:331.377200pt;}
.y2ca{bottom:336.148000pt;}
.y25f{bottom:336.361200pt;}
.y159{bottom:336.492800pt;}
.y298{bottom:336.612000pt;}
.y44{bottom:338.105200pt;}
.y1f2{bottom:339.033200pt;}
.yde{bottom:340.780800pt;}
.y244{bottom:341.132800pt;}
.y1b5{bottom:342.060800pt;}
.yba{bottom:342.393200pt;}
.y192{bottom:344.380800pt;}
.y1cd{bottom:344.833200pt;}
.yaa{bottom:345.993200pt;}
.y79{bottom:349.020800pt;}
.y12c{bottom:350.412800pt;}
.y2b6{bottom:350.633200pt;}
.y1de{bottom:351.097200pt;}
.y136{bottom:352.964800pt;}
.y2e6{bottom:354.476000pt;}
.y27{bottom:355.273200pt;}
.y43{bottom:358.300800pt;}
.y2c9{bottom:359.812000pt;}
.y286{bottom:360.044000pt;}
.y158{bottom:361.537200pt;}
.y16b{bottom:361.668000pt;}
.y19{bottom:362.465200pt;}
.y1f1{bottom:362.940800pt;}
.y243{bottom:365.260800pt;}
.y191{bottom:368.265200pt;}
.y1cc{bottom:368.972800pt;}
.y25e{bottom:369.305200pt;}
.ya9{bottom:369.900800pt;}
.y220{bottom:372.100800pt;}
.y78{bottom:373.137200pt;}
.y271{bottom:373.268000pt;}
.y1b4{bottom:373.380800pt;}
.y297{bottom:374.196000pt;}
.y12b{bottom:374.297200pt;}
.y181{bottom:374.428000pt;}
.y1dd{bottom:375.225200pt;}
.y135{bottom:376.860800pt;}
.y42{bottom:378.705200pt;}
.ydd{bottom:381.601200pt;}
.y2b5{bottom:381.732800pt;}
.yb7{bottom:383.225200pt;}
.y2d7{bottom:384.172000pt;}
.y157{bottom:386.361200pt;}
.y26{bottom:386.593200pt;}
.y1f0{bottom:387.057200pt;}
.y242{bottom:389.145200pt;}
.y1cb{bottom:392.892000pt;}
.y10d{bottom:392.988000pt;}
.y18{bottom:393.356000pt;}
.ya8{bottom:394.052000pt;}
.y1fc{bottom:394.284000pt;}
.y77{bottom:397.068000pt;}
.y12a{bottom:398.460000pt;}
.y16a{bottom:398.556000pt;}
.y2a2{bottom:399.190800pt;}
.y1dc{bottom:399.388000pt;}
.y190{bottom:399.620000pt;}
.yff{bottom:401.012000pt;}
.y41{bottom:401.476000pt;}
.y25c{bottom:402.017200pt;}
.y1b3{bottom:404.028000pt;}
.y2e4{bottom:404.588000pt;}
.y2b4{bottom:405.652000pt;}
.y2c8{bottom:409.924000pt;}
.y1ef{bottom:411.220000pt;}
.y17c{bottom:411.316000pt;}
.y156{bottom:411.452000pt;}
.y296{bottom:411.780000pt;}
.y283{bottom:412.940000pt;}
.y241{bottom:413.308000pt;}
.y1ca{bottom:417.020000pt;}
.y17{bottom:417.252000pt;}
.ya7{bottom:417.948000pt;}
.ye4{bottom:418.180000pt;}
.y2d3{bottom:421.060000pt;}
.y76{bottom:421.196000pt;}
.yb1{bottom:422.356000pt;}
.ydb{bottom:422.433200pt;}
.y129{bottom:423.284000pt;}
.y40{bottom:423.980000pt;}
.yb4{bottom:424.057200pt;}
.yfe{bottom:424.908000pt;}
.y26e{bottom:426.198800pt;}
.y1b2{bottom:428.156000pt;}
.y18f{bottom:430.244000pt;}
.y291{bottom:434.086800pt;}
.y2ee{bottom:434.550800pt;}
.y1ee{bottom:435.116000pt;}
.y282{bottom:435.235200pt;}
.y169{bottom:435.246800pt;}
.y155{bottom:436.276000pt;}
.y2b3{bottom:436.740000pt;}
.y240{bottom:438.132000pt;}
.y1c9{bottom:440.916000pt;}
.y25{bottom:441.380000pt;}
.ya6{bottom:442.076000pt;}
.ye3{bottom:442.308000pt;}
.y25b{bottom:442.385200pt;}
.y3f{bottom:444.396000pt;}
.y75{bottom:445.092000pt;}
.y128{bottom:447.412000pt;}
.y16{bottom:448.572000pt;}
.yfd{bottom:449.036000pt;}
.yb2{bottom:449.577200pt;}
.yb0{bottom:451.124000pt;}
.y1b1{bottom:452.284000pt;}
.y18e{bottom:454.372000pt;}
.y1ed{bottom:459.012000pt;}
.y2c5{bottom:460.070800pt;}
.y154{bottom:460.404000pt;}
.y2b2{bottom:460.636000pt;}
.y17a{bottom:461.462800pt;}
.y23f{bottom:462.260000pt;}
.yd7{bottom:463.265200pt;}
.y3e{bottom:464.812000pt;}
.y1c8{bottom:465.044000pt;}
.ya5{bottom:465.972000pt;}
.y29e{bottom:467.262800pt;}
.y74{bottom:469.220000pt;}
.y127{bottom:471.308000pt;}
.y168{bottom:472.134800pt;}
.y24{bottom:472.468000pt;}
.y27f{bottom:472.830800pt;}
.yfc{bottom:472.932000pt;}
.y149{bottom:473.628000pt;}
.y259{bottom:475.364000pt;}
.yaf{bottom:475.716000pt;}
.y1a3{bottom:476.180000pt;}
.y18d{bottom:478.268000pt;}
.y26b{bottom:479.094800pt;}
.y15{bottom:479.196000pt;}
.y105{bottom:479.790800pt;}
.y2e3{bottom:481.414800pt;}
.y1d5{bottom:483.140000pt;}
.y153{bottom:484.300000pt;}
.y294{bottom:484.662800pt;}
.y3d{bottom:485.228000pt;}
.y23e{bottom:486.156000pt;}
.y1c7{bottom:488.940000pt;}
.ya4{bottom:490.100000pt;}
.y1ec{bottom:490.332000pt;}
.yae{bottom:491.028000pt;}
.y2b1{bottom:491.724000pt;}
.y73{bottom:493.116000pt;}
.y126{bottom:495.436000pt;}
.yfb{bottom:497.060000pt;}
.y206{bottom:497.292000pt;}
.y1a2{bottom:500.076000pt;}
.y1b0{bottom:500.308000pt;}
.y268{bottom:501.366800pt;}
.y60{bottom:502.164000pt;}
.y14{bottom:503.324000pt;}
.y148{bottom:504.484000pt;}
.y2a1{bottom:504.846800pt;}
.y1d4{bottom:507.036000pt;}
.y3c{bottom:507.732000pt;}
.y152{bottom:508.428000pt;}
.y165{bottom:509.022800pt;}
.y6b{bottom:509.820000pt;}
.y23d{bottom:510.284000pt;}
.y2ed{bottom:511.342800pt;}
.y176{bottom:511.574800pt;}
.y1c6{bottom:512.836000pt;}
.ya3{bottom:513.996000pt;}
.y1fb{bottom:514.228000pt;}
.y2b0{bottom:515.620000pt;}
.yad{bottom:516.780000pt;}
.y72{bottom:517.244000pt;}
.y125{bottom:519.332000pt;}
.yd6{bottom:519.444000pt;}
.yfa{bottom:520.956000pt;}
.y267{bottom:523.662000pt;}
.y1a1{bottom:524.227200pt;}
.y5f{bottom:524.691200pt;}
.y13{bottom:527.243200pt;}
.y3b{bottom:528.182800pt;}
.y147{bottom:528.646800pt;}
.y290{bottom:530.854000pt;}
.y1a9{bottom:531.187200pt;}
.y23c{bottom:534.203200pt;}
.y2d2{bottom:534.798000pt;}
.y265{bottom:536.326000pt;}
.y1c5{bottom:536.987200pt;}
.ya2{bottom:538.147200pt;}
.y6a{bottom:540.710800pt;}
.y71{bottom:541.163200pt;}
.y258{bottom:541.948000pt;}
.y2a0{bottom:542.454000pt;}
.y2c3{bottom:543.286000pt;}
.y124{bottom:543.483200pt;}
.yf9{bottom:545.107200pt;}
.y266{bottom:545.702000pt;}
.y162{bottom:545.934000pt;}
.y5e{bottom:546.267200pt;}
.y2af{bottom:546.742800pt;}
.y1a0{bottom:548.123200pt;}
.y2ec{bottom:548.254000pt;}
.y1af{bottom:548.355200pt;}
.y3a{bottom:550.907200pt;}
.y23{bottom:551.371200pt;}
.y28f{bottom:553.126000pt;}
.y146{bottom:553.470800pt;}
.y1a8{bottom:555.083200pt;}
.y2c4{bottom:556.142000pt;}
.y27d{bottom:556.374000pt;}
.y2e0{bottom:558.230000pt;}
.y23b{bottom:558.342800pt;}
.y12{bottom:558.563200pt;}
.yd3{bottom:560.276000pt;}
.y1c4{bottom:560.883200pt;}
.y173{bottom:561.710000pt;}
.ya1{bottom:562.043200pt;}
.y29d{bottom:564.726000pt;}
.y70{bottom:565.291200pt;}
.y264{bottom:565.360800pt;}
.y123{bottom:567.390800pt;}
.y5d{bottom:567.622800pt;}
.yf8{bottom:569.003200pt;}
.y1ff{bottom:569.235200pt;}
.y8e{bottom:570.406800pt;}
.y2ae{bottom:570.627200pt;}
.y39{bottom:571.323200pt;}
.y69{bottom:571.787200pt;}
.y19f{bottom:572.251200pt;}
.y2c2{bottom:572.320800pt;}
.y103{bottom:574.408800pt;}
.y256{bottom:574.892000pt;}
.y18c{bottom:575.267200pt;}
.y28e{bottom:575.398000pt;}
.y145{bottom:578.515200pt;}
.y279{bottom:578.646000pt;}
.y1a7{bottom:579.222800pt;}
.y28c{bottom:581.368800pt;}
.y104{bottom:582.126000pt;}
.y23a{bottom:582.227200pt;}
.y22{bottom:582.470800pt;}
.y15f{bottom:582.590000pt;}
.y1c3{bottom:585.011200pt;}
.ya0{bottom:586.171200pt;}
.y11{bottom:589.187200pt;}
.y38{bottom:591.507200pt;}
.yf7{bottom:593.131200pt;}
.y1eb{bottom:593.363200pt;}
.y29c{bottom:593.958000pt;}
.y8d{bottom:594.291200pt;}
.y151{bottom:595.230800pt;}
.y19e{bottom:596.147200pt;}
.y28d{bottom:597.670000pt;}
.y2d1{bottom:598.366000pt;}
.y18b{bottom:599.395200pt;}
.y2ad{bottom:601.715200pt;}
.y144{bottom:602.411200pt;}
.y68{bottom:602.643200pt;}
.y1a6{bottom:603.107200pt;}
.y239{bottom:607.515200pt;}
.y252{bottom:607.859200pt;}
.y1c2{bottom:608.907200pt;}
.y9f{bottom:610.067200pt;}
.y5c{bottom:610.774800pt;}
.y2eb{bottom:611.624800pt;}
.y37{bottom:611.934800pt;}
.y172{bottom:612.088800pt;}
.y10{bottom:613.315200pt;}
.y122{bottom:615.403200pt;}
.yd2{bottom:616.443200pt;}
.yf6{bottom:617.027200pt;}
.y1ea{bottom:617.270800pt;}
.y8c{bottom:618.430800pt;}
.y20b{bottom:618.542800pt;}
.y150{bottom:619.347200pt;}
.y19d{bottom:620.275200pt;}
.y18a{bottom:623.291200pt;}
.y2ac{bottom:625.611200pt;}
.y1a5{bottom:627.235200pt;}
.y143{bottom:627.467200pt;}
.y238{bottom:631.422800pt;}
.y5b{bottom:632.350800pt;}
.y1c1{bottom:633.035200pt;}
.y67{bottom:633.731200pt;}
.y9e{bottom:634.195200pt;}
.y36{bottom:634.670800pt;}
.yf{bottom:637.211200pt;}
.y101{bottom:640.064800pt;}
.y121{bottom:640.470800pt;}
.yf5{bottom:641.155200pt;}
.y8b{bottom:642.315200pt;}
.y14f{bottom:644.171200pt;}
.y189{bottom:647.430800pt;}
.y1a4{bottom:651.131200pt;}
.y142{bottom:652.534800pt;}
.y5a{bottom:653.718000pt;}
.y237{bottom:655.574000pt;}
.y2ab{bottom:656.734000pt;}
.y1c0{bottom:656.966000pt;}
.ycd{bottom:657.286800pt;}
.y35{bottom:657.430000pt;}
.y9d{bottom:658.126000pt;}
.ye{bottom:661.374000pt;}
.y120{bottom:664.390000pt;}
.y66{bottom:664.622000pt;}
.yf4{bottom:665.086000pt;}
.y205{bottom:665.318000pt;}
.y14e{bottom:668.334000pt;}
.y6f{bottom:668.566000pt;}
.y188{bottom:671.350000pt;}
.y8a{bottom:673.670000pt;}
.y59{bottom:675.294000pt;}
.y250{bottom:677.470800pt;}
.y236{bottom:679.238000pt;}
.y34{bottom:679.934000pt;}
.y2aa{bottom:680.630000pt;}
.y9c{bottom:682.254000pt;}
.y141{bottom:684.574000pt;}
.y1bf{bottom:688.054000pt;}
.y11f{bottom:688.518000pt;}
.yf3{bottom:689.214000pt;}
.y1e9{bottom:689.446000pt;}
.y14d{bottom:692.230000pt;}
.yd{bottom:692.462000pt;}
.y187{bottom:695.478000pt;}
.y65{bottom:695.710000pt;}
.y58{bottom:696.870000pt;}
.y6e{bottom:699.190000pt;}
.y1ae{bottom:699.422000pt;}
.y33{bottom:702.670000pt;}
.y89{bottom:704.294000pt;}
.y9b{bottom:706.150000pt;}
.y234{bottom:706.382000pt;}
.y2a9{bottom:711.718000pt;}
.y24f{bottom:712.259200pt;}
.yf2{bottom:713.110000pt;}
.yca{bottom:713.430800pt;}
.y140{bottom:715.430000pt;}
.y14c{bottom:716.358000pt;}
.y57{bottom:718.214000pt;}
.y186{bottom:719.374000pt;}
.y11e{bottom:719.606000pt;}
.yc{bottom:723.318000pt;}
.y32{bottom:725.406000pt;}
.y64{bottom:726.566000pt;}
.y88{bottom:728.422000pt;}
.y9a{bottom:730.278000pt;}
.y2a8{bottom:735.614000pt;}
.yf1{bottom:737.238000pt;}
.y14b{bottom:740.254000pt;}
.y56{bottom:740.486000pt;}
.y185{bottom:744.430000pt;}
.y24d{bottom:745.238000pt;}
.yb{bottom:747.214000pt;}
.y13f{bottom:747.446000pt;}
.y31{bottom:747.910000pt;}
.y87{bottom:753.246000pt;}
.y99{bottom:754.174000pt;}
.yc9{bottom:754.286000pt;}
.y11d{bottom:757.422000pt;}
.y63{bottom:757.654000pt;}
.yf0{bottom:761.134000pt;}
.y55{bottom:764.150000pt;}
.y19c{bottom:764.382000pt;}
.y2a7{bottom:766.702000pt;}
.y30{bottom:768.326000pt;}
.ya{bottom:771.342000pt;}
.y14a{bottom:771.574000pt;}
.y235{bottom:777.142000pt;}
.y86{bottom:777.374000pt;}
.y24c{bottom:777.950000pt;}
.y98{bottom:778.302000pt;}
.y1db{bottom:780.622000pt;}
.y11c{bottom:781.318000pt;}
.yef{bottom:785.285200pt;}
.y204{bottom:785.517200pt;}
.y54{bottom:786.920800pt;}
.y62{bottom:788.544800pt;}
.y2f{bottom:788.765200pt;}
.y2a6{bottom:790.621200pt;}
.y184{bottom:793.405200pt;}
.yc8{bottom:795.118000pt;}
.y9{bottom:795.261200pt;}
.y1bd{bottom:799.990000pt;}
.y85{bottom:801.304800pt;}
.y97{bottom:802.221200pt;}
.y1ad{bottom:802.453200pt;}
.y11b{bottom:805.480800pt;}
.y53{bottom:808.485200pt;}
.y2e{bottom:809.192800pt;}
.y24b{bottom:810.894000pt;}
.y248{bottom:814.760800pt;}
.y183{bottom:817.312800pt;}
.y8{bottom:819.400800pt;}
.y61{bottom:819.632800pt;}
.y2a5{bottom:821.720800pt;}
.y84{bottom:825.421200pt;}
.y96{bottom:826.360800pt;}
.y2d{bottom:829.365200pt;}
.y52{bottom:830.072800pt;}
.yee{bottom:833.320800pt;}
.y1e8{bottom:833.552800pt;}
.yc5{bottom:835.950000pt;}
.y11a{bottom:836.325200pt;}
.y182{bottom:842.357200pt;}
.y6d{bottom:843.285200pt;}
.y247{bottom:843.517200pt;}
.y249{bottom:843.838000pt;}
.y2a4{bottom:845.605200pt;}
.y83{bottom:850.245200pt;}
.y7{bottom:850.477200pt;}
.y51{bottom:851.405200pt;}
.y2c{bottom:851.880800pt;}
.y207{bottom:852.565200pt;}
.yed{bottom:857.205200pt;}
.y119{bottom:860.453200pt;}
.y209{bottom:864.741200pt;}
.y6c{bottom:874.605200pt;}
.y2a3{bottom:876.925200pt;}
.yec{bottom:881.333200pt;}
.y6{bottom:881.565200pt;}
.y1bb{bottom:883.664800pt;}
.yc3{bottom:892.117200pt;}
.y1bc{bottom:917.637200pt;}
.y4{bottom:925.912000pt;}
.yc2{bottom:932.960800pt;}
.h46{height:13.456000pt;}
.h1c{height:13.485000pt;}
.ha{height:15.312000pt;}
.h2f{height:15.329400pt;}
.h39{height:15.341000pt;}
.h23{height:16.936000pt;}
.h42{height:22.272000pt;}
.h3b{height:22.301000pt;}
.h1d{height:26.448000pt;}
.h1b{height:26.680000pt;}
.h1a{height:26.709000pt;}
.hd{height:29.220400pt;}
.h9{height:29.261000pt;}
.h2d{height:29.464000pt;}
.hb{height:30.624000pt;}
.h44{height:30.653000pt;}
.he{height:30.856000pt;}
.h10{height:30.885000pt;}
.h28{height:32.248000pt;}
.h29{height:32.277000pt;}
.h27{height:32.480000pt;}
.h26{height:32.509000pt;}
.h2a{height:34.104000pt;}
.h3c{height:37.584000pt;}
.h2e{height:37.613000pt;}
.h40{height:39.469000pt;}
.h20{height:39.904000pt;}
.h21{height:39.933000pt;}
.h1e{height:40.136000pt;}
.h1f{height:40.165000pt;}
.h4d{height:41.982031pt;}
.h3{height:43.554375pt;}
.h41{height:43.604400pt;}
.h5{height:44.500000pt;}
.h32{height:45.936000pt;}
.hc{height:45.965000pt;}
.h11{height:46.168000pt;}
.hf{height:46.197000pt;}
.h8{height:48.393750pt;}
.h35{height:48.393761pt;}
.h3f{height:48.393765pt;}
.h3e{height:48.393768pt;}
.h31{height:48.393791pt;}
.h7{height:53.233125pt;}
.h45{height:53.360000pt;}
.h48{height:53.389000pt;}
.h6{height:58.072500pt;}
.h12{height:61.248000pt;}
.h37{height:61.277000pt;}
.h36{height:61.480000pt;}
.h33{height:61.509000pt;}
.h2c{height:65.888000pt;}
.h47{height:66.584000pt;}
.h4c{height:66.613000pt;}
.h4a{height:66.816000pt;}
.h49{height:66.845000pt;}
.h2b{height:69.136000pt;}
.h18{height:76.589000pt;}
.h17{height:76.821000pt;}
.h4b{height:80.069000pt;}
.h3d{height:90.045000pt;}
.h43{height:90.509000pt;}
.h16{height:92.133000pt;}
.h22{height:107.445000pt;}
.h38{height:114.173000pt;}
.h34{height:114.405000pt;}
.h3a{height:151.994800pt;}
.h30{height:167.330000pt;}
.h24{height:235.735200pt;}
.h25{height:236.002000pt;}
.h19{height:620.533333pt;}
.h15{height:690.664000pt;}
.h13{height:793.866667pt;}
.h14{height:794.000000pt;}
.h4{height:949.066667pt;}
.h2{height:976.488000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w33{width:40.600000pt;}
.w30{width:41.064000pt;}
.w31{width:47.096000pt;}
.w19{width:52.925000pt;}
.w40{width:53.128000pt;}
.w11{width:53.157000pt;}
.w37{width:55.680000pt;}
.w3{width:61.253333pt;}
.w38{width:61.944000pt;}
.w41{width:63.800000pt;}
.w3d{width:65.192000pt;}
.w2d{width:66.816000pt;}
.w1a{width:67.976000pt;}
.w12{width:68.208000pt;}
.w39{width:68.933000pt;}
.w3a{width:73.573000pt;}
.w32{width:73.805000pt;}
.w26{width:75.197000pt;}
.w2e{width:75.893000pt;}
.w6{width:77.749000pt;}
.w4{width:77.981000pt;}
.w15{width:78.648000pt;}
.w1c{width:78.677000pt;}
.w14{width:78.909000pt;}
.w3b{width:81.432000pt;}
.w16{width:81.461000pt;}
.w3c{width:85.405000pt;}
.w2c{width:89.349000pt;}
.w2b{width:95.381000pt;}
.w1b{width:99.093000pt;}
.w13{width:99.325000pt;}
.wf{width:102.080000pt;}
.w2f{width:112.317000pt;}
.w25{width:112.549000pt;}
.w28{width:127.623200pt;}
.w17{width:127.855200pt;}
.wd{width:128.087200pt;}
.wa{width:128.319200pt;}
.w34{width:166.367200pt;}
.w27{width:172.898000pt;}
.w23{width:196.562000pt;}
.w44{width:202.594000pt;}
.w45{width:202.791200pt;}
.w43{width:202.802800pt;}
.w46{width:202.826000pt;}
.w2a{width:206.967200pt;}
.w22{width:213.266000pt;}
.w18{width:224.367200pt;}
.w10{width:224.610800pt;}
.w1f{width:245.537200pt;}
.w1e{width:245.548800pt;}
.w20{width:247.138000pt;}
.wb{width:256.418000pt;}
.w3e{width:316.993200pt;}
.w36{width:382.660800pt;}
.w3f{width:383.113200pt;}
.w5{width:415.628000pt;}
.we{width:427.425200pt;}
.wc{width:427.657200pt;}
.w24{width:489.902800pt;}
.w21{width:492.675200pt;}
.w1d{width:492.907200pt;}
.w2{width:690.663990pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.w29{width:810.550000pt;}
.w35{width:810.782000pt;}
.w42{width:811.710000pt;}
.w9{width:976.487985pt;}
.w7{width:1122.400000pt;}
.w8{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x52{left:5.336000pt;}
.x1c{left:6.264000pt;}
.x2c{left:7.192000pt;}
.x65{left:8.120000pt;}
.x39{left:9.744000pt;}
.x6b{left:10.892400pt;}
.x4{left:12.000000pt;}
.x3{left:13.333333pt;}
.x34{left:14.848000pt;}
.x7c{left:15.810800pt;}
.x37{left:16.738800pt;}
.x2f{left:17.632000pt;}
.x63{left:18.560000pt;}
.x32{left:19.488000pt;}
.x40{left:20.880000pt;}
.x41{left:22.028400pt;}
.x3c{left:23.002800pt;}
.x5{left:24.000000pt;}
.x3f{left:25.056000pt;}
.x1b{left:25.989800pt;}
.x3e{left:27.376000pt;}
.x77{left:29.023200pt;}
.x36{left:30.392000pt;}
.x64{left:31.354800pt;}
.x38{left:32.944000pt;}
.x24{left:34.341800pt;}
.x6{left:36.000000pt;}
.x69{left:36.922800pt;}
.x68{left:38.048000pt;}
.x1f{left:39.005000pt;}
.x5a{left:41.284400pt;}
.x7a{left:42.711200pt;}
.x58{left:44.346800pt;}
.x3d{left:46.202800pt;}
.x1d{left:47.328000pt;}
.x3b{left:49.450800pt;}
.x1{left:51.600010pt;}
.x5e{left:52.884400pt;}
.x1e{left:55.703200pt;}
.x3a{left:57.304000pt;}
.x28{left:60.000000pt;}
.x66{left:61.248000pt;}
.x6c{left:63.104000pt;}
.x51{left:64.994800pt;}
.x83{left:68.695200pt;}
.x21{left:72.960015pt;}
.x2a{left:74.698200pt;}
.x4f{left:76.362800pt;}
.x85{left:77.952000pt;}
.x22{left:82.156985pt;}
.x81{left:85.613800pt;}
.x46{left:94.220990pt;}
.x9{left:98.628990pt;}
.x27{left:113.912000pt;}
.xa{left:115.100990pt;}
.x10{left:119.503190pt;}
.xc{left:129.026790pt;}
.x7e{left:130.639200pt;}
.x11{left:131.567190pt;}
.x76{left:134.815200pt;}
.x13{left:135.743190pt;}
.x17{left:140.881990pt;}
.x44{left:148.073990pt;}
.x18{left:150.229000pt;}
.x12{left:152.249990pt;}
.x23{left:155.117000pt;}
.xd{left:156.193990pt;}
.x45{left:168.721990pt;}
.x4b{left:169.649990pt;}
.x49{left:175.444200pt;}
.x79{left:177.973000pt;}
.x1a{left:182.642000pt;}
.x4d{left:196.335800pt;}
.x7{left:209.089990pt;}
.x20{left:212.337990pt;}
.x75{left:220.778800pt;}
.x19{left:228.210000pt;}
.x4e{left:232.850000pt;}
.x16{left:241.593190pt;}
.x80{left:262.919800pt;}
.x53{left:265.098000pt;}
.x56{left:269.172200pt;}
.x48{left:273.388790pt;}
.x7d{left:282.396200pt;}
.x25{left:283.442000pt;}
.x74{left:284.495800pt;}
.x6d{left:290.759800pt;}
.x62{left:293.068200pt;}
.x6a{left:298.415800pt;}
.x7b{left:326.255800pt;}
.x67{left:335.303800pt;}
.x54{left:340.996800pt;}
.x78{left:346.903800pt;}
.x82{left:358.610000pt;}
.x57{left:363.482000pt;}
.x2b{left:379.722000pt;}
.x4a{left:396.004000pt;}
.x2d{left:432.873200pt;}
.x50{left:446.580000pt;}
.x59{left:458.868800pt;}
.x4c{left:481.086790pt;}
.x2e{left:501.092800pt;}
.x42{left:511.675985pt;}
.x55{left:514.358800pt;}
.x6e{left:537.772000pt;}
.x26{left:539.860000pt;}
.x5b{left:548.444000pt;}
.x84{left:561.436000pt;}
.x7f{left:567.181990pt;}
.x14{left:574.141990pt;}
.xb{left:579.245990pt;}
.x29{left:580.405990pt;}
.xe{left:582.029990pt;}
.x8{left:585.045990pt;}
.xf{left:586.205990pt;}
.x47{left:592.005990pt;}
.x6f{left:593.684000pt;}
.x15{left:598.037990pt;}
.x30{left:600.412000pt;}
.x5c{left:615.492000pt;}
.x70{left:655.860000pt;}
.x2{left:675.317190pt;}
.x31{left:679.326800pt;}
.x5d{left:691.622800pt;}
.x71{left:725.030800pt;}
.x33{left:758.206800pt;}
.x86{left:764.470800pt;}
.x72{left:798.830000pt;}
.x5f{left:804.166000pt;}
.x35{left:839.662000pt;}
.x60{left:845.462000pt;}
.x73{left:880.494000pt;}
.x43{left:882.957185pt;}
.x61{left:892.790000pt;}
}




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