
    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_764d46bcf7ec4eae7474ef4a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c36d99d48f428f7d31b204e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b1fae694cc6033d19f0c0b28.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_33485f468ad9a12c3b4b76cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_07cc8ff3edb09d8d6c76d6b2.woff2')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_fb688691734fba2a35efe966.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_89f1fc2b2f0f336bb3bb5c4f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ec792503fe9832f5de6a3287.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_62414835f0f75cb71d1b20c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a82ca6767207ed2aea3671bd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7815aa440abc59f9bad4480b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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);}
.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);}
.m2{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);}
.v1{vertical-align:-82.080000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-2.880000px;}
.lsf{letter-spacing:-2.736000px;}
.ls27{letter-spacing:-2.250000px;}
.ls26{letter-spacing:-1.440000px;}
.ls2c{letter-spacing:-1.296000px;}
.ls22{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.738000px;}
.lsa{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.636000px;}
.ls1e{letter-spacing:-0.570000px;}
.ls1f{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.457800px;}
.ls11{letter-spacing:-0.423600px;}
.ls13{letter-spacing:-0.382800px;}
.ls8{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.270600px;}
.ls18{letter-spacing:-0.211800px;}
.ls2a{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.332640px;}
.ls12{letter-spacing:0.363000px;}
.ls19{letter-spacing:0.364200px;}
.ls24{letter-spacing:0.387600px;}
.ls1c{letter-spacing:0.463800px;}
.ls2{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.562800px;}
.ls21{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.702000px;}
.ls7{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.731520px;}
.ls6{letter-spacing:1.152000px;}
.ls1{letter-spacing:1.440000px;}
.ls29{letter-spacing:2.340000px;}
.ls9{letter-spacing:5.040000px;}
.ls5{letter-spacing:13.680000px;}
.lsb{letter-spacing:15.120000px;}
.ls28{letter-spacing:23.760000px;}
.ls10{letter-spacing:27.504000px;}
.ls4{letter-spacing:33.264000px;}
.ls25{letter-spacing:57.421440px;}
.ls3{letter-spacing:63.504000px;}
.ls2b{letter-spacing:193.680000px;}
.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;}
}
.ws0{word-spacing:-22.320000px;}
.ws1e{word-spacing:-20.880000px;}
.ws21{word-spacing:-19.440000px;}
.ws3{word-spacing:-19.152000px;}
.ws5{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.208000px;}
.ws19{word-spacing:-17.064000px;}
.ws22{word-spacing:-16.704000px;}
.ws1f{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.264000px;}
.ws16{word-spacing:-14.506440px;}
.ws14{word-spacing:-14.132280px;}
.wsa{word-spacing:-14.031480px;}
.ws1d{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.668480px;}
.ws9{word-spacing:-13.244880px;}
.wsf{word-spacing:-13.068720px;}
.ws18{word-spacing:-13.014720px;}
.ws1a{word-spacing:-12.438720px;}
.wsb{word-spacing:-12.366720px;}
.wse{word-spacing:-12.096120px;}
.wsc{word-spacing:-11.983920px;}
.ws17{word-spacing:-11.730720px;}
.ws15{word-spacing:-11.628720px;}
.ws13{word-spacing:-11.302320px;}
.ws1b{word-spacing:-11.127120px;}
.ws12{word-spacing:-11.103720px;}
.ws1c{word-spacing:-10.739520px;}
.ws11{word-spacing:-10.527720px;}
.ws10{word-spacing:-10.281720px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-4.368000px;}
._8{margin-left:-2.928000px;}
._0{margin-left:-1.584000px;}
._1{width:1.080000px;}
._2{width:2.880000px;}
._f{width:4.164000px;}
._7{width:5.616000px;}
._4{width:6.984000px;}
._5{width:8.136000px;}
._6{width:9.852000px;}
._d{width:11.232000px;}
._e{width:12.408000px;}
._20{width:13.560000px;}
._a{width:15.492000px;}
._9{width:16.596000px;}
._1e{width:19.008000px;}
._b{width:20.160000px;}
._c{width:21.480000px;}
._21{width:22.512000px;}
._11{width:24.468000px;}
._10{width:25.788000px;}
._1f{width:27.264000px;}
._23{width:28.584000px;}
._27{width:30.744000px;}
._17{width:33.708000px;}
._24{width:46.092000px;}
._18{width:47.244000px;}
._25{width:48.744000px;}
._26{width:50.220000px;}
._1a{width:88.092000px;}
._1d{width:135.300000px;}
._1b{width:139.260000px;}
._13{width:143.292000px;}
._16{width:156.396000px;}
._19{width:158.844000px;}
._1c{width:170.052000px;}
._14{width:193.800000px;}
._15{width:195.120000px;}
._3{width:846.276000px;}
._22{width:2827.715280px;}
.fc2{color:rgb(38,74,96);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:3.240000px;}
.yec{bottom:3.270000px;}
.yd7{bottom:3.600000px;}
.y1d3{bottom:3.630000px;}
.y1f4{bottom:3.645000px;}
.yc0{bottom:3.960000px;}
.yc2{bottom:4.005000px;}
.yb4{bottom:4.320000px;}
.y2e2{bottom:4.323000px;}
.y266{bottom:4.350000px;}
.y2c5{bottom:4.365000px;}
.y259{bottom:4.680000px;}
.y297{bottom:4.683000px;}
.y1d1{bottom:5.040000px;}
.y1e2{bottom:5.070000px;}
.y10b{bottom:8.640000px;}
.y109{bottom:10.800000px;}
.ydb{bottom:11.520000px;}
.yfb{bottom:11.550000px;}
.ye1{bottom:11.880000px;}
.y1ae{bottom:11.910000px;}
.y139{bottom:12.240000px;}
.y14a{bottom:12.270000px;}
.y1b8{bottom:12.285000px;}
.y195{bottom:12.960000px;}
.y137{bottom:14.400000px;}
.y144{bottom:14.445000px;}
.y2eb{bottom:14.760000px;}
.y1ca{bottom:18.000000px;}
.yd9{bottom:18.360000px;}
.ye9{bottom:18.720000px;}
.y107{bottom:19.080000px;}
.y1d7{bottom:19.440000px;}
.y200{bottom:19.443000px;}
.y1fb{bottom:19.470000px;}
.y1f2{bottom:19.485000px;}
.y1d5{bottom:19.800000px;}
.y1d0{bottom:19.830000px;}
.yb6{bottom:22.680000px;}
.y175{bottom:25.200000px;}
.y274{bottom:25.203000px;}
.y17d{bottom:25.230000px;}
.y279{bottom:25.245000px;}
.y191{bottom:25.560000px;}
.y1c9{bottom:32.760000px;}
.y1e8{bottom:32.790000px;}
.y20b{bottom:36.720000px;}
.y15a{bottom:36.750000px;}
.y1a3{bottom:36.765000px;}
.y146{bottom:37.080000px;}
.y13a{bottom:37.110000px;}
.y194{bottom:37.485000px;}
.y1a8{bottom:38.160000px;}
.y1ac{bottom:38.190000px;}
.y1aa{bottom:38.520000px;}
.y1b6{bottom:38.565000px;}
.y2c0{bottom:46.080000px;}
.y1cb{bottom:47.160000px;}
.y1e9{bottom:47.550000px;}
.y2a2{bottom:48.600000px;}
.y257{bottom:48.960000px;}
.y263{bottom:48.990000px;}
.y26a{bottom:49.005000px;}
.y46{bottom:57.636000px;}
.y1b1{bottom:61.590000px;}
.y1a4{bottom:61.605000px;}
.y13b{bottom:64.440000px;}
.y148{bottom:64.470000px;}
.y2bf{bottom:66.600000px;}
.y18d{bottom:66.960000px;}
.y1ce{bottom:69.480000px;}
.y1ec{bottom:69.840000px;}
.y1de{bottom:69.870000px;}
.y45{bottom:77.436000px;}
.y17a{bottom:79.200000px;}
.y1eb{bottom:84.240000px;}
.y1cd{bottom:84.270000px;}
.y1a6{bottom:90.720000px;}
.y1b3{bottom:90.765000px;}
.y18c{bottom:91.485000px;}
.y2b6{bottom:93.285000px;}
.y12c{bottom:96.516000px;}
.y150{bottom:97.596000px;}
.y1c1{bottom:99.756000px;}
.y9a{bottom:100.116000px;}
.y2d4{bottom:101.916000px;}
.yab{bottom:102.996000px;}
.y179{bottom:103.680000px;}
.y24d{bottom:103.716000px;}
.y21c{bottom:109.116000px;}
.y298{bottom:109.476000px;}
.y2b3{bottom:110.916000px;}
.y2e9{bottom:112.350000px;}
.y270{bottom:112.359000px;}
.y19e{bottom:113.436000px;}
.y203{bottom:113.796000px;}
.y6b{bottom:114.876000px;}
.y282{bottom:115.560000px;}
.y170{bottom:116.316000px;}
.y18b{bottom:116.325000px;}
.y167{bottom:117.030000px;}
.y15b{bottom:117.045000px;}
.y26f{bottom:120.636000px;}
.y102{bottom:122.796000px;}
.y132{bottom:123.156000px;}
.y292{bottom:127.152000px;}
.y178{bottom:128.550000px;}
.y202{bottom:130.392000px;}
.y1c0{bottom:130.752000px;}
.y2b2{bottom:131.832000px;}
.ycd{bottom:132.912000px;}
.y2d5{bottom:133.245000px;}
.yaa{bottom:133.992000px;}
.y14f{bottom:135.792000px;}
.y246{bottom:136.872000px;}
.y24c{bottom:137.592000px;}
.y5f{bottom:139.032000px;}
.y125{bottom:140.472000px;}
.y18a{bottom:141.165000px;}
.y273{bottom:142.632000px;}
.y99{bottom:142.992000px;}
.y2d3{bottom:143.352000px;}
.y1ff{bottom:144.432000px;}
.y19d{bottom:144.792000px;}
.y7f{bottom:145.872000px;}
.y2e0{bottom:148.032000px;}
.y101{bottom:149.472000px;}
.y2b1{bottom:152.355000px;}
.y230{bottom:153.795000px;}
.y131{bottom:154.515000px;}
.y277{bottom:155.550000px;}
.y294{bottom:155.553000px;}
.y2da{bottom:155.565000px;}
.y6a{bottom:157.755000px;}
.ycc{bottom:158.835000px;}
.y16f{bottom:159.555000px;}
.y201{bottom:160.635000px;}
.y2c1{bottom:161.355000px;}
.y1bf{bottom:161.715000px;}
.ya9{bottom:164.955000px;}
.y14e{bottom:166.755000px;}
.y245{bottom:167.835000px;}
.y5e{bottom:169.995000px;}
.y2af{bottom:170.355000px;}
.y124{bottom:171.435000px;}
.ycb{bottom:173.595000px;}
.y19c{bottom:175.755000px;}
.y293{bottom:176.433000px;}
.y1f9{bottom:176.475000px;}
.y7e{bottom:176.835000px;}
.y22f{bottom:180.435000px;}
.y130{bottom:181.515000px;}
.y21b{bottom:182.595000px;}
.y2d2{bottom:183.315000px;}
.y272{bottom:185.835000px;}
.y98{bottom:186.195000px;}
.yff{bottom:188.355000px;}
.y69{bottom:189.075000px;}
.y2f5{bottom:190.875000px;}
.y296{bottom:192.315000px;}
.y1be{bottom:192.675000px;}
.yb7{bottom:193.395000px;}
.y43{bottom:194.835000px;}
.ya8{bottom:195.915000px;}
.y14d{bottom:198.075000px;}
.y244{bottom:198.795000px;}
.y5d{bottom:200.955000px;}
.y16e{bottom:202.395000px;}
.y2d{bottom:202.755000px;}
.y100{bottom:204.555000px;}
.y24b{bottom:205.635000px;}
.y19b{bottom:206.715000px;}
.y7d{bottom:208.155000px;}
.y2f4{bottom:208.515000px;}
.y1fd{bottom:208.875000px;}
.y22e{bottom:211.755000px;}
.yca{bottom:213.195000px;}
.y2b0{bottom:214.635000px;}
.y21a{bottom:219.315000px;}
.y68{bottom:220.035000px;}
.yfd{bottom:220.395000px;}
.y1bd{bottom:223.995000px;}
.y14c{bottom:224.715000px;}
.y1fe{bottom:225.075000px;}
.ya7{bottom:227.235000px;}
.y2d1{bottom:227.955000px;}
.y271{bottom:228.675000px;}
.y97{bottom:229.035000px;}
.y243{bottom:229.755000px;}
.y2f3{bottom:230.835000px;}
.y5c{bottom:231.915000px;}
.yc9{bottom:232.995000px;}
.y123{bottom:233.715000px;}
.y19a{bottom:235.155000px;}
.yfe{bottom:236.595000px;}
.y2ae{bottom:236.955000px;}
.y42{bottom:238.035000px;}
.y7c{bottom:239.115000px;}
.y24a{bottom:239.475000px;}
.y1fa{bottom:241.275000px;}
.y22d{bottom:242.715000px;}
.y2c{bottom:245.595000px;}
.y14b{bottom:246.675000px;}
.y2d0{bottom:249.915000px;}
.y26e{bottom:250.635000px;}
.yc8{bottom:252.795000px;}
.y2ef{bottom:253.155000px;}
.y1bc{bottom:254.955000px;}
.y219{bottom:256.035000px;}
.y1fc{bottom:257.475000px;}
.y147{bottom:259.635000px;}
.y96{bottom:260.355000px;}
.y242{bottom:261.105000px;}
.y5b{bottom:263.265000px;}
.y122{bottom:264.705000px;}
.yfc{bottom:269.025000px;}
.y7b{bottom:270.105000px;}
.y2cf{bottom:272.265000px;}
.yc7{bottom:272.625000px;}
.y1f7{bottom:273.705000px;}
.y198{bottom:274.065000px;}
.y2f2{bottom:275.145000px;}
.y295{bottom:278.385000px;}
.y41{bottom:280.905000px;}
.yf9{bottom:285.225000px;}
.y149{bottom:285.945000px;}
.y2b{bottom:289.185000px;}
.y95{bottom:291.345000px;}
.y241{bottom:292.065000px;}
.yc6{bottom:292.425000px;}
.y218{bottom:292.785000px;}
.y67{bottom:294.225000px;}
.y2ce{bottom:294.585000px;}
.y121{bottom:295.665000px;}
.y2f1{bottom:297.465000px;}
.y2e1{bottom:298.905000px;}
.y199{bottom:299.985000px;}
.y7a{bottom:301.065000px;}
.yfa{bottom:301.425000px;}
.y2ad{bottom:303.585000px;}
.y22c{bottom:304.665000px;}
.y5a{bottom:306.105000px;}
.y249{bottom:306.825000px;}
.y16d{bottom:307.905000px;}
.yc5{bottom:312.225000px;}
.y1bb{bottom:316.905000px;}
.y26d{bottom:317.265000px;}
.yf7{bottom:317.625000px;}
.y2a{bottom:320.145000px;}
.y291{bottom:321.225000px;}
.y240{bottom:323.025000px;}
.y40{bottom:324.105000px;}
.y66{bottom:325.185000px;}
.y189{bottom:326.265000px;}
.y120{bottom:326.985000px;}
.y217{bottom:329.505000px;}
.y1f8{bottom:332.025000px;}
.ya6{bottom:332.385000px;}
.yf8{bottom:333.465000px;}
.y94{bottom:334.185000px;}
.y1b9{bottom:334.905000px;}
.y22b{bottom:335.985000px;}
.y59{bottom:337.065000px;}
.y2cd{bottom:337.425000px;}
.y145{bottom:338.145000px;}
.y16c{bottom:338.865000px;}
.y2f0{bottom:340.305000px;}
.yb8{bottom:341.385000px;}
.y2aa{bottom:341.745000px;}
.y79{bottom:344.265000px;}
.yf5{bottom:349.665000px;}
.y1f6{bottom:350.385000px;}
.yc4{bottom:352.185000px;}
.y197{bottom:352.545000px;}
.y23f{bottom:353.985000px;}
.y269{bottom:355.785000px;}
.y65{bottom:356.145000px;}
.y11f{bottom:357.945000px;}
.y1ba{bottom:360.825000px;}
.y248{bottom:361.905000px;}
.y290{bottom:362.625000px;}
.y29{bottom:363.345000px;}
.y2ac{bottom:364.065000px;}
.y1f5{bottom:364.785000px;}
.y93{bottom:365.505000px;}
.yf6{bottom:365.865000px;}
.y216{bottom:366.225000px;}
.y3f{bottom:366.945000px;}
.y58{bottom:368.385000px;}
.yc3{bottom:371.985000px;}
.y78{bottom:375.225000px;}
.y1f1{bottom:377.745000px;}
.y26c{bottom:378.105000px;}
.y193{bottom:378.825000px;}
.y2cc{bottom:380.265000px;}
.yf3{bottom:382.065000px;}
.y2ee{bottom:383.145000px;}
.y23e{bottom:385.305000px;}
.y2ab{bottom:386.385000px;}
.y1b2{bottom:387.105000px;}
.y64{bottom:387.465000px;}
.y143{bottom:387.825000px;}
.y11e{bottom:388.905000px;}
.y247{bottom:389.625000px;}
.yc1{bottom:391.785000px;}
.y1f3{bottom:393.585000px;}
.y28{bottom:394.350000px;}
.y92{bottom:396.510000px;}
.y22a{bottom:397.950000px;}
.yf4{bottom:398.310000px;}
.y57{bottom:399.390000px;}
.y26b{bottom:400.110000px;}
.y13{bottom:401.550000px;}
.y215{bottom:402.990000px;}
.y196{bottom:405.150000px;}
.y2de{bottom:405.510000px;}
.y77{bottom:406.230000px;}
.y28f{bottom:408.390000px;}
.y16b{bottom:409.470000px;}
.y1ea{bottom:409.830000px;}
.y3e{bottom:410.190000px;}
.ybf{bottom:411.630000px;}
.y1b7{bottom:413.430000px;}
.yf1{bottom:414.510000px;}
.y23d{bottom:416.310000px;}
.y63{bottom:418.470000px;}
.y166{bottom:422.430000px;}
.y2cb{bottom:423.150000px;}
.y2ed{bottom:424.590000px;}
.y27{bottom:425.310000px;}
.y1f0{bottom:426.030000px;}
.y91{bottom:427.470000px;}
.y2df{bottom:427.830000px;}
.y229{bottom:428.910000px;}
.y142{bottom:429.270000px;}
.y56{bottom:430.350000px;}
.yf2{bottom:430.710000px;}
.y190{bottom:431.070000px;}
.ybe{bottom:431.430000px;}
.y11d{bottom:432.150000px;}
.y76{bottom:437.550000px;}
.y1b4{bottom:439.710000px;}
.y1ee{bottom:442.230000px;}
.y12{bottom:444.390000px;}
.yef{bottom:446.550000px;}
.y28d{bottom:446.910000px;}
.y23c{bottom:447.270000px;}
.y16a{bottom:448.710000px;}
.y2a9{bottom:449.790000px;}
.ybd{bottom:451.230000px;}
.y3d{bottom:453.030000px;}
.y141{bottom:453.390000px;}
.y26{bottom:456.630000px;}
.y192{bottom:457.350000px;}
.y1ef{bottom:458.430000px;}
.y228{bottom:460.230000px;}
.y55{bottom:461.310000px;}
.yf0{bottom:462.750000px;}
.y11c{bottom:463.110000px;}
.y268{bottom:463.830000px;}
.y1b5{bottom:465.990000px;}
.y28e{bottom:469.230000px;}
.y90{bottom:470.670000px;}
.ybc{bottom:471.030000px;}
.y1ed{bottom:474.630000px;}
.y169{bottom:474.990000px;}
.y214{bottom:476.430000px;}
.y23b{bottom:478.230000px;}
.yed{bottom:478.950000px;}
.y75{bottom:480.390000px;}
.y140{bottom:481.470000px;}
.y18e{bottom:483.630000px;}
.y11{bottom:487.590000px;}
.y2ec{bottom:488.310000px;}
.y267{bottom:489.030000px;}
.ybb{bottom:490.830000px;}
.y227{bottom:491.190000px;}
.y1b0{bottom:492.270000px;}
.y54{bottom:492.630000px;}
.y11b{bottom:494.070000px;}
.yee{bottom:495.150000px;}
.y2a8{bottom:495.870000px;}
.y3c{bottom:496.230000px;}
.y168{bottom:501.270000px;}
.y1e6{bottom:506.670000px;}
.y2ca{bottom:508.830000px;}
.y23a{bottom:509.550000px;}
.y18f{bottom:509.910000px;}
.yba{bottom:510.630000px;}
.y74{bottom:511.350000px;}
.y13f{bottom:512.790000px;}
.y8f{bottom:513.150000px;}
.y28c{bottom:513.510000px;}
.y25{bottom:518.550000px;}
.y226{bottom:522.150000px;}
.y53{bottom:523.590000px;}
.y11a{bottom:525.030000px;}
.y12b{bottom:527.190000px;}
.yeb{bottom:527.550000px;}
.ya5{bottom:530.100000px;}
.yb9{bottom:530.460000px;}
.y2c9{bottom:531.180000px;}
.y10{bottom:533.340000px;}
.y2a7{bottom:535.860000px;}
.y187{bottom:536.220000px;}
.y3b{bottom:539.460000px;}
.y239{bottom:540.540000px;}
.ye8{bottom:543.780000px;}
.y13e{bottom:544.140000px;}
.y265{bottom:549.540000px;}
.y213{bottom:549.900000px;}
.yb3{bottom:550.260000px;}
.y225{bottom:553.140000px;}
.y165{bottom:553.500000px;}
.y12a{bottom:553.860000px;}
.y73{bottom:554.220000px;}
.y52{bottom:554.580000px;}
.y28b{bottom:554.940000px;}
.y119{bottom:556.380000px;}
.y8e{bottom:556.740000px;}
.y2a6{bottom:557.820000px;}
.yea{bottom:559.620000px;}
.y24{bottom:561.780000px;}
.y188{bottom:562.500000px;}
.y212{bottom:563.940000px;}
.y1e7{bottom:565.380000px;}
.y62{bottom:566.460000px;}
.y238{bottom:571.500000px;}
.y264{bottom:571.860000px;}
.y2c8{bottom:574.020000px;}
.y2ea{bottom:575.460000px;}
.ye6{bottom:575.820000px;}
.y2dd{bottom:578.700000px;}
.y28a{bottom:580.140000px;}
.yf{bottom:581.580000px;}
.y3a{bottom:582.300000px;}
.y1e5{bottom:583.740000px;}
.y224{bottom:586.980000px;}
.y118{bottom:587.340000px;}
.y13d{bottom:588.060000px;}
.yb5{bottom:588.420000px;}
.y210{bottom:590.220000px;}
.ye7{bottom:592.020000px;}
.y23{bottom:592.740000px;}
.y262{bottom:594.180000px;}
.y1e3{bottom:596.340000px;}
.y51{bottom:597.780000px;}
.y8d{bottom:599.580000px;}
.y186{bottom:599.940000px;}
.y289{bottom:600.660000px;}
.y237{bottom:602.460000px;}
.y164{bottom:603.180000px;}
.y1af{bottom:606.060000px;}
.ye4{bottom:608.220000px;}
.y12f{bottom:612.180000px;}
.y1e4{bottom:612.540000px;}
.y13c{bottom:613.980000px;}
.y211{bottom:616.500000px;}
.y2c3{bottom:617.175000px;}
.y117{bottom:618.300000px;}
.y288{bottom:618.660000px;}
.yb2{bottom:620.100000px;}
.y2a5{bottom:621.540000px;}
.y22{bottom:623.700000px;}
.y185{bottom:624.060000px;}
.ye5{bottom:624.420000px;}
.y39{bottom:625.500000px;}
.y1dd{bottom:628.380000px;}
.y50{bottom:628.740000px;}
.ye{bottom:629.820000px;}
.y8c{bottom:630.900000px;}
.y236{bottom:633.780000px;}
.y261{bottom:635.580000px;}
.y2c2{bottom:637.740000px;}
.y138{bottom:640.260000px;}
.y72{bottom:640.620000px;}
.y20f{bottom:642.780000px;}
.y12e{bottom:643.140000px;}
.y163{bottom:644.580000px;}
.y2dc{bottom:645.300000px;}
.yb1{bottom:646.020000px;}
.y2a4{bottom:646.740000px;}
.y116{bottom:649.260000px;}
.y1ad{bottom:649.980000px;}
.y184{bottom:652.140000px;}
.ya4{bottom:654.660000px;}
.ye3{bottom:656.820000px;}
.y4f{bottom:659.700000px;}
.y1e1{bottom:660.780000px;}
.y281{bottom:662.970000px;}
.y235{bottom:664.770000px;}
.y21{bottom:666.570000px;}
.y2a3{bottom:667.290000px;}
.y38{bottom:668.370000px;}
.y162{bottom:668.730000px;}
.y12d{bottom:670.170000px;}
.y71{bottom:671.610000px;}
.ye0{bottom:672.690000px;}
.yb0{bottom:673.410000px;}
.y8b{bottom:673.770000px;}
.y1a5{bottom:675.930000px;}
.y115{bottom:677.010000px;}
.yd{bottom:678.090000px;}
.y223{bottom:680.250000px;}
.y260{bottom:681.330000px;}
.y183{bottom:683.490000px;}
.y287{bottom:685.290000px;}
.ya3{bottom:686.010000px;}
.ye2{bottom:688.890000px;}
.y136{bottom:689.970000px;}
.y4e{bottom:690.690000px;}
.y114{bottom:692.130000px;}
.y1df{bottom:693.210000px;}
.y234{bottom:695.730000px;}
.y161{bottom:696.810000px;}
.y25e{bottom:698.970000px;}
.y1ab{bottom:702.210000px;}
.y70{bottom:702.930000px;}
.yaf{bottom:703.650000px;}
.y8a{bottom:705.090000px;}
.y286{bottom:707.250000px;}
.y111{bottom:708.330000px;}
.y1e0{bottom:709.410000px;}
.y20{bottom:709.770000px;}
.y222{bottom:711.210000px;}
.y37{bottom:711.570000px;}
.y182{bottom:711.930000px;}
.ya2{bottom:716.970000px;}
.ydf{bottom:721.290000px;}
.y4d{bottom:722.010000px;}
.y113{bottom:724.530000px;}
.y2e8{bottom:724.890000px;}
.y1dc{bottom:725.610000px;}
.yc{bottom:726.330000px;}
.y233{bottom:726.690000px;}
.y160{bottom:728.130000px;}
.y1a7{bottom:728.490000px;}
.y285{bottom:729.570000px;}
.y135{bottom:731.370000px;}
.y61{bottom:733.890000px;}
.y89{bottom:736.050000px;}
.y181{bottom:736.770000px;}
.ydd{bottom:737.490000px;}
.y112{bottom:740.730000px;}
.y221{bottom:742.170000px;}
.y25f{bottom:743.610000px;}
.yae{bottom:745.770000px;}
.y2c7{bottom:750.090000px;}
.y180{bottom:750.810000px;}
.y284{bottom:751.890000px;}
.y1f{bottom:752.970000px;}
.yde{bottom:753.690000px;}
.y1a9{bottom:754.770000px;}
.y134{bottom:755.490000px;}
.y10f{bottom:756.570000px;}
.y232{bottom:758.010000px;}
.y15f{bottom:759.090000px;}
.ya1{bottom:759.810000px;}
.y4c{bottom:764.850000px;}
.y25d{bottom:765.570000px;}
.yda{bottom:769.890000px;}
.y36{bottom:770.610000px;}
.y2e7{bottom:770.970000px;}
.y2c6{bottom:772.410000px;}
.y283{bottom:773.850000px;}
.yb{bottom:774.570000px;}
.yad{bottom:777.090000px;}
.y88{bottom:778.530000px;}
.y1a1{bottom:781.050000px;}
.y133{bottom:783.570000px;}
.y1e{bottom:783.930000px;}
.ydc{bottom:785.730000px;}
.y110{bottom:787.530000px;}
.y2e6{bottom:788.610000px;}
.y231{bottom:788.970000px;}
.y20e{bottom:792.570000px;}
.y220{bottom:793.290000px;}
.y2c4{bottom:794.730000px;}
.y4b{bottom:795.855000px;}
.y280{bottom:796.215000px;}
.yd6{bottom:801.975000px;}
.y1db{bottom:802.335000px;}
.ya0{bottom:803.055000px;}
.y177{bottom:803.415000px;}
.y10e{bottom:803.775000px;}
.y25c{bottom:807.015000px;}
.y6f{bottom:808.095000px;}
.y2e5{bottom:810.975000px;}
.y35{bottom:812.055000px;}
.y1d9{bottom:814.935000px;}
.y2db{bottom:815.295000px;}
.y2be{bottom:816.735000px;}
.y2a1{bottom:818.175000px;}
.y20c{bottom:818.895000px;}
.y10a{bottom:819.975000px;}
.y87{bottom:822.135000px;}
.ya{bottom:822.855000px;}
.y1d{bottom:827.175000px;}
.y15e{bottom:829.335000px;}
.y17f{bottom:829.695000px;}
.y1da{bottom:831.135000px;}
.y25b{bottom:832.215000px;}
.yd8{bottom:832.935000px;}
.y9f{bottom:834.015000px;}
.y10d{bottom:836.175000px;}
.y27f{bottom:837.615000px;}
.y6e{bottom:839.055000px;}
.y20d{bottom:845.175000px;}
.y1cc{bottom:847.335000px;}
.yd4{bottom:849.135000px;}
.y21f{bottom:850.935000px;}
.y10c{bottom:852.015000px;}
.y86{bottom:853.095000px;}
.y34{bottom:853.455000px;}
.y1a2{bottom:855.255000px;}
.y15d{bottom:855.615000px;}
.y29f{bottom:856.695000px;}
.y1c{bottom:858.135000px;}
.y27e{bottom:862.815000px;}
.y1d8{bottom:863.175000px;}
.y9e{bottom:864.975000px;}
.y106{bottom:868.215000px;}
.y6d{bottom:870.015000px;}
.y256{bottom:870.735000px;}
.y9{bottom:871.095000px;}
.y209{bottom:871.455000px;}
.yd3{bottom:877.215000px;}
.y2e4{bottom:877.575000px;}
.y2a0{bottom:879.015000px;}
.y1d4{bottom:879.375000px;}
.y2d9{bottom:880.455000px;}
.y15c{bottom:881.895000px;}
.y21e{bottom:882.255000px;}
.y27d{bottom:883.335000px;}
.y1b{bottom:889.095000px;}
.y1a0{bottom:890.175000px;}
.y25a{bottom:893.055000px;}
.y33{bottom:894.855000px;}
.y1d6{bottom:895.575000px;}
.y85{bottom:895.935000px;}
.y108{bottom:899.175000px;}
.y2bd{bottom:899.535000px;}
.y6c{bottom:900.975000px;}
.yd2{bottom:902.775000px;}
.y8{bottom:907.095000px;}
.y9d{bottom:908.175000px;}
.y1cf{bottom:911.775000px;}
.y19f{bottom:913.215000px;}
.y258{bottom:915.015000px;}
.y1a{bottom:920.055000px;}
.y2d8{bottom:921.855000px;}
.y27c{bottom:923.295000px;}
.y2bc{bottom:924.735000px;}
.y105{bottom:927.255000px;}
.y1d2{bottom:927.975000px;}
.yd1{bottom:931.965000px;}
.y4a{bottom:932.325000px;}
.y17e{bottom:934.485000px;}
.y32{bottom:936.285000px;}
.y255{bottom:937.365000px;}
.y84{bottom:939.165000px;}
.y2e3{bottom:940.965000px;}
.y7{bottom:943.485000px;}
.y1c7{bottom:944.205000px;}
.y20a{bottom:945.645000px;}
.y129{bottom:946.725000px;}
.y2d7{bottom:947.085000px;}
.y19{bottom:951.405000px;}
.y104{bottom:953.205000px;}
.y159{bottom:957.525000px;}
.y17b{bottom:960.765000px;}
.yd0{bottom:962.925000px;}
.y49{bottom:963.285000px;}
.y29e{bottom:964.725000px;}
.y27b{bottom:966.165000px;}
.y83{bottom:970.485000px;}
.y21d{bottom:975.165000px;}
.y31{bottom:977.685000px;}
.y254{bottom:978.765000px;}
.y103{bottom:982.005000px;}
.y18{bottom:982.365000px;}
.y17c{bottom:986.685000px;}
.y2bb{bottom:987.045000px;}
.y6{bottom:988.845000px;}
.y29d{bottom:989.925000px;}
.y48{bottom:994.245000px;}
.y128{bottom:996.045000px;}
.y158{bottom:998.925000px;}
.y1c8{bottom:1002.525000px;}
.y253{bottom:1003.965000px;}
.y2b5{bottom:1004.685000px;}
.ycf{bottom:1006.485000px;}
.y27a{bottom:1009.005000px;}
.y29c{bottom:1010.805000px;}
.y82{bottom:1012.965000px;}
.y17{bottom:1013.325000px;}
.y30{bottom:1019.085000px;}
.y157{bottom:1020.885000px;}
.y1c6{bottom:1021.965000px;}
.y127{bottom:1024.845000px;}
.y47{bottom:1025.205000px;}
.y2ba{bottom:1027.005000px;}
.y299{bottom:1028.445000px;}
.y208{bottom:1029.165000px;}
.y2d6{bottom:1029.885000px;}
.y5{bottom:1032.045000px;}
.yce{bottom:1037.445000px;}
.y176{bottom:1039.245000px;}
.y9c{bottom:1044.285000px;}
.y156{bottom:1045.005000px;}
.y2b9{bottom:1048.965000px;}
.y1c5{bottom:1049.325000px;}
.y29b{bottom:1050.405000px;}
.y278{bottom:1052.205000px;}
.y126{bottom:1056.165000px;}
.y16{bottom:1056.525000px;}
.y2f{bottom:1060.485000px;}
.y252{bottom:1065.210000px;}
.yac{bottom:1068.450000px;}
.y2b8{bottom:1071.330000px;}
.y1c4{bottom:1072.410000px;}
.y29a{bottom:1072.770000px;}
.y155{bottom:1073.490000px;}
.y4{bottom:1075.290000px;}
.y9b{bottom:1075.650000px;}
.y174{bottom:1077.810000px;}
.y251{bottom:1085.730000px;}
.y207{bottom:1087.170000px;}
.y15{bottom:1087.530000px;}
.y2b7{bottom:1093.650000px;}
.y276{bottom:1095.090000px;}
.y1c3{bottom:1099.050000px;}
.y81{bottom:1099.410000px;}
.y154{bottom:1100.490000px;}
.y2e{bottom:1101.930000px;}
.y173{bottom:1103.010000px;}
.y250{bottom:1106.610000px;}
.y206{bottom:1115.610000px;}
.y3{bottom:1118.130000px;}
.y14{bottom:1118.490000px;}
.y153{bottom:1122.450000px;}
.y24f{bottom:1127.130000px;}
.y1c2{bottom:1130.370000px;}
.y80{bottom:1130.730000px;}
.y172{bottom:1131.090000px;}
.y275{bottom:1136.490000px;}
.y205{bottom:1140.450000px;}
.y152{bottom:1144.410000px;}
.y2b4{bottom:1157.010000px;}
.y24e{bottom:1160.610000px;}
.y2{bottom:1161.330000px;}
.y60{bottom:1161.690000px;}
.y171{bottom:1162.410000px;}
.y204{bottom:1165.290000px;}
.y151{bottom:1166.370000px;}
.y44{bottom:1193.370000px;}
.y1{bottom:1194.450000px;}
.h16{height:14.400000px;}
.h20{height:14.436000px;}
.h1e{height:14.760000px;}
.h1c{height:14.796000px;}
.h12{height:18.000000px;}
.h13{height:18.036000px;}
.he{height:18.360000px;}
.h11{height:18.396000px;}
.h48{height:20.520000px;}
.h4f{height:20.556000px;}
.h4c{height:20.880000px;}
.h4b{height:20.916000px;}
.h29{height:24.480000px;}
.h30{height:24.516000px;}
.h28{height:24.840000px;}
.h2c{height:24.876000px;}
.h1a{height:29.520000px;}
.h1d{height:30.600000px;}
.h1b{height:30.636000px;}
.h1f{height:30.960000px;}
.h21{height:30.996000px;}
.hf{height:36.720000px;}
.h49{height:41.400000px;}
.h4d{height:41.436000px;}
.h18{height:45.360000px;}
.h22{height:45.720000px;}
.h24{height:45.756000px;}
.h23{height:46.800000px;}
.h19{height:47.264766px;}
.h17{height:48.656953px;}
.h2e{height:49.356000px;}
.h2a{height:49.680000px;}
.h26{height:49.716000px;}
.h31{height:50.229844px;}
.h34{height:50.760000px;}
.h38{height:50.796000px;}
.h35{height:51.120000px;}
.h32{height:51.156000px;}
.h36{height:53.704687px;}
.hb{height:54.426094px;}
.h39{height:55.147500px;}
.hc{height:56.520000px;}
.h3f{height:58.320000px;}
.h43{height:58.716000px;}
.h14{height:59.357813px;}
.hd{height:60.155156px;}
.h25{height:60.952500px;}
.ha{height:61.927031px;}
.h54{height:64.800000px;}
.h9{height:64.978594px;}
.h4e{height:65.160000px;}
.h4a{height:65.196000px;}
.h7{height:65.884219px;}
.h2{height:67.824844px;}
.h15{height:70.628906px;}
.h5{height:70.664062px;}
.h2d{height:71.613281px;}
.h3{height:72.562500px;}
.h3e{height:73.080000px;}
.h41{height:73.116000px;}
.h42{height:73.476000px;}
.h6{height:74.004654px;}
.h3b{height:74.196000px;}
.h8{height:74.953125px;}
.h27{height:77.040000px;}
.h2b{height:77.076000px;}
.h47{height:81.970312px;}
.h56{height:82.800000px;}
.h4{height:84.172500px;}
.h46{height:85.845399px;}
.h44{height:95.400000px;}
.h40{height:95.436000px;}
.h3a{height:98.676000px;}
.h45{height:99.036000px;}
.h3c{height:103.320000px;}
.h3d{height:103.356000px;}
.h55{height:109.476000px;}
.h50{height:128.556000px;}
.h2f{height:129.636000px;}
.h52{height:131.760000px;}
.h58{height:149.436000px;}
.h59{height:171.750000px;}
.h53{height:192.630000px;}
.h51{height:192.675000px;}
.h33{height:208.110000px;}
.h37{height:208.515000px;}
.h10{height:355.425000px;}
.h57{height:653.940000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:9.000000px;}
.w13{width:38.916000px;}
.w7e{width:42.480000px;}
.w8{width:42.516000px;}
.w53{width:50.796000px;}
.w5d{width:51.876000px;}
.w29{width:52.956000px;}
.w54{width:53.316000px;}
.wd{width:54.036000px;}
.w42{width:54.360000px;}
.w48{width:54.756000px;}
.w22{width:55.080000px;}
.w90{width:55.440000px;}
.w73{width:55.476000px;}
.w16{width:57.636000px;}
.w6a{width:57.996000px;}
.w38{width:59.796000px;}
.w34{width:61.200000px;}
.w21{width:61.236000px;}
.w43{width:61.596000px;}
.w87{width:62.280000px;}
.w57{width:63.036000px;}
.w4d{width:63.756000px;}
.w61{width:64.116000px;}
.w3a{width:66.276000px;}
.w78{width:66.600000px;}
.w67{width:67.680000px;}
.w68{width:68.040000px;}
.w69{width:68.076000px;}
.w35{width:68.436000px;}
.w4a{width:68.760000px;}
.w4c{width:68.796000px;}
.w4b{width:69.156000px;}
.w49{width:69.516000px;}
.w3e{width:70.236000px;}
.w37{width:70.596000px;}
.w36{width:71.640000px;}
.w72{width:72.756000px;}
.w88{width:73.116000px;}
.w2e{width:73.476000px;}
.w89{width:74.196000px;}
.w55{width:74.520000px;}
.w56{width:74.556000px;}
.w5f{width:74.880000px;}
.w60{width:74.916000px;}
.w5e{width:75.636000px;}
.w2d{width:75.960000px;}
.w70{width:76.356000px;}
.w97{width:77.076000px;}
.wf{width:78.480000px;}
.we{width:78.516000px;}
.w10{width:78.876000px;}
.w82{width:79.596000px;}
.w7{width:79.920000px;}
.w6{width:80.316000px;}
.w30{width:81.396000px;}
.w5{width:82.116000px;}
.w17{width:83.196000px;}
.w18{width:83.556000px;}
.w25{width:84.276000px;}
.w28{width:84.996000px;}
.w12{width:86.436000px;}
.w76{width:88.236000px;}
.w1e{width:88.596000px;}
.w98{width:91.116000px;}
.w1d{width:91.476000px;}
.w75{width:91.836000px;}
.w26{width:93.996000px;}
.w27{width:94.356000px;}
.w93{width:94.716000px;}
.w83{width:97.956000px;}
.w41{width:100.476000px;}
.w40{width:100.836000px;}
.w3f{width:101.232000px;}
.w11{width:104.796000px;}
.w71{width:109.116000px;}
.w1f{width:109.476000px;}
.w7c{width:109.512000px;}
.w20{width:109.836000px;}
.w7a{width:110.196000px;}
.w77{width:110.232000px;}
.w45{width:115.956000px;}
.w1c{width:116.316000px;}
.w63{width:127.512000px;}
.w44{width:127.836000px;}
.w6e{width:128.232000px;}
.w92{width:128.916000px;}
.w4f{width:132.156000px;}
.w9{width:133.236000px;}
.w6c{width:134.676000px;}
.w8f{width:135.036000px;}
.w59{width:159.555000px;}
.w58{width:167.070000px;}
.w85{width:170.715000px;}
.w2c{width:171.435000px;}
.w62{width:173.550000px;}
.w3{width:176.835000px;}
.w81{width:177.555000px;}
.w7d{width:184.350000px;}
.w8d{width:184.395000px;}
.w4e{width:190.155000px;}
.w6b{width:197.355000px;}
.w7f{width:203.115000px;}
.w1a{width:205.995000px;}
.w14{width:216.075000px;}
.w39{width:219.315000px;}
.w5a{width:230.115000px;}
.wb{width:233.025000px;}
.w2a{width:234.075000px;}
.w64{width:237.675000px;}
.w3c{width:243.795000px;}
.w94{width:244.515000px;}
.w7b{width:245.595000px;}
.w50{width:253.905000px;}
.w6d{width:255.345000px;}
.w8c{width:263.985000px;}
.w2f{width:272.265000px;}
.w33{width:276.585000px;}
.w66{width:276.945000px;}
.w3b{width:280.545000px;}
.w47{width:280.905000px;}
.w52{width:281.265000px;}
.w24{width:287.025000px;}
.w5c{width:304.665000px;}
.w95{width:308.625000px;}
.w8a{width:329.910000px;}
.w31{width:347.190000px;}
.w32{width:348.270000px;}
.w5b{width:365.190000px;}
.w86{width:372.390000px;}
.w46{width:386.070000px;}
.w51{width:389.670000px;}
.w65{width:390.030000px;}
.wc{width:399.030000px;}
.w4{width:405.510000px;}
.w3d{width:407.700000px;}
.w15{width:422.820000px;}
.w2b{width:430.020000px;}
.w6f{width:441.870000px;}
.w1b{width:520.020000px;}
.w79{width:520.380000px;}
.w74{width:531.930000px;}
.w8e{width:538.770000px;}
.w84{width:574.410000px;}
.w80{width:581.250000px;}
.w96{width:648.975000px;}
.w23{width:649.335000px;}
.w91{width:659.415000px;}
.w8b{width:667.695000px;}
.wa{width:688.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x26{left:4.680000px;}
.x1e{left:5.760000px;}
.x22{left:7.200000px;}
.x20{left:9.000000px;}
.x1d{left:10.080000px;}
.x49{left:11.160000px;}
.x25{left:12.240000px;}
.x37{left:13.320000px;}
.x5a{left:14.400000px;}
.x1a{left:15.480000px;}
.x64{left:17.280000px;}
.x1b{left:18.360000px;}
.x33{left:19.800000px;}
.x28{left:21.240000px;}
.x23{left:23.040000px;}
.x3a{left:24.120000px;}
.x19{left:25.590000px;}
.x3b{left:27.000000px;}
.x47{left:28.080000px;}
.x4a{left:29.925000px;}
.x71{left:30.960000px;}
.x5e{left:32.430000px;}
.x68{left:33.870000px;}
.x60{left:35.670000px;}
.x6e{left:37.440000px;}
.x5d{left:38.925000px;}
.xa2{left:39.960000px;}
.xa5{left:41.760000px;}
.x5f{left:42.870000px;}
.xb1{left:43.920000px;}
.x61{left:46.110000px;}
.x82{left:47.205000px;}
.x40{left:48.279000px;}
.x4b{left:55.119000px;}
.x29{left:63.399000px;}
.x87{left:66.630000px;}
.x9a{left:70.590000px;}
.x8d{left:72.390000px;}
.x94{left:78.510000px;}
.x77{left:81.390000px;}
.x8{left:84.995987px;}
.x6{left:91.475987px;}
.x4e{left:93.635987px;}
.x75{left:102.276000px;}
.x6a{left:104.795987px;}
.x3f{left:106.956000px;}
.x10{left:111.995987px;}
.x2e{left:117.756000px;}
.x7e{left:121.035000px;}
.x63{left:122.076000px;}
.x83{left:127.515000px;}
.xb6{left:128.919000px;}
.x5{left:130.715987px;}
.xb7{left:132.519000px;}
.xb8{left:135.399000px;}
.x9{left:137.915987px;}
.x11{left:138.995987px;}
.x9d{left:142.992000px;}
.xa6{left:144.405000px;}
.x17{left:146.235000px;}
.x8b{left:148.752000px;}
.x31{left:151.230000px;}
.xb5{left:154.509000px;}
.x27{left:156.315000px;}
.x62{left:159.195000px;}
.x42{left:163.155000px;}
.x12{left:164.234987px;}
.xac{left:167.109000px;}
.x2a{left:171.074987px;}
.x67{left:175.035000px;}
.xad{left:178.629000px;}
.x58{left:180.795000px;}
.x4c{left:184.394987px;}
.x57{left:186.555000px;}
.x2f{left:189.789000px;}
.x13{left:191.954987px;}
.xc4{left:193.389000px;}
.xa4{left:195.195000px;}
.xc{left:198.794987px;}
.xb{left:201.314987px;}
.xc0{left:207.429000px;}
.x54{left:208.514987px;}
.x69{left:211.434000px;}
.xa8{left:212.835000px;}
.x2c{left:214.274987px;}
.x4{left:216.434987px;}
.xc3{left:218.589000px;}
.xc5{left:220.035000px;}
.x4d{left:222.914987px;}
.x39{left:223.995000px;}
.x3e{left:226.874987px;}
.x84{left:228.674987px;}
.x56{left:230.474987px;}
.xcc{left:240.189000px;}
.xa7{left:241.269000px;}
.x72{left:243.824987px;}
.x7d{left:245.264987px;}
.x55{left:247.064987px;}
.xc7{left:248.874000px;}
.x50{left:249.944987px;}
.xb9{left:255.705000px;}
.x85{left:257.864987px;}
.x73{left:260.024987px;}
.x4f{left:263.264987px;}
.xbc{left:269.754000px;}
.x3c{left:283.784987px;}
.x16{left:290.985000px;}
.xab{left:294.585000px;}
.x2d{left:302.864987px;}
.xa9{left:306.105000px;}
.x3{left:312.224987px;}
.x92{left:315.105000px;}
.x99{left:322.665000px;}
.x74{left:323.744987px;}
.x41{left:324.825000px;}
.x6b{left:328.064987px;}
.xae{left:330.585000px;}
.x7{left:332.429987px;}
.x2b{left:333.869987px;}
.x3d{left:338.189987px;}
.x9e{left:340.350000px;}
.xba{left:348.630000px;}
.x30{left:352.230000px;}
.x15{left:353.309987px;}
.xb2{left:355.830000px;}
.x9f{left:362.309987px;}
.x1c{left:372.390000px;}
.x14{left:377.789987px;}
.x7c{left:384.270000px;}
.xa0{left:389.309987px;}
.xcb{left:393.630000px;}
.x59{left:395.790000px;}
.xc6{left:402.990000px;}
.x44{left:409.470000px;}
.xa{left:413.789987px;}
.xaf{left:423.510000px;}
.x34{left:432.180000px;}
.x52{left:438.299987px;}
.xf{left:442.259987px;}
.xb3{left:445.500000px;}
.x2{left:446.579987px;}
.x93{left:450.180000px;}
.x76{left:451.980000px;}
.x1f{left:453.780000px;}
.x70{left:455.220000px;}
.xbd{left:457.380000px;}
.x86{left:471.060000px;}
.xd{left:472.859987px;}
.x8c{left:474.660000px;}
.xc8{left:479.340000px;}
.x5b{left:485.820000px;}
.xcd{left:490.140000px;}
.x45{left:494.460000px;}
.xaa{left:506.700000px;}
.x35{left:512.100000px;}
.xb0{left:513.540000px;}
.xe{left:516.059987px;}
.x79{left:521.850000px;}
.x96{left:527.250000px;}
.x8f{left:529.410000px;}
.xc1{left:531.930000px;}
.x80{left:533.730000px;}
.x21{left:535.170000px;}
.x6c{left:538.050000px;}
.x88{left:542.370000px;}
.x9b{left:545.250000px;}
.xbb{left:549.570000px;}
.xb4{left:556.410000px;}
.xce{left:564.330000px;}
.xc9{left:575.130000px;}
.x46{left:579.450000px;}
.xa3{left:583.410000px;}
.xbe{left:585.570000px;}
.x65{left:590.610000px;}
.x36{left:592.410000px;}
.x7a{left:595.290000px;}
.x5c{left:596.730000px;}
.x97{left:603.570000px;}
.x90{left:605.370000px;}
.x89{left:612.570000px;}
.x9c{left:614.415000px;}
.x24{left:616.575000px;}
.x6f{left:624.495000px;}
.x81{left:635.655000px;}
.xc2{left:642.855000px;}
.xca{left:649.695000px;}
.xbf{left:660.135000px;}
.x48{left:664.095000px;}
.x7b{left:667.335000px;}
.x38{left:672.375000px;}
.x98{left:679.935000px;}
.x91{left:681.375000px;}
.x8a{left:683.175000px;}
.x66{left:686.415000px;}
.xa1{left:694.335000px;}
.x18{left:698.295000px;}
.x6d{left:710.925000px;}
.x78{left:730.005000px;}
.x7f{left:737.925000px;}
.x43{left:749.085000px;}
.x32{left:752.685000px;}
.x95{left:756.285000px;}
.x8e{left:757.365000px;}
.x51{left:791.564987px;}
.x53{left:799.844987px;}
.x1{left:808.169987px;}
@media print{
.v1{vertical-align:-72.960000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.560000pt;}
.lsf{letter-spacing:-2.432000pt;}
.ls27{letter-spacing:-2.000000pt;}
.ls26{letter-spacing:-1.280000pt;}
.ls2c{letter-spacing:-1.152000pt;}
.ls22{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.656000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.565333pt;}
.ls1e{letter-spacing:-0.506667pt;}
.ls1f{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.406933pt;}
.ls11{letter-spacing:-0.376533pt;}
.ls13{letter-spacing:-0.340267pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.240533pt;}
.ls18{letter-spacing:-0.188267pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.295680pt;}
.ls12{letter-spacing:0.322667pt;}
.ls19{letter-spacing:0.323733pt;}
.ls24{letter-spacing:0.344533pt;}
.ls1c{letter-spacing:0.412267pt;}
.ls2{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.500267pt;}
.ls21{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.624000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.650240pt;}
.ls6{letter-spacing:1.024000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls29{letter-spacing:2.080000pt;}
.ls9{letter-spacing:4.480000pt;}
.ls5{letter-spacing:12.160000pt;}
.lsb{letter-spacing:13.440000pt;}
.ls28{letter-spacing:21.120000pt;}
.ls10{letter-spacing:24.448000pt;}
.ls4{letter-spacing:29.568000pt;}
.ls25{letter-spacing:51.041280pt;}
.ls3{letter-spacing:56.448000pt;}
.ls2b{letter-spacing:172.160000pt;}
.ws0{word-spacing:-19.840000pt;}
.ws1e{word-spacing:-18.560000pt;}
.ws21{word-spacing:-17.280000pt;}
.ws3{word-spacing:-17.024000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.296000pt;}
.ws19{word-spacing:-15.168000pt;}
.ws22{word-spacing:-14.848000pt;}
.ws1f{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.568000pt;}
.ws16{word-spacing:-12.894613pt;}
.ws14{word-spacing:-12.562027pt;}
.wsa{word-spacing:-12.472427pt;}
.ws1d{word-spacing:-12.160000pt;}
.wsd{word-spacing:-12.149760pt;}
.ws9{word-spacing:-11.773227pt;}
.wsf{word-spacing:-11.616640pt;}
.ws18{word-spacing:-11.568640pt;}
.ws1a{word-spacing:-11.056640pt;}
.wsb{word-spacing:-10.992640pt;}
.wse{word-spacing:-10.752107pt;}
.wsc{word-spacing:-10.652373pt;}
.ws17{word-spacing:-10.427307pt;}
.ws15{word-spacing:-10.336640pt;}
.ws13{word-spacing:-10.046507pt;}
.ws1b{word-spacing:-9.890773pt;}
.ws12{word-spacing:-9.869973pt;}
.ws1c{word-spacing:-9.546240pt;}
.ws11{word-spacing:-9.357973pt;}
.ws10{word-spacing:-9.139307pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-3.882667pt;}
._8{margin-left:-2.602667pt;}
._0{margin-left:-1.408000pt;}
._1{width:0.960000pt;}
._2{width:2.560000pt;}
._f{width:3.701333pt;}
._7{width:4.992000pt;}
._4{width:6.208000pt;}
._5{width:7.232000pt;}
._6{width:8.757333pt;}
._d{width:9.984000pt;}
._e{width:11.029333pt;}
._20{width:12.053333pt;}
._a{width:13.770667pt;}
._9{width:14.752000pt;}
._1e{width:16.896000pt;}
._b{width:17.920000pt;}
._c{width:19.093333pt;}
._21{width:20.010667pt;}
._11{width:21.749333pt;}
._10{width:22.922667pt;}
._1f{width:24.234667pt;}
._23{width:25.408000pt;}
._27{width:27.328000pt;}
._17{width:29.962667pt;}
._24{width:40.970667pt;}
._18{width:41.994667pt;}
._25{width:43.328000pt;}
._26{width:44.640000pt;}
._1a{width:78.304000pt;}
._1d{width:120.266667pt;}
._1b{width:123.786667pt;}
._13{width:127.370667pt;}
._16{width:139.018667pt;}
._19{width:141.194667pt;}
._1c{width:151.157333pt;}
._14{width:172.266667pt;}
._15{width:173.440000pt;}
._3{width:752.245333pt;}
._22{width:2513.524693pt;}
.fs5{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:2.880000pt;}
.yec{bottom:2.906667pt;}
.yd7{bottom:3.200000pt;}
.y1d3{bottom:3.226667pt;}
.y1f4{bottom:3.240000pt;}
.yc0{bottom:3.520000pt;}
.yc2{bottom:3.560000pt;}
.yb4{bottom:3.840000pt;}
.y2e2{bottom:3.842667pt;}
.y266{bottom:3.866667pt;}
.y2c5{bottom:3.880000pt;}
.y259{bottom:4.160000pt;}
.y297{bottom:4.162667pt;}
.y1d1{bottom:4.480000pt;}
.y1e2{bottom:4.506667pt;}
.y10b{bottom:7.680000pt;}
.y109{bottom:9.600000pt;}
.ydb{bottom:10.240000pt;}
.yfb{bottom:10.266667pt;}
.ye1{bottom:10.560000pt;}
.y1ae{bottom:10.586667pt;}
.y139{bottom:10.880000pt;}
.y14a{bottom:10.906667pt;}
.y1b8{bottom:10.920000pt;}
.y195{bottom:11.520000pt;}
.y137{bottom:12.800000pt;}
.y144{bottom:12.840000pt;}
.y2eb{bottom:13.120000pt;}
.y1ca{bottom:16.000000pt;}
.yd9{bottom:16.320000pt;}
.ye9{bottom:16.640000pt;}
.y107{bottom:16.960000pt;}
.y1d7{bottom:17.280000pt;}
.y200{bottom:17.282667pt;}
.y1fb{bottom:17.306667pt;}
.y1f2{bottom:17.320000pt;}
.y1d5{bottom:17.600000pt;}
.y1d0{bottom:17.626667pt;}
.yb6{bottom:20.160000pt;}
.y175{bottom:22.400000pt;}
.y274{bottom:22.402667pt;}
.y17d{bottom:22.426667pt;}
.y279{bottom:22.440000pt;}
.y191{bottom:22.720000pt;}
.y1c9{bottom:29.120000pt;}
.y1e8{bottom:29.146667pt;}
.y20b{bottom:32.640000pt;}
.y15a{bottom:32.666667pt;}
.y1a3{bottom:32.680000pt;}
.y146{bottom:32.960000pt;}
.y13a{bottom:32.986667pt;}
.y194{bottom:33.320000pt;}
.y1a8{bottom:33.920000pt;}
.y1ac{bottom:33.946667pt;}
.y1aa{bottom:34.240000pt;}
.y1b6{bottom:34.280000pt;}
.y2c0{bottom:40.960000pt;}
.y1cb{bottom:41.920000pt;}
.y1e9{bottom:42.266667pt;}
.y2a2{bottom:43.200000pt;}
.y257{bottom:43.520000pt;}
.y263{bottom:43.546667pt;}
.y26a{bottom:43.560000pt;}
.y46{bottom:51.232000pt;}
.y1b1{bottom:54.746667pt;}
.y1a4{bottom:54.760000pt;}
.y13b{bottom:57.280000pt;}
.y148{bottom:57.306667pt;}
.y2bf{bottom:59.200000pt;}
.y18d{bottom:59.520000pt;}
.y1ce{bottom:61.760000pt;}
.y1ec{bottom:62.080000pt;}
.y1de{bottom:62.106667pt;}
.y45{bottom:68.832000pt;}
.y17a{bottom:70.400000pt;}
.y1eb{bottom:74.880000pt;}
.y1cd{bottom:74.906667pt;}
.y1a6{bottom:80.640000pt;}
.y1b3{bottom:80.680000pt;}
.y18c{bottom:81.320000pt;}
.y2b6{bottom:82.920000pt;}
.y12c{bottom:85.792000pt;}
.y150{bottom:86.752000pt;}
.y1c1{bottom:88.672000pt;}
.y9a{bottom:88.992000pt;}
.y2d4{bottom:90.592000pt;}
.yab{bottom:91.552000pt;}
.y179{bottom:92.160000pt;}
.y24d{bottom:92.192000pt;}
.y21c{bottom:96.992000pt;}
.y298{bottom:97.312000pt;}
.y2b3{bottom:98.592000pt;}
.y2e9{bottom:99.866667pt;}
.y270{bottom:99.874667pt;}
.y19e{bottom:100.832000pt;}
.y203{bottom:101.152000pt;}
.y6b{bottom:102.112000pt;}
.y282{bottom:102.720000pt;}
.y170{bottom:103.392000pt;}
.y18b{bottom:103.400000pt;}
.y167{bottom:104.026667pt;}
.y15b{bottom:104.040000pt;}
.y26f{bottom:107.232000pt;}
.y102{bottom:109.152000pt;}
.y132{bottom:109.472000pt;}
.y292{bottom:113.024000pt;}
.y178{bottom:114.266667pt;}
.y202{bottom:115.904000pt;}
.y1c0{bottom:116.224000pt;}
.y2b2{bottom:117.184000pt;}
.ycd{bottom:118.144000pt;}
.y2d5{bottom:118.440000pt;}
.yaa{bottom:119.104000pt;}
.y14f{bottom:120.704000pt;}
.y246{bottom:121.664000pt;}
.y24c{bottom:122.304000pt;}
.y5f{bottom:123.584000pt;}
.y125{bottom:124.864000pt;}
.y18a{bottom:125.480000pt;}
.y273{bottom:126.784000pt;}
.y99{bottom:127.104000pt;}
.y2d3{bottom:127.424000pt;}
.y1ff{bottom:128.384000pt;}
.y19d{bottom:128.704000pt;}
.y7f{bottom:129.664000pt;}
.y2e0{bottom:131.584000pt;}
.y101{bottom:132.864000pt;}
.y2b1{bottom:135.426667pt;}
.y230{bottom:136.706667pt;}
.y131{bottom:137.346667pt;}
.y277{bottom:138.266667pt;}
.y294{bottom:138.269333pt;}
.y2da{bottom:138.280000pt;}
.y6a{bottom:140.226667pt;}
.ycc{bottom:141.186667pt;}
.y16f{bottom:141.826667pt;}
.y201{bottom:142.786667pt;}
.y2c1{bottom:143.426667pt;}
.y1bf{bottom:143.746667pt;}
.ya9{bottom:146.626667pt;}
.y14e{bottom:148.226667pt;}
.y245{bottom:149.186667pt;}
.y5e{bottom:151.106667pt;}
.y2af{bottom:151.426667pt;}
.y124{bottom:152.386667pt;}
.ycb{bottom:154.306667pt;}
.y19c{bottom:156.226667pt;}
.y293{bottom:156.829333pt;}
.y1f9{bottom:156.866667pt;}
.y7e{bottom:157.186667pt;}
.y22f{bottom:160.386667pt;}
.y130{bottom:161.346667pt;}
.y21b{bottom:162.306667pt;}
.y2d2{bottom:162.946667pt;}
.y272{bottom:165.186667pt;}
.y98{bottom:165.506667pt;}
.yff{bottom:167.426667pt;}
.y69{bottom:168.066667pt;}
.y2f5{bottom:169.666667pt;}
.y296{bottom:170.946667pt;}
.y1be{bottom:171.266667pt;}
.yb7{bottom:171.906667pt;}
.y43{bottom:173.186667pt;}
.ya8{bottom:174.146667pt;}
.y14d{bottom:176.066667pt;}
.y244{bottom:176.706667pt;}
.y5d{bottom:178.626667pt;}
.y16e{bottom:179.906667pt;}
.y2d{bottom:180.226667pt;}
.y100{bottom:181.826667pt;}
.y24b{bottom:182.786667pt;}
.y19b{bottom:183.746667pt;}
.y7d{bottom:185.026667pt;}
.y2f4{bottom:185.346667pt;}
.y1fd{bottom:185.666667pt;}
.y22e{bottom:188.226667pt;}
.yca{bottom:189.506667pt;}
.y2b0{bottom:190.786667pt;}
.y21a{bottom:194.946667pt;}
.y68{bottom:195.586667pt;}
.yfd{bottom:195.906667pt;}
.y1bd{bottom:199.106667pt;}
.y14c{bottom:199.746667pt;}
.y1fe{bottom:200.066667pt;}
.ya7{bottom:201.986667pt;}
.y2d1{bottom:202.626667pt;}
.y271{bottom:203.266667pt;}
.y97{bottom:203.586667pt;}
.y243{bottom:204.226667pt;}
.y2f3{bottom:205.186667pt;}
.y5c{bottom:206.146667pt;}
.yc9{bottom:207.106667pt;}
.y123{bottom:207.746667pt;}
.y19a{bottom:209.026667pt;}
.yfe{bottom:210.306667pt;}
.y2ae{bottom:210.626667pt;}
.y42{bottom:211.586667pt;}
.y7c{bottom:212.546667pt;}
.y24a{bottom:212.866667pt;}
.y1fa{bottom:214.466667pt;}
.y22d{bottom:215.746667pt;}
.y2c{bottom:218.306667pt;}
.y14b{bottom:219.266667pt;}
.y2d0{bottom:222.146667pt;}
.y26e{bottom:222.786667pt;}
.yc8{bottom:224.706667pt;}
.y2ef{bottom:225.026667pt;}
.y1bc{bottom:226.626667pt;}
.y219{bottom:227.586667pt;}
.y1fc{bottom:228.866667pt;}
.y147{bottom:230.786667pt;}
.y96{bottom:231.426667pt;}
.y242{bottom:232.093333pt;}
.y5b{bottom:234.013333pt;}
.y122{bottom:235.293333pt;}
.yfc{bottom:239.133333pt;}
.y7b{bottom:240.093333pt;}
.y2cf{bottom:242.013333pt;}
.yc7{bottom:242.333333pt;}
.y1f7{bottom:243.293333pt;}
.y198{bottom:243.613333pt;}
.y2f2{bottom:244.573333pt;}
.y295{bottom:247.453333pt;}
.y41{bottom:249.693333pt;}
.yf9{bottom:253.533333pt;}
.y149{bottom:254.173333pt;}
.y2b{bottom:257.053333pt;}
.y95{bottom:258.973333pt;}
.y241{bottom:259.613333pt;}
.yc6{bottom:259.933333pt;}
.y218{bottom:260.253333pt;}
.y67{bottom:261.533333pt;}
.y2ce{bottom:261.853333pt;}
.y121{bottom:262.813333pt;}
.y2f1{bottom:264.413333pt;}
.y2e1{bottom:265.693333pt;}
.y199{bottom:266.653333pt;}
.y7a{bottom:267.613333pt;}
.yfa{bottom:267.933333pt;}
.y2ad{bottom:269.853333pt;}
.y22c{bottom:270.813333pt;}
.y5a{bottom:272.093333pt;}
.y249{bottom:272.733333pt;}
.y16d{bottom:273.693333pt;}
.yc5{bottom:277.533333pt;}
.y1bb{bottom:281.693333pt;}
.y26d{bottom:282.013333pt;}
.yf7{bottom:282.333333pt;}
.y2a{bottom:284.573333pt;}
.y291{bottom:285.533333pt;}
.y240{bottom:287.133333pt;}
.y40{bottom:288.093333pt;}
.y66{bottom:289.053333pt;}
.y189{bottom:290.013333pt;}
.y120{bottom:290.653333pt;}
.y217{bottom:292.893333pt;}
.y1f8{bottom:295.133333pt;}
.ya6{bottom:295.453333pt;}
.yf8{bottom:296.413333pt;}
.y94{bottom:297.053333pt;}
.y1b9{bottom:297.693333pt;}
.y22b{bottom:298.653333pt;}
.y59{bottom:299.613333pt;}
.y2cd{bottom:299.933333pt;}
.y145{bottom:300.573333pt;}
.y16c{bottom:301.213333pt;}
.y2f0{bottom:302.493333pt;}
.yb8{bottom:303.453333pt;}
.y2aa{bottom:303.773333pt;}
.y79{bottom:306.013333pt;}
.yf5{bottom:310.813333pt;}
.y1f6{bottom:311.453333pt;}
.yc4{bottom:313.053333pt;}
.y197{bottom:313.373333pt;}
.y23f{bottom:314.653333pt;}
.y269{bottom:316.253333pt;}
.y65{bottom:316.573333pt;}
.y11f{bottom:318.173333pt;}
.y1ba{bottom:320.733333pt;}
.y248{bottom:321.693333pt;}
.y290{bottom:322.333333pt;}
.y29{bottom:322.973333pt;}
.y2ac{bottom:323.613333pt;}
.y1f5{bottom:324.253333pt;}
.y93{bottom:324.893333pt;}
.yf6{bottom:325.213333pt;}
.y216{bottom:325.533333pt;}
.y3f{bottom:326.173333pt;}
.y58{bottom:327.453333pt;}
.yc3{bottom:330.653333pt;}
.y78{bottom:333.533333pt;}
.y1f1{bottom:335.773333pt;}
.y26c{bottom:336.093333pt;}
.y193{bottom:336.733333pt;}
.y2cc{bottom:338.013333pt;}
.yf3{bottom:339.613333pt;}
.y2ee{bottom:340.573333pt;}
.y23e{bottom:342.493333pt;}
.y2ab{bottom:343.453333pt;}
.y1b2{bottom:344.093333pt;}
.y64{bottom:344.413333pt;}
.y143{bottom:344.733333pt;}
.y11e{bottom:345.693333pt;}
.y247{bottom:346.333333pt;}
.yc1{bottom:348.253333pt;}
.y1f3{bottom:349.853333pt;}
.y28{bottom:350.533333pt;}
.y92{bottom:352.453333pt;}
.y22a{bottom:353.733333pt;}
.yf4{bottom:354.053333pt;}
.y57{bottom:355.013333pt;}
.y26b{bottom:355.653333pt;}
.y13{bottom:356.933333pt;}
.y215{bottom:358.213333pt;}
.y196{bottom:360.133333pt;}
.y2de{bottom:360.453333pt;}
.y77{bottom:361.093333pt;}
.y28f{bottom:363.013333pt;}
.y16b{bottom:363.973333pt;}
.y1ea{bottom:364.293333pt;}
.y3e{bottom:364.613333pt;}
.ybf{bottom:365.893333pt;}
.y1b7{bottom:367.493333pt;}
.yf1{bottom:368.453333pt;}
.y23d{bottom:370.053333pt;}
.y63{bottom:371.973333pt;}
.y166{bottom:375.493333pt;}
.y2cb{bottom:376.133333pt;}
.y2ed{bottom:377.413333pt;}
.y27{bottom:378.053333pt;}
.y1f0{bottom:378.693333pt;}
.y91{bottom:379.973333pt;}
.y2df{bottom:380.293333pt;}
.y229{bottom:381.253333pt;}
.y142{bottom:381.573333pt;}
.y56{bottom:382.533333pt;}
.yf2{bottom:382.853333pt;}
.y190{bottom:383.173333pt;}
.ybe{bottom:383.493333pt;}
.y11d{bottom:384.133333pt;}
.y76{bottom:388.933333pt;}
.y1b4{bottom:390.853333pt;}
.y1ee{bottom:393.093333pt;}
.y12{bottom:395.013333pt;}
.yef{bottom:396.933333pt;}
.y28d{bottom:397.253333pt;}
.y23c{bottom:397.573333pt;}
.y16a{bottom:398.853333pt;}
.y2a9{bottom:399.813333pt;}
.ybd{bottom:401.093333pt;}
.y3d{bottom:402.693333pt;}
.y141{bottom:403.013333pt;}
.y26{bottom:405.893333pt;}
.y192{bottom:406.533333pt;}
.y1ef{bottom:407.493333pt;}
.y228{bottom:409.093333pt;}
.y55{bottom:410.053333pt;}
.yf0{bottom:411.333333pt;}
.y11c{bottom:411.653333pt;}
.y268{bottom:412.293333pt;}
.y1b5{bottom:414.213333pt;}
.y28e{bottom:417.093333pt;}
.y90{bottom:418.373333pt;}
.ybc{bottom:418.693333pt;}
.y1ed{bottom:421.893333pt;}
.y169{bottom:422.213333pt;}
.y214{bottom:423.493333pt;}
.y23b{bottom:425.093333pt;}
.yed{bottom:425.733333pt;}
.y75{bottom:427.013333pt;}
.y140{bottom:427.973333pt;}
.y18e{bottom:429.893333pt;}
.y11{bottom:433.413333pt;}
.y2ec{bottom:434.053333pt;}
.y267{bottom:434.693333pt;}
.ybb{bottom:436.293333pt;}
.y227{bottom:436.613333pt;}
.y1b0{bottom:437.573333pt;}
.y54{bottom:437.893333pt;}
.y11b{bottom:439.173333pt;}
.yee{bottom:440.133333pt;}
.y2a8{bottom:440.773333pt;}
.y3c{bottom:441.093333pt;}
.y168{bottom:445.573333pt;}
.y1e6{bottom:450.373333pt;}
.y2ca{bottom:452.293333pt;}
.y23a{bottom:452.933333pt;}
.y18f{bottom:453.253333pt;}
.yba{bottom:453.893333pt;}
.y74{bottom:454.533333pt;}
.y13f{bottom:455.813333pt;}
.y8f{bottom:456.133333pt;}
.y28c{bottom:456.453333pt;}
.y25{bottom:460.933333pt;}
.y226{bottom:464.133333pt;}
.y53{bottom:465.413333pt;}
.y11a{bottom:466.693333pt;}
.y12b{bottom:468.613333pt;}
.yeb{bottom:468.933333pt;}
.ya5{bottom:471.200000pt;}
.yb9{bottom:471.520000pt;}
.y2c9{bottom:472.160000pt;}
.y10{bottom:474.080000pt;}
.y2a7{bottom:476.320000pt;}
.y187{bottom:476.640000pt;}
.y3b{bottom:479.520000pt;}
.y239{bottom:480.480000pt;}
.ye8{bottom:483.360000pt;}
.y13e{bottom:483.680000pt;}
.y265{bottom:488.480000pt;}
.y213{bottom:488.800000pt;}
.yb3{bottom:489.120000pt;}
.y225{bottom:491.680000pt;}
.y165{bottom:492.000000pt;}
.y12a{bottom:492.320000pt;}
.y73{bottom:492.640000pt;}
.y52{bottom:492.960000pt;}
.y28b{bottom:493.280000pt;}
.y119{bottom:494.560000pt;}
.y8e{bottom:494.880000pt;}
.y2a6{bottom:495.840000pt;}
.yea{bottom:497.440000pt;}
.y24{bottom:499.360000pt;}
.y188{bottom:500.000000pt;}
.y212{bottom:501.280000pt;}
.y1e7{bottom:502.560000pt;}
.y62{bottom:503.520000pt;}
.y238{bottom:508.000000pt;}
.y264{bottom:508.320000pt;}
.y2c8{bottom:510.240000pt;}
.y2ea{bottom:511.520000pt;}
.ye6{bottom:511.840000pt;}
.y2dd{bottom:514.400000pt;}
.y28a{bottom:515.680000pt;}
.yf{bottom:516.960000pt;}
.y3a{bottom:517.600000pt;}
.y1e5{bottom:518.880000pt;}
.y224{bottom:521.760000pt;}
.y118{bottom:522.080000pt;}
.y13d{bottom:522.720000pt;}
.yb5{bottom:523.040000pt;}
.y210{bottom:524.640000pt;}
.ye7{bottom:526.240000pt;}
.y23{bottom:526.880000pt;}
.y262{bottom:528.160000pt;}
.y1e3{bottom:530.080000pt;}
.y51{bottom:531.360000pt;}
.y8d{bottom:532.960000pt;}
.y186{bottom:533.280000pt;}
.y289{bottom:533.920000pt;}
.y237{bottom:535.520000pt;}
.y164{bottom:536.160000pt;}
.y1af{bottom:538.720000pt;}
.ye4{bottom:540.640000pt;}
.y12f{bottom:544.160000pt;}
.y1e4{bottom:544.480000pt;}
.y13c{bottom:545.760000pt;}
.y211{bottom:548.000000pt;}
.y2c3{bottom:548.600000pt;}
.y117{bottom:549.600000pt;}
.y288{bottom:549.920000pt;}
.yb2{bottom:551.200000pt;}
.y2a5{bottom:552.480000pt;}
.y22{bottom:554.400000pt;}
.y185{bottom:554.720000pt;}
.ye5{bottom:555.040000pt;}
.y39{bottom:556.000000pt;}
.y1dd{bottom:558.560000pt;}
.y50{bottom:558.880000pt;}
.ye{bottom:559.840000pt;}
.y8c{bottom:560.800000pt;}
.y236{bottom:563.360000pt;}
.y261{bottom:564.960000pt;}
.y2c2{bottom:566.880000pt;}
.y138{bottom:569.120000pt;}
.y72{bottom:569.440000pt;}
.y20f{bottom:571.360000pt;}
.y12e{bottom:571.680000pt;}
.y163{bottom:572.960000pt;}
.y2dc{bottom:573.600000pt;}
.yb1{bottom:574.240000pt;}
.y2a4{bottom:574.880000pt;}
.y116{bottom:577.120000pt;}
.y1ad{bottom:577.760000pt;}
.y184{bottom:579.680000pt;}
.ya4{bottom:581.920000pt;}
.ye3{bottom:583.840000pt;}
.y4f{bottom:586.400000pt;}
.y1e1{bottom:587.360000pt;}
.y281{bottom:589.306667pt;}
.y235{bottom:590.906667pt;}
.y21{bottom:592.506667pt;}
.y2a3{bottom:593.146667pt;}
.y38{bottom:594.106667pt;}
.y162{bottom:594.426667pt;}
.y12d{bottom:595.706667pt;}
.y71{bottom:596.986667pt;}
.ye0{bottom:597.946667pt;}
.yb0{bottom:598.586667pt;}
.y8b{bottom:598.906667pt;}
.y1a5{bottom:600.826667pt;}
.y115{bottom:601.786667pt;}
.yd{bottom:602.746667pt;}
.y223{bottom:604.666667pt;}
.y260{bottom:605.626667pt;}
.y183{bottom:607.546667pt;}
.y287{bottom:609.146667pt;}
.ya3{bottom:609.786667pt;}
.ye2{bottom:612.346667pt;}
.y136{bottom:613.306667pt;}
.y4e{bottom:613.946667pt;}
.y114{bottom:615.226667pt;}
.y1df{bottom:616.186667pt;}
.y234{bottom:618.426667pt;}
.y161{bottom:619.386667pt;}
.y25e{bottom:621.306667pt;}
.y1ab{bottom:624.186667pt;}
.y70{bottom:624.826667pt;}
.yaf{bottom:625.466667pt;}
.y8a{bottom:626.746667pt;}
.y286{bottom:628.666667pt;}
.y111{bottom:629.626667pt;}
.y1e0{bottom:630.586667pt;}
.y20{bottom:630.906667pt;}
.y222{bottom:632.186667pt;}
.y37{bottom:632.506667pt;}
.y182{bottom:632.826667pt;}
.ya2{bottom:637.306667pt;}
.ydf{bottom:641.146667pt;}
.y4d{bottom:641.786667pt;}
.y113{bottom:644.026667pt;}
.y2e8{bottom:644.346667pt;}
.y1dc{bottom:644.986667pt;}
.yc{bottom:645.626667pt;}
.y233{bottom:645.946667pt;}
.y160{bottom:647.226667pt;}
.y1a7{bottom:647.546667pt;}
.y285{bottom:648.506667pt;}
.y135{bottom:650.106667pt;}
.y61{bottom:652.346667pt;}
.y89{bottom:654.266667pt;}
.y181{bottom:654.906667pt;}
.ydd{bottom:655.546667pt;}
.y112{bottom:658.426667pt;}
.y221{bottom:659.706667pt;}
.y25f{bottom:660.986667pt;}
.yae{bottom:662.906667pt;}
.y2c7{bottom:666.746667pt;}
.y180{bottom:667.386667pt;}
.y284{bottom:668.346667pt;}
.y1f{bottom:669.306667pt;}
.yde{bottom:669.946667pt;}
.y1a9{bottom:670.906667pt;}
.y134{bottom:671.546667pt;}
.y10f{bottom:672.506667pt;}
.y232{bottom:673.786667pt;}
.y15f{bottom:674.746667pt;}
.ya1{bottom:675.386667pt;}
.y4c{bottom:679.866667pt;}
.y25d{bottom:680.506667pt;}
.yda{bottom:684.346667pt;}
.y36{bottom:684.986667pt;}
.y2e7{bottom:685.306667pt;}
.y2c6{bottom:686.586667pt;}
.y283{bottom:687.866667pt;}
.yb{bottom:688.506667pt;}
.yad{bottom:690.746667pt;}
.y88{bottom:692.026667pt;}
.y1a1{bottom:694.266667pt;}
.y133{bottom:696.506667pt;}
.y1e{bottom:696.826667pt;}
.ydc{bottom:698.426667pt;}
.y110{bottom:700.026667pt;}
.y2e6{bottom:700.986667pt;}
.y231{bottom:701.306667pt;}
.y20e{bottom:704.506667pt;}
.y220{bottom:705.146667pt;}
.y2c4{bottom:706.426667pt;}
.y4b{bottom:707.426667pt;}
.y280{bottom:707.746667pt;}
.yd6{bottom:712.866667pt;}
.y1db{bottom:713.186667pt;}
.ya0{bottom:713.826667pt;}
.y177{bottom:714.146667pt;}
.y10e{bottom:714.466667pt;}
.y25c{bottom:717.346667pt;}
.y6f{bottom:718.306667pt;}
.y2e5{bottom:720.866667pt;}
.y35{bottom:721.826667pt;}
.y1d9{bottom:724.386667pt;}
.y2db{bottom:724.706667pt;}
.y2be{bottom:725.986667pt;}
.y2a1{bottom:727.266667pt;}
.y20c{bottom:727.906667pt;}
.y10a{bottom:728.866667pt;}
.y87{bottom:730.786667pt;}
.ya{bottom:731.426667pt;}
.y1d{bottom:735.266667pt;}
.y15e{bottom:737.186667pt;}
.y17f{bottom:737.506667pt;}
.y1da{bottom:738.786667pt;}
.y25b{bottom:739.746667pt;}
.yd8{bottom:740.386667pt;}
.y9f{bottom:741.346667pt;}
.y10d{bottom:743.266667pt;}
.y27f{bottom:744.546667pt;}
.y6e{bottom:745.826667pt;}
.y20d{bottom:751.266667pt;}
.y1cc{bottom:753.186667pt;}
.yd4{bottom:754.786667pt;}
.y21f{bottom:756.386667pt;}
.y10c{bottom:757.346667pt;}
.y86{bottom:758.306667pt;}
.y34{bottom:758.626667pt;}
.y1a2{bottom:760.226667pt;}
.y15d{bottom:760.546667pt;}
.y29f{bottom:761.506667pt;}
.y1c{bottom:762.786667pt;}
.y27e{bottom:766.946667pt;}
.y1d8{bottom:767.266667pt;}
.y9e{bottom:768.866667pt;}
.y106{bottom:771.746667pt;}
.y6d{bottom:773.346667pt;}
.y256{bottom:773.986667pt;}
.y9{bottom:774.306667pt;}
.y209{bottom:774.626667pt;}
.yd3{bottom:779.746667pt;}
.y2e4{bottom:780.066667pt;}
.y2a0{bottom:781.346667pt;}
.y1d4{bottom:781.666667pt;}
.y2d9{bottom:782.626667pt;}
.y15c{bottom:783.906667pt;}
.y21e{bottom:784.226667pt;}
.y27d{bottom:785.186667pt;}
.y1b{bottom:790.306667pt;}
.y1a0{bottom:791.266667pt;}
.y25a{bottom:793.826667pt;}
.y33{bottom:795.426667pt;}
.y1d6{bottom:796.066667pt;}
.y85{bottom:796.386667pt;}
.y108{bottom:799.266667pt;}
.y2bd{bottom:799.586667pt;}
.y6c{bottom:800.866667pt;}
.yd2{bottom:802.466667pt;}
.y8{bottom:806.306667pt;}
.y9d{bottom:807.266667pt;}
.y1cf{bottom:810.466667pt;}
.y19f{bottom:811.746667pt;}
.y258{bottom:813.346667pt;}
.y1a{bottom:817.826667pt;}
.y2d8{bottom:819.426667pt;}
.y27c{bottom:820.706667pt;}
.y2bc{bottom:821.986667pt;}
.y105{bottom:824.226667pt;}
.y1d2{bottom:824.866667pt;}
.yd1{bottom:828.413333pt;}
.y4a{bottom:828.733333pt;}
.y17e{bottom:830.653333pt;}
.y32{bottom:832.253333pt;}
.y255{bottom:833.213333pt;}
.y84{bottom:834.813333pt;}
.y2e3{bottom:836.413333pt;}
.y7{bottom:838.653333pt;}
.y1c7{bottom:839.293333pt;}
.y20a{bottom:840.573333pt;}
.y129{bottom:841.533333pt;}
.y2d7{bottom:841.853333pt;}
.y19{bottom:845.693333pt;}
.y104{bottom:847.293333pt;}
.y159{bottom:851.133333pt;}
.y17b{bottom:854.013333pt;}
.yd0{bottom:855.933333pt;}
.y49{bottom:856.253333pt;}
.y29e{bottom:857.533333pt;}
.y27b{bottom:858.813333pt;}
.y83{bottom:862.653333pt;}
.y21d{bottom:866.813333pt;}
.y31{bottom:869.053333pt;}
.y254{bottom:870.013333pt;}
.y103{bottom:872.893333pt;}
.y18{bottom:873.213333pt;}
.y17c{bottom:877.053333pt;}
.y2bb{bottom:877.373333pt;}
.y6{bottom:878.973333pt;}
.y29d{bottom:879.933333pt;}
.y48{bottom:883.773333pt;}
.y128{bottom:885.373333pt;}
.y158{bottom:887.933333pt;}
.y1c8{bottom:891.133333pt;}
.y253{bottom:892.413333pt;}
.y2b5{bottom:893.053333pt;}
.ycf{bottom:894.653333pt;}
.y27a{bottom:896.893333pt;}
.y29c{bottom:898.493333pt;}
.y82{bottom:900.413333pt;}
.y17{bottom:900.733333pt;}
.y30{bottom:905.853333pt;}
.y157{bottom:907.453333pt;}
.y1c6{bottom:908.413333pt;}
.y127{bottom:910.973333pt;}
.y47{bottom:911.293333pt;}
.y2ba{bottom:912.893333pt;}
.y299{bottom:914.173333pt;}
.y208{bottom:914.813333pt;}
.y2d6{bottom:915.453333pt;}
.y5{bottom:917.373333pt;}
.yce{bottom:922.173333pt;}
.y176{bottom:923.773333pt;}
.y9c{bottom:928.253333pt;}
.y156{bottom:928.893333pt;}
.y2b9{bottom:932.413333pt;}
.y1c5{bottom:932.733333pt;}
.y29b{bottom:933.693333pt;}
.y278{bottom:935.293333pt;}
.y126{bottom:938.813333pt;}
.y16{bottom:939.133333pt;}
.y2f{bottom:942.653333pt;}
.y252{bottom:946.853333pt;}
.yac{bottom:949.733333pt;}
.y2b8{bottom:952.293333pt;}
.y1c4{bottom:953.253333pt;}
.y29a{bottom:953.573333pt;}
.y155{bottom:954.213333pt;}
.y4{bottom:955.813333pt;}
.y9b{bottom:956.133333pt;}
.y174{bottom:958.053333pt;}
.y251{bottom:965.093333pt;}
.y207{bottom:966.373333pt;}
.y15{bottom:966.693333pt;}
.y2b7{bottom:972.133333pt;}
.y276{bottom:973.413333pt;}
.y1c3{bottom:976.933333pt;}
.y81{bottom:977.253333pt;}
.y154{bottom:978.213333pt;}
.y2e{bottom:979.493333pt;}
.y173{bottom:980.453333pt;}
.y250{bottom:983.653333pt;}
.y206{bottom:991.653333pt;}
.y3{bottom:993.893333pt;}
.y14{bottom:994.213333pt;}
.y153{bottom:997.733333pt;}
.y24f{bottom:1001.893333pt;}
.y1c2{bottom:1004.773333pt;}
.y80{bottom:1005.093333pt;}
.y172{bottom:1005.413333pt;}
.y275{bottom:1010.213333pt;}
.y205{bottom:1013.733333pt;}
.y152{bottom:1017.253333pt;}
.y2b4{bottom:1028.453333pt;}
.y24e{bottom:1031.653333pt;}
.y2{bottom:1032.293333pt;}
.y60{bottom:1032.613333pt;}
.y171{bottom:1033.253333pt;}
.y204{bottom:1035.813333pt;}
.y151{bottom:1036.773333pt;}
.y44{bottom:1060.773333pt;}
.y1{bottom:1061.733333pt;}
.h16{height:12.800000pt;}
.h20{height:12.832000pt;}
.h1e{height:13.120000pt;}
.h1c{height:13.152000pt;}
.h12{height:16.000000pt;}
.h13{height:16.032000pt;}
.he{height:16.320000pt;}
.h11{height:16.352000pt;}
.h48{height:18.240000pt;}
.h4f{height:18.272000pt;}
.h4c{height:18.560000pt;}
.h4b{height:18.592000pt;}
.h29{height:21.760000pt;}
.h30{height:21.792000pt;}
.h28{height:22.080000pt;}
.h2c{height:22.112000pt;}
.h1a{height:26.240000pt;}
.h1d{height:27.200000pt;}
.h1b{height:27.232000pt;}
.h1f{height:27.520000pt;}
.h21{height:27.552000pt;}
.hf{height:32.640000pt;}
.h49{height:36.800000pt;}
.h4d{height:36.832000pt;}
.h18{height:40.320000pt;}
.h22{height:40.640000pt;}
.h24{height:40.672000pt;}
.h23{height:41.600000pt;}
.h19{height:42.013125pt;}
.h17{height:43.250625pt;}
.h2e{height:43.872000pt;}
.h2a{height:44.160000pt;}
.h26{height:44.192000pt;}
.h31{height:44.648750pt;}
.h34{height:45.120000pt;}
.h38{height:45.152000pt;}
.h35{height:45.440000pt;}
.h32{height:45.472000pt;}
.h36{height:47.737500pt;}
.hb{height:48.378750pt;}
.h39{height:49.020000pt;}
.hc{height:50.240000pt;}
.h3f{height:51.840000pt;}
.h43{height:52.192000pt;}
.h14{height:52.762500pt;}
.hd{height:53.471250pt;}
.h25{height:54.180000pt;}
.ha{height:55.046250pt;}
.h54{height:57.600000pt;}
.h9{height:57.758750pt;}
.h4e{height:57.920000pt;}
.h4a{height:57.952000pt;}
.h7{height:58.563750pt;}
.h2{height:60.288750pt;}
.h15{height:62.781250pt;}
.h5{height:62.812500pt;}
.h2d{height:63.656250pt;}
.h3{height:64.500000pt;}
.h3e{height:64.960000pt;}
.h41{height:64.992000pt;}
.h42{height:65.312000pt;}
.h6{height:65.781915pt;}
.h3b{height:65.952000pt;}
.h8{height:66.625000pt;}
.h27{height:68.480000pt;}
.h2b{height:68.512000pt;}
.h47{height:72.862500pt;}
.h56{height:73.600000pt;}
.h4{height:74.820000pt;}
.h46{height:76.307021pt;}
.h44{height:84.800000pt;}
.h40{height:84.832000pt;}
.h3a{height:87.712000pt;}
.h45{height:88.032000pt;}
.h3c{height:91.840000pt;}
.h3d{height:91.872000pt;}
.h55{height:97.312000pt;}
.h50{height:114.272000pt;}
.h2f{height:115.232000pt;}
.h52{height:117.120000pt;}
.h58{height:132.832000pt;}
.h59{height:152.666667pt;}
.h53{height:171.226667pt;}
.h51{height:171.266667pt;}
.h33{height:184.986667pt;}
.h37{height:185.346667pt;}
.h10{height:315.933333pt;}
.h57{height:581.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:8.000000pt;}
.w13{width:34.592000pt;}
.w7e{width:37.760000pt;}
.w8{width:37.792000pt;}
.w53{width:45.152000pt;}
.w5d{width:46.112000pt;}
.w29{width:47.072000pt;}
.w54{width:47.392000pt;}
.wd{width:48.032000pt;}
.w42{width:48.320000pt;}
.w48{width:48.672000pt;}
.w22{width:48.960000pt;}
.w90{width:49.280000pt;}
.w73{width:49.312000pt;}
.w16{width:51.232000pt;}
.w6a{width:51.552000pt;}
.w38{width:53.152000pt;}
.w34{width:54.400000pt;}
.w21{width:54.432000pt;}
.w43{width:54.752000pt;}
.w87{width:55.360000pt;}
.w57{width:56.032000pt;}
.w4d{width:56.672000pt;}
.w61{width:56.992000pt;}
.w3a{width:58.912000pt;}
.w78{width:59.200000pt;}
.w67{width:60.160000pt;}
.w68{width:60.480000pt;}
.w69{width:60.512000pt;}
.w35{width:60.832000pt;}
.w4a{width:61.120000pt;}
.w4c{width:61.152000pt;}
.w4b{width:61.472000pt;}
.w49{width:61.792000pt;}
.w3e{width:62.432000pt;}
.w37{width:62.752000pt;}
.w36{width:63.680000pt;}
.w72{width:64.672000pt;}
.w88{width:64.992000pt;}
.w2e{width:65.312000pt;}
.w89{width:65.952000pt;}
.w55{width:66.240000pt;}
.w56{width:66.272000pt;}
.w5f{width:66.560000pt;}
.w60{width:66.592000pt;}
.w5e{width:67.232000pt;}
.w2d{width:67.520000pt;}
.w70{width:67.872000pt;}
.w97{width:68.512000pt;}
.wf{width:69.760000pt;}
.we{width:69.792000pt;}
.w10{width:70.112000pt;}
.w82{width:70.752000pt;}
.w7{width:71.040000pt;}
.w6{width:71.392000pt;}
.w30{width:72.352000pt;}
.w5{width:72.992000pt;}
.w17{width:73.952000pt;}
.w18{width:74.272000pt;}
.w25{width:74.912000pt;}
.w28{width:75.552000pt;}
.w12{width:76.832000pt;}
.w76{width:78.432000pt;}
.w1e{width:78.752000pt;}
.w98{width:80.992000pt;}
.w1d{width:81.312000pt;}
.w75{width:81.632000pt;}
.w26{width:83.552000pt;}
.w27{width:83.872000pt;}
.w93{width:84.192000pt;}
.w83{width:87.072000pt;}
.w41{width:89.312000pt;}
.w40{width:89.632000pt;}
.w3f{width:89.984000pt;}
.w11{width:93.152000pt;}
.w71{width:96.992000pt;}
.w1f{width:97.312000pt;}
.w7c{width:97.344000pt;}
.w20{width:97.632000pt;}
.w7a{width:97.952000pt;}
.w77{width:97.984000pt;}
.w45{width:103.072000pt;}
.w1c{width:103.392000pt;}
.w63{width:113.344000pt;}
.w44{width:113.632000pt;}
.w6e{width:113.984000pt;}
.w92{width:114.592000pt;}
.w4f{width:117.472000pt;}
.w9{width:118.432000pt;}
.w6c{width:119.712000pt;}
.w8f{width:120.032000pt;}
.w59{width:141.826667pt;}
.w58{width:148.506667pt;}
.w85{width:151.746667pt;}
.w2c{width:152.386667pt;}
.w62{width:154.266667pt;}
.w3{width:157.186667pt;}
.w81{width:157.826667pt;}
.w7d{width:163.866667pt;}
.w8d{width:163.906667pt;}
.w4e{width:169.026667pt;}
.w6b{width:175.426667pt;}
.w7f{width:180.546667pt;}
.w1a{width:183.106667pt;}
.w14{width:192.066667pt;}
.w39{width:194.946667pt;}
.w5a{width:204.546667pt;}
.wb{width:207.133333pt;}
.w2a{width:208.066667pt;}
.w64{width:211.266667pt;}
.w3c{width:216.706667pt;}
.w94{width:217.346667pt;}
.w7b{width:218.306667pt;}
.w50{width:225.693333pt;}
.w6d{width:226.973333pt;}
.w8c{width:234.653333pt;}
.w2f{width:242.013333pt;}
.w33{width:245.853333pt;}
.w66{width:246.173333pt;}
.w3b{width:249.373333pt;}
.w47{width:249.693333pt;}
.w52{width:250.013333pt;}
.w24{width:255.133333pt;}
.w5c{width:270.813333pt;}
.w95{width:274.333333pt;}
.w8a{width:293.253333pt;}
.w31{width:308.613333pt;}
.w32{width:309.573333pt;}
.w5b{width:324.613333pt;}
.w86{width:331.013333pt;}
.w46{width:343.173333pt;}
.w51{width:346.373333pt;}
.w65{width:346.693333pt;}
.wc{width:354.693333pt;}
.w4{width:360.453333pt;}
.w3d{width:362.400000pt;}
.w15{width:375.840000pt;}
.w2b{width:382.240000pt;}
.w6f{width:392.773333pt;}
.w1b{width:462.240000pt;}
.w79{width:462.560000pt;}
.w74{width:472.826667pt;}
.w8e{width:478.906667pt;}
.w84{width:510.586667pt;}
.w80{width:516.666667pt;}
.w96{width:576.866667pt;}
.w23{width:577.186667pt;}
.w91{width:586.146667pt;}
.w8b{width:593.506667pt;}
.wa{width:612.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x26{left:4.160000pt;}
.x1e{left:5.120000pt;}
.x22{left:6.400000pt;}
.x20{left:8.000000pt;}
.x1d{left:8.960000pt;}
.x49{left:9.920000pt;}
.x25{left:10.880000pt;}
.x37{left:11.840000pt;}
.x5a{left:12.800000pt;}
.x1a{left:13.760000pt;}
.x64{left:15.360000pt;}
.x1b{left:16.320000pt;}
.x33{left:17.600000pt;}
.x28{left:18.880000pt;}
.x23{left:20.480000pt;}
.x3a{left:21.440000pt;}
.x19{left:22.746667pt;}
.x3b{left:24.000000pt;}
.x47{left:24.960000pt;}
.x4a{left:26.600000pt;}
.x71{left:27.520000pt;}
.x5e{left:28.826667pt;}
.x68{left:30.106667pt;}
.x60{left:31.706667pt;}
.x6e{left:33.280000pt;}
.x5d{left:34.600000pt;}
.xa2{left:35.520000pt;}
.xa5{left:37.120000pt;}
.x5f{left:38.106667pt;}
.xb1{left:39.040000pt;}
.x61{left:40.986667pt;}
.x82{left:41.960000pt;}
.x40{left:42.914667pt;}
.x4b{left:48.994667pt;}
.x29{left:56.354667pt;}
.x87{left:59.226667pt;}
.x9a{left:62.746667pt;}
.x8d{left:64.346667pt;}
.x94{left:69.786667pt;}
.x77{left:72.346667pt;}
.x8{left:75.551988pt;}
.x6{left:81.311988pt;}
.x4e{left:83.231988pt;}
.x75{left:90.912000pt;}
.x6a{left:93.151988pt;}
.x3f{left:95.072000pt;}
.x10{left:99.551988pt;}
.x2e{left:104.672000pt;}
.x7e{left:107.586667pt;}
.x63{left:108.512000pt;}
.x83{left:113.346667pt;}
.xb6{left:114.594667pt;}
.x5{left:116.191988pt;}
.xb7{left:117.794667pt;}
.xb8{left:120.354667pt;}
.x9{left:122.591988pt;}
.x11{left:123.551988pt;}
.x9d{left:127.104000pt;}
.xa6{left:128.360000pt;}
.x17{left:129.986667pt;}
.x8b{left:132.224000pt;}
.x31{left:134.426667pt;}
.xb5{left:137.341333pt;}
.x27{left:138.946667pt;}
.x62{left:141.506667pt;}
.x42{left:145.026667pt;}
.x12{left:145.986655pt;}
.xac{left:148.541333pt;}
.x2a{left:152.066655pt;}
.x67{left:155.586667pt;}
.xad{left:158.781333pt;}
.x58{left:160.706667pt;}
.x4c{left:163.906655pt;}
.x57{left:165.826667pt;}
.x2f{left:168.701333pt;}
.x13{left:170.626655pt;}
.xc4{left:171.901333pt;}
.xa4{left:173.506667pt;}
.xc{left:176.706655pt;}
.xb{left:178.946655pt;}
.xc0{left:184.381333pt;}
.x54{left:185.346655pt;}
.x69{left:187.941333pt;}
.xa8{left:189.186667pt;}
.x2c{left:190.466655pt;}
.x4{left:192.386655pt;}
.xc3{left:194.301333pt;}
.xc5{left:195.586667pt;}
.x4d{left:198.146655pt;}
.x39{left:199.106667pt;}
.x3e{left:201.666655pt;}
.x84{left:203.266655pt;}
.x56{left:204.866655pt;}
.xcc{left:213.501333pt;}
.xa7{left:214.461333pt;}
.x72{left:216.733322pt;}
.x7d{left:218.013322pt;}
.x55{left:219.613322pt;}
.xc7{left:221.221333pt;}
.x50{left:222.173322pt;}
.xb9{left:227.293333pt;}
.x85{left:229.213322pt;}
.x73{left:231.133322pt;}
.x4f{left:234.013322pt;}
.xbc{left:239.781333pt;}
.x3c{left:252.253322pt;}
.x16{left:258.653333pt;}
.xab{left:261.853333pt;}
.x2d{left:269.213322pt;}
.xa9{left:272.093333pt;}
.x3{left:277.533322pt;}
.x92{left:280.093333pt;}
.x99{left:286.813333pt;}
.x74{left:287.773322pt;}
.x41{left:288.733333pt;}
.x6b{left:291.613322pt;}
.xae{left:293.853333pt;}
.x7{left:295.493322pt;}
.x2b{left:296.773322pt;}
.x3d{left:300.613322pt;}
.x9e{left:302.533333pt;}
.xba{left:309.893333pt;}
.x30{left:313.093333pt;}
.x15{left:314.053322pt;}
.xb2{left:316.293333pt;}
.x9f{left:322.053322pt;}
.x1c{left:331.013333pt;}
.x14{left:335.813322pt;}
.x7c{left:341.573333pt;}
.xa0{left:346.053322pt;}
.xcb{left:349.893333pt;}
.x59{left:351.813333pt;}
.xc6{left:358.213333pt;}
.x44{left:363.973333pt;}
.xa{left:367.813322pt;}
.xaf{left:376.453333pt;}
.x34{left:384.160000pt;}
.x52{left:389.599988pt;}
.xf{left:393.119988pt;}
.xb3{left:396.000000pt;}
.x2{left:396.959988pt;}
.x93{left:400.160000pt;}
.x76{left:401.760000pt;}
.x1f{left:403.360000pt;}
.x70{left:404.640000pt;}
.xbd{left:406.560000pt;}
.x86{left:418.720000pt;}
.xd{left:420.319988pt;}
.x8c{left:421.920000pt;}
.xc8{left:426.080000pt;}
.x5b{left:431.840000pt;}
.xcd{left:435.680000pt;}
.x45{left:439.520000pt;}
.xaa{left:450.400000pt;}
.x35{left:455.200000pt;}
.xb0{left:456.480000pt;}
.xe{left:458.719988pt;}
.x79{left:463.866667pt;}
.x96{left:468.666667pt;}
.x8f{left:470.586667pt;}
.xc1{left:472.826667pt;}
.x80{left:474.426667pt;}
.x21{left:475.706667pt;}
.x6c{left:478.266667pt;}
.x88{left:482.106667pt;}
.x9b{left:484.666667pt;}
.xbb{left:488.506667pt;}
.xb4{left:494.586667pt;}
.xce{left:501.626667pt;}
.xc9{left:511.226667pt;}
.x46{left:515.066667pt;}
.xa3{left:518.586667pt;}
.xbe{left:520.506667pt;}
.x65{left:524.986667pt;}
.x36{left:526.586667pt;}
.x7a{left:529.146667pt;}
.x5c{left:530.426667pt;}
.x97{left:536.506667pt;}
.x90{left:538.106667pt;}
.x89{left:544.506667pt;}
.x9c{left:546.146667pt;}
.x24{left:548.066667pt;}
.x6f{left:555.106667pt;}
.x81{left:565.026667pt;}
.xc2{left:571.426667pt;}
.xca{left:577.506667pt;}
.xbf{left:586.786667pt;}
.x48{left:590.306667pt;}
.x7b{left:593.186667pt;}
.x38{left:597.666667pt;}
.x98{left:604.386667pt;}
.x91{left:605.666667pt;}
.x8a{left:607.266667pt;}
.x66{left:610.146667pt;}
.xa1{left:617.186667pt;}
.x18{left:620.706667pt;}
.x6d{left:631.933333pt;}
.x78{left:648.893333pt;}
.x7f{left:655.933333pt;}
.x43{left:665.853333pt;}
.x32{left:669.053333pt;}
.x95{left:672.253333pt;}
.x8e{left:673.213333pt;}
.x51{left:703.613322pt;}
.x53{left:710.973322pt;}
.x1{left:718.373322pt;}
}




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