
    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_2195b82d88fda1a81c75eea1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_6e111dd1b904220d2d884895.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_b9493f6703b065f665cf25da.woff')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_324bade3b7028027e3e14e51.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c77e5c31937694cb873af763.woff')format("woff");}.ff5{font-family:ff5;line-height:0.707031;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_e8689ebe8711a16a50382a7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706543;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_4ffda1b66d9a3c1b7b37b609.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0c4afd24122ff14ba5db18c4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_d7bb8618b0bfdce3fefa6e56.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ed3e5cc538b878b83e05f35a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.904297;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_62dc8af9b30f2aa29f1a4311.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1b83965c3c6f5a7f19392366.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a0ba4a7f28a168074886b56c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.939453;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:ffe;src:url('chunks/assets/font_2582cf735bf66205de2ce8ed.woff')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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:fff;src:url('chunks/assets/font_bb57d7c1a230e75004828e39.woff')format("woff");}.fff{font-family:fff;line-height:0.895996;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:ff10;src:url('chunks/assets/font_18868e0a01ee919dc889f1b7.woff')format("woff");}.ff10{font-family:ff10;line-height:0.774902;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:ff11;src:url('chunks/assets/font_496eec05d241394a408f379a.woff')format("woff");}.ff11{font-family:ff11;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls11{letter-spacing:-0.834000px;}
.ls42{letter-spacing:-0.354000px;}
.lsc{letter-spacing:-0.343200px;}
.ls5{letter-spacing:-0.310800px;}
.ls33{letter-spacing:-0.303000px;}
.ls21{letter-spacing:-0.268800px;}
.ls34{letter-spacing:-0.205800px;}
.ls1d{letter-spacing:-0.172200px;}
.ls3b{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.132600px;}
.ls41{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.118800px;}
.lsf{letter-spacing:-0.115800px;}
.ls12{letter-spacing:-0.115200px;}
.ls10{letter-spacing:-0.109200px;}
.ls3e{letter-spacing:-0.107400px;}
.ls20{letter-spacing:-0.069600px;}
.ls35{letter-spacing:-0.058320px;}
.ls32{letter-spacing:-0.049680px;}
.ls1c{letter-spacing:-0.041040px;}
.ls1e{letter-spacing:-0.032400px;}
.ls3{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.022320px;}
.ls2d{letter-spacing:0.025200px;}
.ls2f{letter-spacing:0.038880px;}
.ls2b{letter-spacing:0.060600px;}
.ls30{letter-spacing:0.064200px;}
.ls43{letter-spacing:0.083400px;}
.ls2c{letter-spacing:0.100800px;}
.ls31{letter-spacing:0.101400px;}
.ls8{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.179280px;}
.ls22{letter-spacing:0.209400px;}
.lsd{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.256200px;}
.lse{letter-spacing:0.259800px;}
.ls2e{letter-spacing:0.274800px;}
.ls1{letter-spacing:0.313800px;}
.ls1f{letter-spacing:0.357000px;}
.ls6{letter-spacing:0.371400px;}
.ls38{letter-spacing:0.433440px;}
.ls3d{letter-spacing:15.066720px;}
.ls27{letter-spacing:25.146720px;}
.ls2a{letter-spacing:35.922720px;}
.ls29{letter-spacing:36.642720px;}
.ls28{letter-spacing:37.362720px;}
.ls1a{letter-spacing:38.082720px;}
.ls1b{letter-spacing:38.802720px;}
.ls17{letter-spacing:39.522720px;}
.ls14{letter-spacing:41.682720px;}
.ls15{letter-spacing:43.842720px;}
.ls16{letter-spacing:44.562720px;}
.ls25{letter-spacing:45.282720px;}
.ls3f{letter-spacing:46.002720px;}
.ls3c{letter-spacing:46.026720px;}
.ls18{letter-spacing:46.722720px;}
.ls19{letter-spacing:48.882720px;}
.ls26{letter-spacing:51.042720px;}
.ls24{letter-spacing:56.802720px;}
.ls23{letter-spacing:61.122720px;}
.ls0{letter-spacing:65.669760px;}
.lsb{letter-spacing:120.186720px;}
.ls9{letter-spacing:163.386720px;}
.ls7{letter-spacing:169.146720px;}
.ls39{letter-spacing:197.585280px;}
.ls3a{letter-spacing:201.029760px;}
.ls37{letter-spacing:849.149760px;}
.ls36{letter-spacing:849.185760px;}
.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;}
}
.ws26{word-spacing:-24.840000px;}
.wsa{word-spacing:-24.624000px;}
.wsd{word-spacing:-18.305520px;}
.ws24{word-spacing:-18.262320px;}
.wsb{word-spacing:-16.613280px;}
.ws5{word-spacing:-15.341640px;}
.ws1{word-spacing:-15.284040px;}
.ws0{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.855040px;}
.ws2{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.659440px;}
.wse{word-spacing:-14.136240px;}
.ws14{word-spacing:-13.862760px;}
.ws1c{word-spacing:-13.780560px;}
.ws17{word-spacing:-13.715160px;}
.ws1f{word-spacing:-13.607160px;}
.ws1a{word-spacing:-13.606560px;}
.ws1e{word-spacing:-13.569960px;}
.ws18{word-spacing:-13.566360px;}
.ws1d{word-spacing:-13.544640px;}
.ws1b{word-spacing:-13.530960px;}
.ws7{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.473360px;}
.ws10{word-spacing:-13.464720px;}
.ws20{word-spacing:-13.456080px;}
.ws23{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.436160px;}
.ws25{word-spacing:-13.398360px;}
.ws11{word-spacing:-13.396560px;}
.ws19{word-spacing:-13.390560px;}
.wsc{word-spacing:-13.389960px;}
.ws8{word-spacing:-13.386960px;}
.ws12{word-spacing:-13.333560px;}
.ws22{word-spacing:-13.299960px;}
.ws16{word-spacing:-13.236960px;}
.ws21{word-spacing:-13.202760px;}
.ws9{word-spacing:-13.162560px;}
.ws2a{word-spacing:-11.162040px;}
.ws29{word-spacing:-10.985640px;}
.ws28{word-spacing:-10.924560px;}
.ws27{word-spacing:-10.902240px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-13.994880px;}
._6{margin-left:-12.954240px;}
._8{margin-left:-10.744560px;}
._7{margin-left:-8.943240px;}
._2{margin-left:-7.193880px;}
._4{margin-left:-2.975040px;}
._1{margin-left:-1.059600px;}
._0{width:1.149120px;}
._9{width:2.225280px;}
._a{width:3.387360px;}
._e{width:4.537920px;}
._1a{width:9.550800px;}
._19{width:10.878480px;}
._17{width:18.396480px;}
._16{width:26.118720px;}
._14{width:40.654800px;}
._12{width:81.470160px;}
._3{width:99.145920px;}
._18{width:120.930480px;}
._f{width:141.990240px;}
._15{width:150.745680px;}
._10{width:156.411840px;}
._d{width:172.171920px;}
._11{width:197.861280px;}
._13{width:202.494240px;}
._1b{width:846.156000px;}
._c{width:849.149760px;}
._b{width:850.650240px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(35,63,96);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fsb{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.fs0{font-size:167.760000px;}
.y269{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y267{bottom:3.225000px;}
.y25d{bottom:3.240000px;}
.y27a{bottom:3.405000px;}
.y254{bottom:3.420000px;}
.y26a{bottom:3.780000px;}
.y118{bottom:3.945000px;}
.y116{bottom:3.960000px;}
.y11a{bottom:4.125000px;}
.y112{bottom:4.140000px;}
.y260{bottom:9.540000px;}
.y262{bottom:9.705000px;}
.yc3{bottom:16.545000px;}
.yc8{bottom:16.551000px;}
.ya6{bottom:16.560000px;}
.yad{bottom:16.605000px;}
.yc0{bottom:16.725000px;}
.yec{bottom:16.731000px;}
.ya3{bottom:16.740000px;}
.ya1{bottom:16.770000px;}
.y1cc{bottom:17.085000px;}
.y1e2{bottom:17.100000px;}
.y1c8{bottom:17.265000px;}
.y1c4{bottom:17.280000px;}
.y1dd{bottom:17.310000px;}
.y25c{bottom:17.820000px;}
.yc4{bottom:18.165000px;}
.yc9{bottom:18.171000px;}
.ya7{bottom:18.180000px;}
.yd4{bottom:18.210000px;}
.yae{bottom:18.225000px;}
.yc1{bottom:18.345000px;}
.ya4{bottom:18.360000px;}
.yb6{bottom:18.390000px;}
.yde{bottom:18.900000px;}
.ydb{bottom:19.080000px;}
.y98{bottom:23.940000px;}
.y96{bottom:24.120000px;}
.y20a{bottom:24.285000px;}
.y1ec{bottom:27.540000px;}
.y20c{bottom:28.425000px;}
.y20e{bottom:28.440000px;}
.y210{bottom:28.980000px;}
.y216{bottom:29.145000px;}
.y213{bottom:29.160000px;}
.y25b{bottom:32.580000px;}
.y207{bottom:35.265000px;}
.y206{bottom:35.445000px;}
.y1eb{bottom:37.620000px;}
.y1c3{bottom:37.800000px;}
.y217{bottom:39.945000px;}
.y211{bottom:39.960000px;}
.y1e7{bottom:43.545000px;}
.y1c9{bottom:43.725000px;}
.y1d1{bottom:43.740000px;}
.y1de{bottom:43.770000px;}
.y209{bottom:46.065000px;}
.y25a{bottom:47.160000px;}
.y1c7{bottom:49.665000px;}
.y1d6{bottom:49.680000px;}
.y1d0{bottom:49.710000px;}
.y208{bottom:52.005000px;}
.y1cd{bottom:53.805000px;}
.y1e3{bottom:53.820000px;}
.y1f8{bottom:53.850000px;}
.y1f4{bottom:54.000000px;}
.y1d9{bottom:54.030000px;}
.yee{bottom:57.600000px;}
.y15{bottom:57.636000px;}
.y1d3{bottom:58.140000px;}
.y1c2{bottom:58.320000px;}
.y259{bottom:61.920000px;}
.y1db{bottom:70.005000px;}
.y1e1{bottom:70.020000px;}
.y1e6{bottom:70.050000px;}
.y1c6{bottom:70.185000px;}
.y1d5{bottom:70.200000px;}
.y1cf{bottom:70.230000px;}
.y258{bottom:76.500000px;}
.yed{bottom:77.760000px;}
.y14{bottom:77.796000px;}
.y1cb{bottom:90.525000px;}
.y1e0{bottom:90.540000px;}
.y1d8{bottom:90.570000px;}
.y1f1{bottom:90.585000px;}
.y1f3{bottom:90.720000px;}
.y257{bottom:91.080000px;}
.yc7{bottom:102.285000px;}
.yeb{bottom:108.225000px;}
.y15a{bottom:115.560000px;}
.y3f{bottom:118.836000px;}
.y1ea{bottom:123.120000px;}
.y1fe{bottom:128.340000px;}
.y69{bottom:129.276000px;}
.y159{bottom:136.620000px;}
.yc6{bottom:136.665000px;}
.y239{bottom:137.700000px;}
.y187{bottom:139.140000px;}
.y3e{bottom:139.896000px;}
.yea{bottom:142.785000px;}
.y1ce{bottom:149.220000px;}
.y68{bottom:150.330000px;}
.y84{bottom:153.750000px;}
.y158{bottom:157.680000px;}
.y238{bottom:158.760000px;}
.y186{bottom:160.200000px;}
.y3d{bottom:160.950000px;}
.y1fd{bottom:161.280000px;}
.y109{bottom:165.420000px;}
.yc5{bottom:171.225000px;}
.y67{bottom:171.390000px;}
.y1e9{bottom:176.040000px;}
.y1b1{bottom:176.400000px;}
.ye9{bottom:177.165000px;}
.y157{bottom:178.740000px;}
.y83{bottom:179.670000px;}
.y237{bottom:179.820000px;}
.y185{bottom:181.260000px;}
.y3c{bottom:182.010000px;}
.y66{bottom:192.450000px;}
.y1fc{bottom:194.430000px;}
.y108{bottom:199.290000px;}
.y156{bottom:199.830000px;}
.y236{bottom:200.910000px;}
.y184{bottom:202.350000px;}
.y3b{bottom:203.070000px;}
.y195{bottom:204.870000px;}
.yc2{bottom:205.785000px;}
.y1b0{bottom:209.550000px;}
.ye8{bottom:211.725000px;}
.y82{bottom:217.650000px;}
.y155{bottom:220.890000px;}
.y235{bottom:221.970000px;}
.y194{bottom:223.230000px;}
.y183{bottom:223.410000px;}
.y3a{bottom:224.130000px;}
.y65{bottom:224.310000px;}
.y1fb{bottom:225.750000px;}
.y107{bottom:232.950000px;}
.y1ca{bottom:234.765000px;}
.ybf{bottom:240.165000px;}
.y193{bottom:241.410000px;}
.y234{bottom:241.770000px;}
.y154{bottom:241.950000px;}
.y1af{bottom:242.670000px;}
.y81{bottom:243.390000px;}
.y182{bottom:244.470000px;}
.y39{bottom:245.190000px;}
.ye7{bottom:246.285000px;}
.y1fa{bottom:258.330000px;}
.y192{bottom:259.770000px;}
.y64{bottom:260.130000px;}
.y233{bottom:261.570000px;}
.y1e8{bottom:261.585000px;}
.y153{bottom:263.010000px;}
.y181{bottom:265.530000px;}
.y38{bottom:266.250000px;}
.y106{bottom:266.790000px;}
.y1f9{bottom:273.645000px;}
.ybe{bottom:274.755000px;}
.y1ae{bottom:275.610000px;}
.y12f{bottom:280.650000px;}
.ye6{bottom:280.695000px;}
.y232{bottom:281.370000px;}
.y63{bottom:281.415000px;}
.y152{bottom:284.070000px;}
.y180{bottom:286.590000px;}
.y37{bottom:287.355000px;}
.y191{bottom:292.890000px;}
.y219{bottom:293.070000px;}
.y12e{bottom:295.785000px;}
.y105{bottom:300.450000px;}
.y231{bottom:300.990000px;}
.y62{bottom:302.475000px;}
.y151{bottom:305.130000px;}
.y80{bottom:307.155000px;}
.y17f{bottom:307.650000px;}
.y1ad{bottom:308.730000px;}
.ybd{bottom:309.315000px;}
.y218{bottom:310.905000px;}
.y12d{bottom:314.865000px;}
.ye5{bottom:315.255000px;}
.y36{bottom:319.035000px;}
.y230{bottom:320.790000px;}
.y61{bottom:323.535000px;}
.y190{bottom:325.830000px;}
.y150{bottom:326.190000px;}
.y199{bottom:327.270000px;}
.y17e{bottom:328.710000px;}
.y12c{bottom:333.765000px;}
.y104{bottom:334.110000px;}
.y35{bottom:340.095000px;}
.y1c5{bottom:340.605000px;}
.y1ac{bottom:341.850000px;}
.ybc{bottom:343.695000px;}
.y60{bottom:344.595000px;}
.y7f{bottom:345.315000px;}
.y1e5{bottom:347.085000px;}
.y14f{bottom:347.250000px;}
.y17d{bottom:349.770000px;}
.ye4{bottom:349.815000px;}
.y27d{bottom:351.210000px;}
.y12b{bottom:352.845000px;}
.y18f{bottom:358.950000px;}
.y34{bottom:361.155000px;}
.y22f{bottom:362.910000px;}
.y215{bottom:365.985000px;}
.y27c{bottom:367.425000px;}
.y103{bottom:367.950000px;}
.y14e{bottom:368.310000px;}
.y17c{bottom:370.830000px;}
.y12a{bottom:371.925000px;}
.y7e{bottom:373.575000px;}
.y1ab{bottom:374.790000px;}
.y5f{bottom:376.275000px;}
.ybb{bottom:378.255000px;}
.y1f7{bottom:379.485000px;}
.y33{bottom:382.215000px;}
.y22e{bottom:383.970000px;}
.ye3{bottom:384.195000px;}
.y27b{bottom:384.705000px;}
.y14d{bottom:389.370000px;}
.y17b{bottom:391.890000px;}
.y18e{bottom:392.070000px;}
.y102{bottom:401.610000px;}
.y279{bottom:401.805000px;}
.y32{bottom:403.275000px;}
.y22d{bottom:405.030000px;}
.y1aa{bottom:407.910000px;}
.y129{bottom:408.630000px;}
.y14c{bottom:410.430000px;}
.y5e{bottom:412.275000px;}
.y17a{bottom:412.770000px;}
.yba{bottom:412.815000px;}
.y9e{bottom:415.515000px;}
.ye2{bottom:418.755000px;}
.y278{bottom:419.115000px;}
.y214{bottom:422.715000px;}
.y31{bottom:424.335000px;}
.y18d{bottom:425.055000px;}
.y1c1{bottom:426.135000px;}
.y14b{bottom:431.535000px;}
.y1e4{bottom:432.435000px;}
.y5d{bottom:433.515000px;}
.y179{bottom:433.875000px;}
.y7d{bottom:434.235000px;}
.y197{bottom:434.595000px;}
.y101{bottom:435.495000px;}
.y277{bottom:436.215000px;}
.y128{bottom:440.355000px;}
.y1a9{bottom:440.895000px;}
.y9d{bottom:441.435000px;}
.y252{bottom:443.415000px;}
.y30{bottom:445.395000px;}
.yb9{bottom:447.195000px;}
.y14a{bottom:452.595000px;}
.ye1{bottom:453.315000px;}
.y276{bottom:453.495000px;}
.y5c{bottom:454.575000px;}
.y178{bottom:454.935000px;}
.y127{bottom:455.295000px;}
.y19a{bottom:455.655000px;}
.y18c{bottom:458.175000px;}
.y13{bottom:459.255000px;}
.y251{bottom:464.475000px;}
.y196{bottom:466.095000px;}
.y2f{bottom:466.455000px;}
.y9c{bottom:467.355000px;}
.y22c{bottom:468.255000px;}
.y7c{bottom:468.615000px;}
.y100{bottom:469.155000px;}
.y275{bottom:470.595000px;}
.y149{bottom:473.655000px;}
.y1a8{bottom:474.015000px;}
.y5b{bottom:475.635000px;}
.y177{bottom:475.995000px;}
.y126{bottom:478.515000px;}
.y212{bottom:479.235000px;}
.y9b{bottom:481.215000px;}
.yb8{bottom:481.755000px;}
.y1f6{bottom:485.355000px;}
.y250{bottom:485.535000px;}
.y2e{bottom:487.515000px;}
.ye0{bottom:487.695000px;}
.y22b{bottom:489.315000px;}
.y18b{bottom:491.295000px;}
.y12{bottom:494.355000px;}
.y148{bottom:494.715000px;}
.y5a{bottom:496.695000px;}
.y176{bottom:497.055000px;}
.y125{bottom:501.915000px;}
.yff{bottom:502.815000px;}
.y7b{bottom:503.175000px;}
.y274{bottom:504.975000px;}
.y24f{bottom:506.595000px;}
.y1a7{bottom:507.135000px;}
.y2d{bottom:508.575000px;}
.y22a{bottom:510.375000px;}
.y147{bottom:515.775000px;}
.yb7{bottom:516.315000px;}
.y1c0{bottom:516.675000px;}
.y59{bottom:517.755000px;}
.y1df{bottom:517.935000px;}
.y175{bottom:518.115000px;}
.y9a{bottom:519.015000px;}
.y273{bottom:522.075000px;}
.ydf{bottom:522.255000px;}
.y11{bottom:523.515000px;}
.y18a{bottom:524.235000px;}
.y124{bottom:525.135000px;}
.y24e{bottom:527.655000px;}
.y2c{bottom:529.635000px;}
.y229{bottom:531.435000px;}
.y20f{bottom:535.935000px;}
.yfe{bottom:536.655000px;}
.y146{bottom:536.835000px;}
.y7a{bottom:537.555000px;}
.y58{bottom:538.815000px;}
.y174{bottom:539.175000px;}
.y272{bottom:539.355000px;}
.y1a6{bottom:540.075000px;}
.y123{bottom:548.355000px;}
.y24d{bottom:548.715000px;}
.y1bf{bottom:549.255000px;}
.y2b{bottom:550.695000px;}
.y228{bottom:552.495000px;}
.y10{bottom:552.855000px;}
.y271{bottom:556.455000px;}
.ydd{bottom:556.845000px;}
.y99{bottom:557.025000px;}
.y189{bottom:557.355000px;}
.y145{bottom:557.895000px;}
.y57{bottom:559.905000px;}
.y173{bottom:560.235000px;}
.y1a5{bottom:561.135000px;}
.y24c{bottom:569.775000px;}
.yfd{bottom:570.315000px;}
.y1f5{bottom:570.855000px;}
.y122{bottom:571.575000px;}
.y2a{bottom:571.785000px;}
.y79{bottom:572.145000px;}
.y227{bottom:573.555000px;}
.y144{bottom:578.955000px;}
.y56{bottom:580.965000px;}
.y172{bottom:581.295000px;}
.y1be{bottom:581.655000px;}
.yf{bottom:582.015000px;}
.yb5{bottom:585.285000px;}
.y188{bottom:590.475000px;}
.y24b{bottom:590.835000px;}
.ydc{bottom:591.225000px;}
.y20d{bottom:592.455000px;}
.y29{bottom:592.845000px;}
.y1a4{bottom:594.255000px;}
.y121{bottom:594.795000px;}
.y97{bottom:594.825000px;}
.y143{bottom:599.835000px;}
.y1bd{bottom:600.555000px;}
.y55{bottom:602.025000px;}
.y171{bottom:602.355000px;}
.y226{bottom:603.615000px;}
.yfc{bottom:604.155000px;}
.y270{bottom:607.935000px;}
.ye{bottom:611.175000px;}
.y24a{bottom:611.895000px;}
.y28{bottom:612.645000px;}
.y78{bottom:616.245000px;}
.y120{bottom:618.015000px;}
.yb4{bottom:619.845000px;}
.y142{bottom:620.895000px;}
.y54{bottom:623.085000px;}
.y170{bottom:623.415000px;}
.y1dc{bottom:623.775000px;}
.y26f{bottom:625.215000px;}
.yda{bottom:625.785000px;}
.y1a3{bottom:627.375000px;}
.y95{bottom:632.625000px;}
.y249{bottom:632.955000px;}
.y1bc{bottom:633.135000px;}
.y225{bottom:633.675000px;}
.y27{bottom:633.705000px;}
.yfb{bottom:637.845000px;}
.yd{bottom:640.545000px;}
.y11f{bottom:641.445000px;}
.y141{bottom:641.985000px;}
.y26e{bottom:642.345000px;}
.y53{bottom:644.145000px;}
.y16f{bottom:644.505000px;}
.y20b{bottom:647.580000px;}
.y1bb{bottom:652.065000px;}
.y248{bottom:654.045000px;}
.yb3{bottom:654.225000px;}
.y26{bottom:654.765000px;}
.y77{bottom:655.845000px;}
.y26d{bottom:659.625000px;}
.yd9{bottom:660.345000px;}
.y140{bottom:663.045000px;}
.y11e{bottom:664.665000px;}
.y16e{bottom:665.565000px;}
.yc{bottom:669.705000px;}
.yfa{bottom:671.685000px;}
.y247{bottom:675.105000px;}
.y25{bottom:675.825000px;}
.y1f2{bottom:676.725000px;}
.y26c{bottom:676.740000px;}
.y76{bottom:677.085000px;}
.y13f{bottom:684.105000px;}
.y1ba{bottom:684.645000px;}
.y16d{bottom:686.625000px;}
.y11d{bottom:687.900000px;}
.yb2{bottom:688.785000px;}
.y1a2{bottom:693.465000px;}
.y26b{bottom:693.825000px;}
.y94{bottom:694.545000px;}
.yd8{bottom:694.725000px;}
.y246{bottom:696.165000px;}
.y24{bottom:696.885000px;}
.y75{bottom:698.145000px;}
.yb{bottom:699.045000px;}
.y205{bottom:702.660000px;}
.y1b9{bottom:703.545000px;}
.y13e{bottom:705.165000px;}
.yf9{bottom:705.345000px;}
.y224{bottom:705.885000px;}
.y16c{bottom:707.685000px;}
.y1da{bottom:709.320000px;}
.y11c{bottom:711.105000px;}
.y52{bottom:711.645000px;}
.y245{bottom:717.225000px;}
.y23{bottom:717.765000px;}
.y74{bottom:719.205000px;}
.yb1{bottom:723.345000px;}
.y13d{bottom:726.225000px;}
.y1a1{bottom:726.585000px;}
.ya{bottom:728.205000px;}
.y268{bottom:728.400000px;}
.y16b{bottom:728.745000px;}
.yd7{bottom:729.285000px;}
.y93{bottom:732.525000px;}
.y51{bottom:732.885000px;}
.y11b{bottom:734.325000px;}
.y223{bottom:735.945000px;}
.y1b8{bottom:736.125000px;}
.y244{bottom:738.285000px;}
.y22{bottom:738.825000px;}
.y73{bottom:739.005000px;}
.y266{bottom:745.500000px;}
.y13c{bottom:747.285000px;}
.y16a{bottom:749.805000px;}
.y50{bottom:753.945000px;}
.y28d{bottom:754.665000px;}
.y1b7{bottom:755.025000px;}
.y9{bottom:757.545000px;}
.y119{bottom:757.560000px;}
.yb0{bottom:757.725000px;}
.y92{bottom:758.265000px;}
.y243{bottom:759.345000px;}
.y1a0{bottom:759.525000px;}
.y21{bottom:759.885000px;}
.y265{bottom:762.585000px;}
.yd6{bottom:763.845000px;}
.y222{bottom:766.005000px;}
.y13b{bottom:768.345000px;}
.y169{bottom:770.865000px;}
.yf8{bottom:772.845000px;}
.y72{bottom:774.825000px;}
.y4f{bottom:775.005000px;}
.y264{bottom:777.345000px;}
.y242{bottom:780.405000px;}
.y117{bottom:780.960000px;}
.y1f0{bottom:782.745000px;}
.y91{bottom:784.185000px;}
.y8{bottom:786.705000px;}
.y1b6{bottom:787.425000px;}
.y28c{bottom:788.865000px;}
.y13a{bottom:789.405000px;}
.y20{bottom:791.745000px;}
.y168{bottom:791.925000px;}
.y204{bottom:792.105000px;}
.yaf{bottom:792.285000px;}
.y19f{bottom:792.645000px;}
.y4e{bottom:796.065000px;}
.yd5{bottom:798.225000px;}
.y263{bottom:798.240000px;}
.y241{bottom:801.465000px;}
.y115{bottom:804.165000px;}
.y28b{bottom:805.065000px;}
.yf7{bottom:806.505000px;}
.y90{bottom:810.105000px;}
.y139{bottom:810.465000px;}
.y1f{bottom:811.545000px;}
.y167{bottom:812.985000px;}
.y1d7{bottom:815.160000px;}
.y7{bottom:815.865000px;}
.y4d{bottom:817.125000px;}
.y261{bottom:819.300000px;}
.y28a{bottom:822.345000px;}
.y240{bottom:822.525000px;}
.y19e{bottom:825.765000px;}
.y221{bottom:826.125000px;}
.yac{bottom:826.845000px;}
.y114{bottom:827.385000px;}
.y1e{bottom:831.165000px;}
.y138{bottom:831.525000px;}
.y203{bottom:831.705000px;}
.yd3{bottom:832.800000px;}
.y166{bottom:834.045000px;}
.y8f{bottom:836.025000px;}
.y4c{bottom:838.230000px;}
.y1b5{bottom:838.905000px;}
.y289{bottom:839.460000px;}
.yf6{bottom:840.345000px;}
.y23f{bottom:843.585000px;}
.y6{bottom:845.205000px;}
.y113{bottom:850.605000px;}
.y1d{bottom:852.270000px;}
.y137{bottom:852.585000px;}
.y202{bottom:854.925000px;}
.y165{bottom:855.105000px;}
.y220{bottom:856.185000px;}
.y288{bottom:856.770000px;}
.y19d{bottom:858.750000px;}
.y4b{bottom:859.290000px;}
.yab{bottom:861.270000px;}
.y8e{bottom:861.810000px;}
.y23e{bottom:864.690000px;}
.yd2{bottom:867.390000px;}
.y1b4{bottom:871.530000px;}
.y1c{bottom:873.330000px;}
.y136{bottom:873.690000px;}
.y111{bottom:873.870000px;}
.yf5{bottom:874.050000px;}
.y5{bottom:874.410000px;}
.y25f{bottom:876.030000px;}
.y164{bottom:876.210000px;}
.y201{bottom:878.190000px;}
.y4a{bottom:880.350000px;}
.y23d{bottom:885.750000px;}
.y21f{bottom:886.290000px;}
.y8d{bottom:887.730000px;}
.y1ef{bottom:888.630000px;}
.y25e{bottom:890.610000px;}
.y287{bottom:890.970000px;}
.y19c{bottom:891.870000px;}
.y1b{bottom:893.130000px;}
.y135{bottom:894.750000px;}
.yaa{bottom:895.830000px;}
.y163{bottom:897.270000px;}
.y49{bottom:901.410000px;}
.yd1{bottom:901.770000px;}
.y4{bottom:903.750000px;}
.y1b3{bottom:903.930000px;}
.y256{bottom:905.370000px;}
.y23c{bottom:906.810000px;}
.yf4{bottom:907.890000px;}
.y286{bottom:908.250000px;}
.y71{bottom:912.210000px;}
.y110{bottom:914.730000px;}
.y134{bottom:915.810000px;}
.y21e{bottom:916.350000px;}
.y162{bottom:918.330000px;}
.y1d4{bottom:921.030000px;}
.y48{bottom:922.470000px;}
.y200{bottom:924.450000px;}
.y1a{bottom:924.990000px;}
.y285{bottom:925.350000px;}
.y8c{bottom:925.530000px;}
.y23b{bottom:927.870000px;}
.ya9{bottom:930.390000px;}
.y3{bottom:932.910000px;}
.yd0{bottom:936.330000px;}
.y133{bottom:936.870000px;}
.y161{bottom:939.390000px;}
.yf3{bottom:941.550000px;}
.y284{bottom:942.630000px;}
.y47{bottom:943.530000px;}
.y19{bottom:945.330000px;}
.y10f{bottom:946.410000px;}
.y1ff{bottom:947.670000px;}
.y70{bottom:948.030000px;}
.y23a{bottom:948.930000px;}
.y1b2{bottom:956.850000px;}
.y19b{bottom:957.930000px;}
.y283{bottom:959.730000px;}
.y160{bottom:960.450000px;}
.y8b{bottom:963.510000px;}
.y2{bottom:964.770000px;}
.y21d{bottom:967.470000px;}
.y6f{bottom:969.270000px;}
.y132{bottom:969.990000px;}
.ycf{bottom:970.890000px;}
.y1ee{bottom:974.130000px;}
.yf2{bottom:975.210000px;}
.y46{bottom:975.390000px;}
.y18{bottom:975.570000px;}
.y282{bottom:977.010000px;}
.y10e{bottom:978.270000px;}
.y15f{bottom:981.510000px;}
.y21c{bottom:988.530000px;}
.y6e{bottom:990.330000px;}
.y131{bottom:991.050000px;}
.y281{bottom:994.110000px;}
.y10d{bottom:996.450000px;}
.yf1{bottom:996.990000px;}
.ya8{bottom:999.330000px;}
.y8a{bottom:1001.310000px;}
.y15e{bottom:1002.570000px;}
.yce{bottom:1005.270000px;}
.y1d2{bottom:1006.530000px;}
.y255{bottom:1007.790000px;}
.y21b{bottom:1009.590000px;}
.y45{bottom:1011.210000px;}
.y6d{bottom:1011.390000px;}
.y130{bottom:1012.110000px;}
.y10c{bottom:1014.810000px;}
.y15d{bottom:1023.630000px;}
.y89{bottom:1027.230000px;}
.y280{bottom:1028.490000px;}
.y253{bottom:1029.210000px;}
.yf0{bottom:1030.830000px;}
.y198{bottom:1031.910000px;}
.y44{bottom:1032.450000px;}
.y10b{bottom:1033.170000px;}
.ya5{bottom:1033.890000px;}
.y17{bottom:1035.150000px;}
.y1{bottom:1037.670000px;}
.y21a{bottom:1038.390000px;}
.ycd{bottom:1039.830000px;}
.y15c{bottom:1044.690000px;}
.y27f{bottom:1045.590000px;}
.y1ed{bottom:1047.570000px;}
.y88{bottom:1053.150000px;}
.y6c{bottom:1053.510000px;}
.y10a{bottom:1061.970000px;}
.y27e{bottom:1062.870000px;}
.y43{bottom:1064.130000px;}
.yef{bottom:1064.490000px;}
.y15b{bottom:1065.750000px;}
.ya2{bottom:1068.270000px;}
.ycc{bottom:1074.390000px;}
.y87{bottom:1078.890000px;}
.y6b{bottom:1085.190000px;}
.y16{bottom:1096.710000px;}
.y42{bottom:1100.130000px;}
.ycb{bottom:1108.770000px;}
.ya0{bottom:1109.490000px;}
.y86{bottom:1116.870000px;}
.y6a{bottom:1121.220000px;}
.y41{bottom:1121.400000px;}
.y40{bottom:1142.460000px;}
.y85{bottom:1143.000000px;}
.yca{bottom:1143.360000px;}
.y9f{bottom:1162.440000px;}
.h42{height:14.565000px;}
.h41{height:14.745000px;}
.h46{height:14.760000px;}
.h47{height:17.085000px;}
.h4a{height:17.100000px;}
.h4b{height:17.130000px;}
.h4c{height:17.265000px;}
.h49{height:17.280000px;}
.h4d{height:17.301000px;}
.h25{height:18.165000px;}
.h24{height:18.345000px;}
.h45{height:20.880000px;}
.h43{height:20.902500px;}
.h44{height:21.045000px;}
.h20{height:22.485000px;}
.h22{height:22.500000px;}
.h21{height:22.522500px;}
.h23{height:22.530000px;}
.h30{height:32.430000px;}
.h18{height:34.365000px;}
.h1e{height:34.371000px;}
.h1b{height:34.380000px;}
.h1f{height:34.401000px;}
.h19{height:34.402500px;}
.h17{height:34.545000px;}
.h1d{height:34.551000px;}
.h1a{height:34.560000px;}
.h1c{height:34.581000px;}
.h15{height:34.590000px;}
.h40{height:34.625391px;}
.h3e{height:35.025820px;}
.h14{height:37.785000px;}
.h12{height:37.800000px;}
.h11{height:37.980000px;}
.h13{height:38.010000px;}
.hd{height:42.894141px;}
.hb{height:43.390195px;}
.h10{height:43.565273px;}
.h37{height:45.478125px;}
.h38{height:46.004062px;}
.h4{height:47.545312px;}
.h3{height:48.095156px;}
.h33{height:48.289219px;}
.he{height:49.109766px;}
.h3a{height:51.679688px;}
.h2f{height:52.920000px;}
.h39{height:53.985000px;}
.h3b{height:54.036000px;}
.h8{height:55.054688px;}
.h3c{height:55.425000px;}
.h3d{height:55.461000px;}
.h35{height:61.164492px;}
.h48{height:61.423863px;}
.hc{height:62.327813px;}
.h36{height:67.485000px;}
.h16{height:69.086250px;}
.h2{height:73.222734px;}
.h26{height:73.425000px;}
.h2a{height:73.470000px;}
.h4e{height:74.004654px;}
.h5{height:74.953125px;}
.ha{height:75.462891px;}
.h9{height:75.515625px;}
.h2e{height:85.341000px;}
.h2b{height:85.485000px;}
.h27{height:85.521000px;}
.h2d{height:85.530000px;}
.h29{height:85.536000px;}
.h3f{height:102.405000px;}
.h28{height:105.825000px;}
.h2c{height:105.861000px;}
.h31{height:105.862500px;}
.h34{height:105.870000px;}
.h32{height:106.020000px;}
.hf{height:125.406562px;}
.h1{height:128.277422px;}
.h0{height:1188.000000px;}
.h6{height:1262.880000px;}
.h7{height:1263.000000px;}
.w12{width:28.251000px;}
.w3{width:32.391000px;}
.w7{width:34.005000px;}
.w8{width:34.041000px;}
.w5{width:43.596000px;}
.w10{width:72.021000px;}
.we{width:73.296000px;}
.w11{width:77.925000px;}
.w18{width:79.365000px;}
.w14{width:80.100000px;}
.w17{width:80.301000px;}
.w15{width:80.316000px;}
.w16{width:86.745000px;}
.wd{width:87.300000px;}
.wf{width:107.985000px;}
.w19{width:109.971000px;}
.w4{width:175.521000px;}
.w1b{width:195.690000px;}
.w1c{width:206.475000px;}
.w13{width:257.421000px;}
.wa{width:265.155000px;}
.w1a{width:271.275000px;}
.wc{width:283.521000px;}
.w1d{width:381.261000px;}
.wb{width:430.095000px;}
.w6{width:509.466000px;}
.w9{width:681.750000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.xc{left:-4.500000px;}
.x0{left:0.000000px;}
.x2c{left:1.800000px;}
.x2b{left:3.240000px;}
.x9{left:5.391000px;}
.x27{left:6.660000px;}
.x18{left:7.731000px;}
.x29{left:9.180000px;}
.x28{left:10.440000px;}
.x14{left:12.405000px;}
.x2a{left:15.660000px;}
.xf{left:16.905000px;}
.x24{left:27.540000px;}
.x26{left:29.880000px;}
.x23{left:34.740000px;}
.x33{left:36.000000px;}
.x34{left:39.225000px;}
.x25{left:44.805000px;}
.xb{left:84.960000px;}
.x2{left:106.596000px;}
.x1{left:108.036000px;}
.x2e{left:110.385000px;}
.x17{left:113.085000px;}
.x3{left:123.156000px;}
.xd{left:128.565000px;}
.x1b{left:135.036000px;}
.x4{left:139.536000px;}
.x6{left:160.230000px;}
.x1c{left:162.030000px;}
.x36{left:189.030000px;}
.x37{left:216.030000px;}
.x38{left:218.025000px;}
.x7{left:225.030000px;}
.x19{left:374.655000px;}
.x1e{left:391.575000px;}
.x2f{left:396.975000px;}
.x16{left:419.475000px;}
.x35{left:441.615000px;}
.x8{left:446.475000px;}
.x2d{left:459.075000px;}
.x1f{left:478.875000px;}
.x39{left:489.315000px;}
.x20{left:552.180000px;}
.x30{left:559.560000px;}
.xe{left:638.040000px;}
.x31{left:647.220000px;}
.x21{left:660.180000px;}
.x10{left:672.060000px;}
.x3a{left:685.020000px;}
.x11{left:706.110000px;}
.x32{left:728.610000px;}
.x22{left:732.210000px;}
.x12{left:740.130000px;}
.x13{left:774.150000px;}
.x5{left:778.470000px;}
.x1a{left:793.410000px;}
.xa{left:799.710000px;}
.x15{left:801.870000px;}
.x1d{left:810.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls11{letter-spacing:-0.741333pt;}
.ls42{letter-spacing:-0.314667pt;}
.lsc{letter-spacing:-0.305067pt;}
.ls5{letter-spacing:-0.276267pt;}
.ls33{letter-spacing:-0.269333pt;}
.ls21{letter-spacing:-0.238933pt;}
.ls34{letter-spacing:-0.182933pt;}
.ls1d{letter-spacing:-0.153067pt;}
.ls3b{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls41{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.105600pt;}
.lsf{letter-spacing:-0.102933pt;}
.ls12{letter-spacing:-0.102400pt;}
.ls10{letter-spacing:-0.097067pt;}
.ls3e{letter-spacing:-0.095467pt;}
.ls20{letter-spacing:-0.061867pt;}
.ls35{letter-spacing:-0.051840pt;}
.ls32{letter-spacing:-0.044160pt;}
.ls1c{letter-spacing:-0.036480pt;}
.ls1e{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.019840pt;}
.ls2d{letter-spacing:0.022400pt;}
.ls2f{letter-spacing:0.034560pt;}
.ls2b{letter-spacing:0.053867pt;}
.ls30{letter-spacing:0.057067pt;}
.ls43{letter-spacing:0.074133pt;}
.ls2c{letter-spacing:0.089600pt;}
.ls31{letter-spacing:0.090133pt;}
.ls8{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.159360pt;}
.ls22{letter-spacing:0.186133pt;}
.lsd{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.230933pt;}
.ls2e{letter-spacing:0.244267pt;}
.ls1{letter-spacing:0.278933pt;}
.ls1f{letter-spacing:0.317333pt;}
.ls6{letter-spacing:0.330133pt;}
.ls38{letter-spacing:0.385280pt;}
.ls3d{letter-spacing:13.392640pt;}
.ls27{letter-spacing:22.352640pt;}
.ls2a{letter-spacing:31.931307pt;}
.ls29{letter-spacing:32.571307pt;}
.ls28{letter-spacing:33.211307pt;}
.ls1a{letter-spacing:33.851307pt;}
.ls1b{letter-spacing:34.491307pt;}
.ls17{letter-spacing:35.131307pt;}
.ls14{letter-spacing:37.051307pt;}
.ls15{letter-spacing:38.971307pt;}
.ls16{letter-spacing:39.611307pt;}
.ls25{letter-spacing:40.251307pt;}
.ls3f{letter-spacing:40.891307pt;}
.ls3c{letter-spacing:40.912640pt;}
.ls18{letter-spacing:41.531307pt;}
.ls19{letter-spacing:43.451307pt;}
.ls26{letter-spacing:45.371307pt;}
.ls24{letter-spacing:50.491307pt;}
.ls23{letter-spacing:54.331307pt;}
.ls0{letter-spacing:58.373120pt;}
.lsb{letter-spacing:106.832640pt;}
.ls9{letter-spacing:145.232640pt;}
.ls7{letter-spacing:150.352640pt;}
.ls39{letter-spacing:175.631360pt;}
.ls3a{letter-spacing:178.693120pt;}
.ls37{letter-spacing:754.799787pt;}
.ls36{letter-spacing:754.831787pt;}
.ws26{word-spacing:-22.080000pt;}
.wsa{word-spacing:-21.888000pt;}
.wsd{word-spacing:-16.271573pt;}
.ws24{word-spacing:-16.233173pt;}
.wsb{word-spacing:-14.767360pt;}
.ws5{word-spacing:-13.637013pt;}
.ws1{word-spacing:-13.585813pt;}
.ws0{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.wsf{word-spacing:-13.204480pt;}
.ws2{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.030613pt;}
.wse{word-spacing:-12.565547pt;}
.ws14{word-spacing:-12.322453pt;}
.ws1c{word-spacing:-12.249387pt;}
.ws17{word-spacing:-12.191253pt;}
.ws1f{word-spacing:-12.095253pt;}
.ws1a{word-spacing:-12.094720pt;}
.ws1e{word-spacing:-12.062187pt;}
.ws18{word-spacing:-12.058987pt;}
.ws1d{word-spacing:-12.039680pt;}
.ws1b{word-spacing:-12.027520pt;}
.ws7{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.976320pt;}
.ws10{word-spacing:-11.968640pt;}
.ws20{word-spacing:-11.960960pt;}
.ws23{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.943253pt;}
.ws25{word-spacing:-11.909653pt;}
.ws11{word-spacing:-11.908053pt;}
.ws19{word-spacing:-11.902720pt;}
.wsc{word-spacing:-11.902187pt;}
.ws8{word-spacing:-11.899520pt;}
.ws12{word-spacing:-11.852053pt;}
.ws22{word-spacing:-11.822187pt;}
.ws16{word-spacing:-11.766187pt;}
.ws21{word-spacing:-11.735787pt;}
.ws9{word-spacing:-11.700053pt;}
.ws2a{word-spacing:-9.921813pt;}
.ws29{word-spacing:-9.765013pt;}
.ws28{word-spacing:-9.710720pt;}
.ws27{word-spacing:-9.690880pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-12.439893pt;}
._6{margin-left:-11.514880pt;}
._8{margin-left:-9.550720pt;}
._7{margin-left:-7.949547pt;}
._2{margin-left:-6.394560pt;}
._4{margin-left:-2.644480pt;}
._1{margin-left:-0.941867pt;}
._0{width:1.021440pt;}
._9{width:1.978027pt;}
._a{width:3.010987pt;}
._e{width:4.033707pt;}
._1a{width:8.489600pt;}
._19{width:9.669760pt;}
._17{width:16.352427pt;}
._16{width:23.216640pt;}
._14{width:36.137600pt;}
._12{width:72.417920pt;}
._3{width:88.129707pt;}
._18{width:107.493760pt;}
._f{width:126.213547pt;}
._15{width:133.996160pt;}
._10{width:139.032747pt;}
._d{width:153.041707pt;}
._11{width:175.876693pt;}
._13{width:179.994880pt;}
._1b{width:752.138667pt;}
._c{width:754.799787pt;}
._b{width:756.133547pt;}
.fs7{font-size:34.560000pt;}
.fsb{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.fs0{font-size:149.120000pt;}
.y269{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y267{bottom:2.866667pt;}
.y25d{bottom:2.880000pt;}
.y27a{bottom:3.026667pt;}
.y254{bottom:3.040000pt;}
.y26a{bottom:3.360000pt;}
.y118{bottom:3.506667pt;}
.y116{bottom:3.520000pt;}
.y11a{bottom:3.666667pt;}
.y112{bottom:3.680000pt;}
.y260{bottom:8.480000pt;}
.y262{bottom:8.626667pt;}
.yc3{bottom:14.706667pt;}
.yc8{bottom:14.712000pt;}
.ya6{bottom:14.720000pt;}
.yad{bottom:14.760000pt;}
.yc0{bottom:14.866667pt;}
.yec{bottom:14.872000pt;}
.ya3{bottom:14.880000pt;}
.ya1{bottom:14.906667pt;}
.y1cc{bottom:15.186667pt;}
.y1e2{bottom:15.200000pt;}
.y1c8{bottom:15.346667pt;}
.y1c4{bottom:15.360000pt;}
.y1dd{bottom:15.386667pt;}
.y25c{bottom:15.840000pt;}
.yc4{bottom:16.146667pt;}
.yc9{bottom:16.152000pt;}
.ya7{bottom:16.160000pt;}
.yd4{bottom:16.186667pt;}
.yae{bottom:16.200000pt;}
.yc1{bottom:16.306667pt;}
.ya4{bottom:16.320000pt;}
.yb6{bottom:16.346667pt;}
.yde{bottom:16.800000pt;}
.ydb{bottom:16.960000pt;}
.y98{bottom:21.280000pt;}
.y96{bottom:21.440000pt;}
.y20a{bottom:21.586667pt;}
.y1ec{bottom:24.480000pt;}
.y20c{bottom:25.266667pt;}
.y20e{bottom:25.280000pt;}
.y210{bottom:25.760000pt;}
.y216{bottom:25.906667pt;}
.y213{bottom:25.920000pt;}
.y25b{bottom:28.960000pt;}
.y207{bottom:31.346667pt;}
.y206{bottom:31.506667pt;}
.y1eb{bottom:33.440000pt;}
.y1c3{bottom:33.600000pt;}
.y217{bottom:35.506667pt;}
.y211{bottom:35.520000pt;}
.y1e7{bottom:38.706667pt;}
.y1c9{bottom:38.866667pt;}
.y1d1{bottom:38.880000pt;}
.y1de{bottom:38.906667pt;}
.y209{bottom:40.946667pt;}
.y25a{bottom:41.920000pt;}
.y1c7{bottom:44.146667pt;}
.y1d6{bottom:44.160000pt;}
.y1d0{bottom:44.186667pt;}
.y208{bottom:46.226667pt;}
.y1cd{bottom:47.826667pt;}
.y1e3{bottom:47.840000pt;}
.y1f8{bottom:47.866667pt;}
.y1f4{bottom:48.000000pt;}
.y1d9{bottom:48.026667pt;}
.yee{bottom:51.200000pt;}
.y15{bottom:51.232000pt;}
.y1d3{bottom:51.680000pt;}
.y1c2{bottom:51.840000pt;}
.y259{bottom:55.040000pt;}
.y1db{bottom:62.226667pt;}
.y1e1{bottom:62.240000pt;}
.y1e6{bottom:62.266667pt;}
.y1c6{bottom:62.386667pt;}
.y1d5{bottom:62.400000pt;}
.y1cf{bottom:62.426667pt;}
.y258{bottom:68.000000pt;}
.yed{bottom:69.120000pt;}
.y14{bottom:69.152000pt;}
.y1cb{bottom:80.466667pt;}
.y1e0{bottom:80.480000pt;}
.y1d8{bottom:80.506667pt;}
.y1f1{bottom:80.520000pt;}
.y1f3{bottom:80.640000pt;}
.y257{bottom:80.960000pt;}
.yc7{bottom:90.920000pt;}
.yeb{bottom:96.200000pt;}
.y15a{bottom:102.720000pt;}
.y3f{bottom:105.632000pt;}
.y1ea{bottom:109.440000pt;}
.y1fe{bottom:114.080000pt;}
.y69{bottom:114.912000pt;}
.y159{bottom:121.440000pt;}
.yc6{bottom:121.480000pt;}
.y239{bottom:122.400000pt;}
.y187{bottom:123.680000pt;}
.y3e{bottom:124.352000pt;}
.yea{bottom:126.920000pt;}
.y1ce{bottom:132.640000pt;}
.y68{bottom:133.626667pt;}
.y84{bottom:136.666667pt;}
.y158{bottom:140.160000pt;}
.y238{bottom:141.120000pt;}
.y186{bottom:142.400000pt;}
.y3d{bottom:143.066667pt;}
.y1fd{bottom:143.360000pt;}
.y109{bottom:147.040000pt;}
.yc5{bottom:152.200000pt;}
.y67{bottom:152.346667pt;}
.y1e9{bottom:156.480000pt;}
.y1b1{bottom:156.800000pt;}
.ye9{bottom:157.480000pt;}
.y157{bottom:158.880000pt;}
.y83{bottom:159.706667pt;}
.y237{bottom:159.840000pt;}
.y185{bottom:161.120000pt;}
.y3c{bottom:161.786667pt;}
.y66{bottom:171.066667pt;}
.y1fc{bottom:172.826667pt;}
.y108{bottom:177.146667pt;}
.y156{bottom:177.626667pt;}
.y236{bottom:178.586667pt;}
.y184{bottom:179.866667pt;}
.y3b{bottom:180.506667pt;}
.y195{bottom:182.106667pt;}
.yc2{bottom:182.920000pt;}
.y1b0{bottom:186.266667pt;}
.ye8{bottom:188.200000pt;}
.y82{bottom:193.466667pt;}
.y155{bottom:196.346667pt;}
.y235{bottom:197.306667pt;}
.y194{bottom:198.426667pt;}
.y183{bottom:198.586667pt;}
.y3a{bottom:199.226667pt;}
.y65{bottom:199.386667pt;}
.y1fb{bottom:200.666667pt;}
.y107{bottom:207.066667pt;}
.y1ca{bottom:208.680000pt;}
.ybf{bottom:213.480000pt;}
.y193{bottom:214.586667pt;}
.y234{bottom:214.906667pt;}
.y154{bottom:215.066667pt;}
.y1af{bottom:215.706667pt;}
.y81{bottom:216.346667pt;}
.y182{bottom:217.306667pt;}
.y39{bottom:217.946667pt;}
.ye7{bottom:218.920000pt;}
.y1fa{bottom:229.626667pt;}
.y192{bottom:230.906667pt;}
.y64{bottom:231.226667pt;}
.y233{bottom:232.506667pt;}
.y1e8{bottom:232.520000pt;}
.y153{bottom:233.786667pt;}
.y181{bottom:236.026667pt;}
.y38{bottom:236.666667pt;}
.y106{bottom:237.146667pt;}
.y1f9{bottom:243.240000pt;}
.ybe{bottom:244.226667pt;}
.y1ae{bottom:244.986667pt;}
.y12f{bottom:249.466667pt;}
.ye6{bottom:249.506667pt;}
.y232{bottom:250.106667pt;}
.y63{bottom:250.146667pt;}
.y152{bottom:252.506667pt;}
.y180{bottom:254.746667pt;}
.y37{bottom:255.426667pt;}
.y191{bottom:260.346667pt;}
.y219{bottom:260.506667pt;}
.y12e{bottom:262.920000pt;}
.y105{bottom:267.066667pt;}
.y231{bottom:267.546667pt;}
.y62{bottom:268.866667pt;}
.y151{bottom:271.226667pt;}
.y80{bottom:273.026667pt;}
.y17f{bottom:273.466667pt;}
.y1ad{bottom:274.426667pt;}
.ybd{bottom:274.946667pt;}
.y218{bottom:276.360000pt;}
.y12d{bottom:279.880000pt;}
.ye5{bottom:280.226667pt;}
.y36{bottom:283.586667pt;}
.y230{bottom:285.146667pt;}
.y61{bottom:287.586667pt;}
.y190{bottom:289.626667pt;}
.y150{bottom:289.946667pt;}
.y199{bottom:290.906667pt;}
.y17e{bottom:292.186667pt;}
.y12c{bottom:296.680000pt;}
.y104{bottom:296.986667pt;}
.y35{bottom:302.306667pt;}
.y1c5{bottom:302.760000pt;}
.y1ac{bottom:303.866667pt;}
.ybc{bottom:305.506667pt;}
.y60{bottom:306.306667pt;}
.y7f{bottom:306.946667pt;}
.y1e5{bottom:308.520000pt;}
.y14f{bottom:308.666667pt;}
.y17d{bottom:310.906667pt;}
.ye4{bottom:310.946667pt;}
.y27d{bottom:312.186667pt;}
.y12b{bottom:313.640000pt;}
.y18f{bottom:319.066667pt;}
.y34{bottom:321.026667pt;}
.y22f{bottom:322.586667pt;}
.y215{bottom:325.320000pt;}
.y27c{bottom:326.600000pt;}
.y103{bottom:327.066667pt;}
.y14e{bottom:327.386667pt;}
.y17c{bottom:329.626667pt;}
.y12a{bottom:330.600000pt;}
.y7e{bottom:332.066667pt;}
.y1ab{bottom:333.146667pt;}
.y5f{bottom:334.466667pt;}
.ybb{bottom:336.226667pt;}
.y1f7{bottom:337.320000pt;}
.y33{bottom:339.746667pt;}
.y22e{bottom:341.306667pt;}
.ye3{bottom:341.506667pt;}
.y27b{bottom:341.960000pt;}
.y14d{bottom:346.106667pt;}
.y17b{bottom:348.346667pt;}
.y18e{bottom:348.506667pt;}
.y102{bottom:356.986667pt;}
.y279{bottom:357.160000pt;}
.y32{bottom:358.466667pt;}
.y22d{bottom:360.026667pt;}
.y1aa{bottom:362.586667pt;}
.y129{bottom:363.226667pt;}
.y14c{bottom:364.826667pt;}
.y5e{bottom:366.466667pt;}
.y17a{bottom:366.906667pt;}
.yba{bottom:366.946667pt;}
.y9e{bottom:369.346667pt;}
.ye2{bottom:372.226667pt;}
.y278{bottom:372.546667pt;}
.y214{bottom:375.746667pt;}
.y31{bottom:377.186667pt;}
.y18d{bottom:377.826667pt;}
.y1c1{bottom:378.786667pt;}
.y14b{bottom:383.586667pt;}
.y1e4{bottom:384.386667pt;}
.y5d{bottom:385.346667pt;}
.y179{bottom:385.666667pt;}
.y7d{bottom:385.986667pt;}
.y197{bottom:386.306667pt;}
.y101{bottom:387.106667pt;}
.y277{bottom:387.746667pt;}
.y128{bottom:391.426667pt;}
.y1a9{bottom:391.906667pt;}
.y9d{bottom:392.386667pt;}
.y252{bottom:394.146667pt;}
.y30{bottom:395.906667pt;}
.yb9{bottom:397.506667pt;}
.y14a{bottom:402.306667pt;}
.ye1{bottom:402.946667pt;}
.y276{bottom:403.106667pt;}
.y5c{bottom:404.066667pt;}
.y178{bottom:404.386667pt;}
.y127{bottom:404.706667pt;}
.y19a{bottom:405.026667pt;}
.y18c{bottom:407.266667pt;}
.y13{bottom:408.226667pt;}
.y251{bottom:412.866667pt;}
.y196{bottom:414.306667pt;}
.y2f{bottom:414.626667pt;}
.y9c{bottom:415.426667pt;}
.y22c{bottom:416.226667pt;}
.y7c{bottom:416.546667pt;}
.y100{bottom:417.026667pt;}
.y275{bottom:418.306667pt;}
.y149{bottom:421.026667pt;}
.y1a8{bottom:421.346667pt;}
.y5b{bottom:422.786667pt;}
.y177{bottom:423.106667pt;}
.y126{bottom:425.346667pt;}
.y212{bottom:425.986667pt;}
.y9b{bottom:427.746667pt;}
.yb8{bottom:428.226667pt;}
.y1f6{bottom:431.426667pt;}
.y250{bottom:431.586667pt;}
.y2e{bottom:433.346667pt;}
.ye0{bottom:433.506667pt;}
.y22b{bottom:434.946667pt;}
.y18b{bottom:436.706667pt;}
.y12{bottom:439.426667pt;}
.y148{bottom:439.746667pt;}
.y5a{bottom:441.506667pt;}
.y176{bottom:441.826667pt;}
.y125{bottom:446.146667pt;}
.yff{bottom:446.946667pt;}
.y7b{bottom:447.266667pt;}
.y274{bottom:448.866667pt;}
.y24f{bottom:450.306667pt;}
.y1a7{bottom:450.786667pt;}
.y2d{bottom:452.066667pt;}
.y22a{bottom:453.666667pt;}
.y147{bottom:458.466667pt;}
.yb7{bottom:458.946667pt;}
.y1c0{bottom:459.266667pt;}
.y59{bottom:460.226667pt;}
.y1df{bottom:460.386667pt;}
.y175{bottom:460.546667pt;}
.y9a{bottom:461.346667pt;}
.y273{bottom:464.066667pt;}
.ydf{bottom:464.226667pt;}
.y11{bottom:465.346667pt;}
.y18a{bottom:465.986667pt;}
.y124{bottom:466.786667pt;}
.y24e{bottom:469.026667pt;}
.y2c{bottom:470.786667pt;}
.y229{bottom:472.386667pt;}
.y20f{bottom:476.386667pt;}
.yfe{bottom:477.026667pt;}
.y146{bottom:477.186667pt;}
.y7a{bottom:477.826667pt;}
.y58{bottom:478.946667pt;}
.y174{bottom:479.266667pt;}
.y272{bottom:479.426667pt;}
.y1a6{bottom:480.066667pt;}
.y123{bottom:487.426667pt;}
.y24d{bottom:487.746667pt;}
.y1bf{bottom:488.226667pt;}
.y2b{bottom:489.506667pt;}
.y228{bottom:491.106667pt;}
.y10{bottom:491.426667pt;}
.y271{bottom:494.626667pt;}
.ydd{bottom:494.973333pt;}
.y99{bottom:495.133333pt;}
.y189{bottom:495.426667pt;}
.y145{bottom:495.906667pt;}
.y57{bottom:497.693333pt;}
.y173{bottom:497.986667pt;}
.y1a5{bottom:498.786667pt;}
.y24c{bottom:506.466667pt;}
.yfd{bottom:506.946667pt;}
.y1f5{bottom:507.426667pt;}
.y122{bottom:508.066667pt;}
.y2a{bottom:508.253333pt;}
.y79{bottom:508.573333pt;}
.y227{bottom:509.826667pt;}
.y144{bottom:514.626667pt;}
.y56{bottom:516.413333pt;}
.y172{bottom:516.706667pt;}
.y1be{bottom:517.026667pt;}
.yf{bottom:517.346667pt;}
.yb5{bottom:520.253333pt;}
.y188{bottom:524.866667pt;}
.y24b{bottom:525.186667pt;}
.ydc{bottom:525.533333pt;}
.y20d{bottom:526.626667pt;}
.y29{bottom:526.973333pt;}
.y1a4{bottom:528.226667pt;}
.y121{bottom:528.706667pt;}
.y97{bottom:528.733333pt;}
.y143{bottom:533.186667pt;}
.y1bd{bottom:533.826667pt;}
.y55{bottom:535.133333pt;}
.y171{bottom:535.426667pt;}
.y226{bottom:536.546667pt;}
.yfc{bottom:537.026667pt;}
.y270{bottom:540.386667pt;}
.ye{bottom:543.266667pt;}
.y24a{bottom:543.906667pt;}
.y28{bottom:544.573333pt;}
.y78{bottom:547.773333pt;}
.y120{bottom:549.346667pt;}
.yb4{bottom:550.973333pt;}
.y142{bottom:551.906667pt;}
.y54{bottom:553.853333pt;}
.y170{bottom:554.146667pt;}
.y1dc{bottom:554.466667pt;}
.y26f{bottom:555.746667pt;}
.yda{bottom:556.253333pt;}
.y1a3{bottom:557.666667pt;}
.y95{bottom:562.333333pt;}
.y249{bottom:562.626667pt;}
.y1bc{bottom:562.786667pt;}
.y225{bottom:563.266667pt;}
.y27{bottom:563.293333pt;}
.yfb{bottom:566.973333pt;}
.yd{bottom:569.373333pt;}
.y11f{bottom:570.173333pt;}
.y141{bottom:570.653333pt;}
.y26e{bottom:570.973333pt;}
.y53{bottom:572.573333pt;}
.y16f{bottom:572.893333pt;}
.y20b{bottom:575.626667pt;}
.y1bb{bottom:579.613333pt;}
.y248{bottom:581.373333pt;}
.yb3{bottom:581.533333pt;}
.y26{bottom:582.013333pt;}
.y77{bottom:582.973333pt;}
.y26d{bottom:586.333333pt;}
.yd9{bottom:586.973333pt;}
.y140{bottom:589.373333pt;}
.y11e{bottom:590.813333pt;}
.y16e{bottom:591.613333pt;}
.yc{bottom:595.293333pt;}
.yfa{bottom:597.053333pt;}
.y247{bottom:600.093333pt;}
.y25{bottom:600.733333pt;}
.y1f2{bottom:601.533333pt;}
.y26c{bottom:601.546667pt;}
.y76{bottom:601.853333pt;}
.y13f{bottom:608.093333pt;}
.y1ba{bottom:608.573333pt;}
.y16d{bottom:610.333333pt;}
.y11d{bottom:611.466667pt;}
.yb2{bottom:612.253333pt;}
.y1a2{bottom:616.413333pt;}
.y26b{bottom:616.733333pt;}
.y94{bottom:617.373333pt;}
.yd8{bottom:617.533333pt;}
.y246{bottom:618.813333pt;}
.y24{bottom:619.453333pt;}
.y75{bottom:620.573333pt;}
.yb{bottom:621.373333pt;}
.y205{bottom:624.586667pt;}
.y1b9{bottom:625.373333pt;}
.y13e{bottom:626.813333pt;}
.yf9{bottom:626.973333pt;}
.y224{bottom:627.453333pt;}
.y16c{bottom:629.053333pt;}
.y1da{bottom:630.506667pt;}
.y11c{bottom:632.093333pt;}
.y52{bottom:632.573333pt;}
.y245{bottom:637.533333pt;}
.y23{bottom:638.013333pt;}
.y74{bottom:639.293333pt;}
.yb1{bottom:642.973333pt;}
.y13d{bottom:645.533333pt;}
.y1a1{bottom:645.853333pt;}
.ya{bottom:647.293333pt;}
.y268{bottom:647.466667pt;}
.y16b{bottom:647.773333pt;}
.yd7{bottom:648.253333pt;}
.y93{bottom:651.133333pt;}
.y51{bottom:651.453333pt;}
.y11b{bottom:652.733333pt;}
.y223{bottom:654.173333pt;}
.y1b8{bottom:654.333333pt;}
.y244{bottom:656.253333pt;}
.y22{bottom:656.733333pt;}
.y73{bottom:656.893333pt;}
.y266{bottom:662.666667pt;}
.y13c{bottom:664.253333pt;}
.y16a{bottom:666.493333pt;}
.y50{bottom:670.173333pt;}
.y28d{bottom:670.813333pt;}
.y1b7{bottom:671.133333pt;}
.y9{bottom:673.373333pt;}
.y119{bottom:673.386667pt;}
.yb0{bottom:673.533333pt;}
.y92{bottom:674.013333pt;}
.y243{bottom:674.973333pt;}
.y1a0{bottom:675.133333pt;}
.y21{bottom:675.453333pt;}
.y265{bottom:677.853333pt;}
.yd6{bottom:678.973333pt;}
.y222{bottom:680.893333pt;}
.y13b{bottom:682.973333pt;}
.y169{bottom:685.213333pt;}
.yf8{bottom:686.973333pt;}
.y72{bottom:688.733333pt;}
.y4f{bottom:688.893333pt;}
.y264{bottom:690.973333pt;}
.y242{bottom:693.693333pt;}
.y117{bottom:694.186667pt;}
.y1f0{bottom:695.773333pt;}
.y91{bottom:697.053333pt;}
.y8{bottom:699.293333pt;}
.y1b6{bottom:699.933333pt;}
.y28c{bottom:701.213333pt;}
.y13a{bottom:701.693333pt;}
.y20{bottom:703.773333pt;}
.y168{bottom:703.933333pt;}
.y204{bottom:704.093333pt;}
.yaf{bottom:704.253333pt;}
.y19f{bottom:704.573333pt;}
.y4e{bottom:707.613333pt;}
.yd5{bottom:709.533333pt;}
.y263{bottom:709.546667pt;}
.y241{bottom:712.413333pt;}
.y115{bottom:714.813333pt;}
.y28b{bottom:715.613333pt;}
.yf7{bottom:716.893333pt;}
.y90{bottom:720.093333pt;}
.y139{bottom:720.413333pt;}
.y1f{bottom:721.373333pt;}
.y167{bottom:722.653333pt;}
.y1d7{bottom:724.586667pt;}
.y7{bottom:725.213333pt;}
.y4d{bottom:726.333333pt;}
.y261{bottom:728.266667pt;}
.y28a{bottom:730.973333pt;}
.y240{bottom:731.133333pt;}
.y19e{bottom:734.013333pt;}
.y221{bottom:734.333333pt;}
.yac{bottom:734.973333pt;}
.y114{bottom:735.453333pt;}
.y1e{bottom:738.813333pt;}
.y138{bottom:739.133333pt;}
.y203{bottom:739.293333pt;}
.yd3{bottom:740.266667pt;}
.y166{bottom:741.373333pt;}
.y8f{bottom:743.133333pt;}
.y4c{bottom:745.093333pt;}
.y1b5{bottom:745.693333pt;}
.y289{bottom:746.186667pt;}
.yf6{bottom:746.973333pt;}
.y23f{bottom:749.853333pt;}
.y6{bottom:751.293333pt;}
.y113{bottom:756.093333pt;}
.y1d{bottom:757.573333pt;}
.y137{bottom:757.853333pt;}
.y202{bottom:759.933333pt;}
.y165{bottom:760.093333pt;}
.y220{bottom:761.053333pt;}
.y288{bottom:761.573333pt;}
.y19d{bottom:763.333333pt;}
.y4b{bottom:763.813333pt;}
.yab{bottom:765.573333pt;}
.y8e{bottom:766.053333pt;}
.y23e{bottom:768.613333pt;}
.yd2{bottom:771.013333pt;}
.y1b4{bottom:774.693333pt;}
.y1c{bottom:776.293333pt;}
.y136{bottom:776.613333pt;}
.y111{bottom:776.773333pt;}
.yf5{bottom:776.933333pt;}
.y5{bottom:777.253333pt;}
.y25f{bottom:778.693333pt;}
.y164{bottom:778.853333pt;}
.y201{bottom:780.613333pt;}
.y4a{bottom:782.533333pt;}
.y23d{bottom:787.333333pt;}
.y21f{bottom:787.813333pt;}
.y8d{bottom:789.093333pt;}
.y1ef{bottom:789.893333pt;}
.y25e{bottom:791.653333pt;}
.y287{bottom:791.973333pt;}
.y19c{bottom:792.773333pt;}
.y1b{bottom:793.893333pt;}
.y135{bottom:795.333333pt;}
.yaa{bottom:796.293333pt;}
.y163{bottom:797.573333pt;}
.y49{bottom:801.253333pt;}
.yd1{bottom:801.573333pt;}
.y4{bottom:803.333333pt;}
.y1b3{bottom:803.493333pt;}
.y256{bottom:804.773333pt;}
.y23c{bottom:806.053333pt;}
.yf4{bottom:807.013333pt;}
.y286{bottom:807.333333pt;}
.y71{bottom:810.853333pt;}
.y110{bottom:813.093333pt;}
.y134{bottom:814.053333pt;}
.y21e{bottom:814.533333pt;}
.y162{bottom:816.293333pt;}
.y1d4{bottom:818.693333pt;}
.y48{bottom:819.973333pt;}
.y200{bottom:821.733333pt;}
.y1a{bottom:822.213333pt;}
.y285{bottom:822.533333pt;}
.y8c{bottom:822.693333pt;}
.y23b{bottom:824.773333pt;}
.ya9{bottom:827.013333pt;}
.y3{bottom:829.253333pt;}
.yd0{bottom:832.293333pt;}
.y133{bottom:832.773333pt;}
.y161{bottom:835.013333pt;}
.yf3{bottom:836.933333pt;}
.y284{bottom:837.893333pt;}
.y47{bottom:838.693333pt;}
.y19{bottom:840.293333pt;}
.y10f{bottom:841.253333pt;}
.y1ff{bottom:842.373333pt;}
.y70{bottom:842.693333pt;}
.y23a{bottom:843.493333pt;}
.y1b2{bottom:850.533333pt;}
.y19b{bottom:851.493333pt;}
.y283{bottom:853.093333pt;}
.y160{bottom:853.733333pt;}
.y8b{bottom:856.453333pt;}
.y2{bottom:857.573333pt;}
.y21d{bottom:859.973333pt;}
.y6f{bottom:861.573333pt;}
.y132{bottom:862.213333pt;}
.ycf{bottom:863.013333pt;}
.y1ee{bottom:865.893333pt;}
.yf2{bottom:866.853333pt;}
.y46{bottom:867.013333pt;}
.y18{bottom:867.173333pt;}
.y282{bottom:868.453333pt;}
.y10e{bottom:869.573333pt;}
.y15f{bottom:872.453333pt;}
.y21c{bottom:878.693333pt;}
.y6e{bottom:880.293333pt;}
.y131{bottom:880.933333pt;}
.y281{bottom:883.653333pt;}
.y10d{bottom:885.733333pt;}
.yf1{bottom:886.213333pt;}
.ya8{bottom:888.293333pt;}
.y8a{bottom:890.053333pt;}
.y15e{bottom:891.173333pt;}
.yce{bottom:893.573333pt;}
.y1d2{bottom:894.693333pt;}
.y255{bottom:895.813333pt;}
.y21b{bottom:897.413333pt;}
.y45{bottom:898.853333pt;}
.y6d{bottom:899.013333pt;}
.y130{bottom:899.653333pt;}
.y10c{bottom:902.053333pt;}
.y15d{bottom:909.893333pt;}
.y89{bottom:913.093333pt;}
.y280{bottom:914.213333pt;}
.y253{bottom:914.853333pt;}
.yf0{bottom:916.293333pt;}
.y198{bottom:917.253333pt;}
.y44{bottom:917.733333pt;}
.y10b{bottom:918.373333pt;}
.ya5{bottom:919.013333pt;}
.y17{bottom:920.133333pt;}
.y1{bottom:922.373333pt;}
.y21a{bottom:923.013333pt;}
.ycd{bottom:924.293333pt;}
.y15c{bottom:928.613333pt;}
.y27f{bottom:929.413333pt;}
.y1ed{bottom:931.173333pt;}
.y88{bottom:936.133333pt;}
.y6c{bottom:936.453333pt;}
.y10a{bottom:943.973333pt;}
.y27e{bottom:944.773333pt;}
.y43{bottom:945.893333pt;}
.yef{bottom:946.213333pt;}
.y15b{bottom:947.333333pt;}
.ya2{bottom:949.573333pt;}
.ycc{bottom:955.013333pt;}
.y87{bottom:959.013333pt;}
.y6b{bottom:964.613333pt;}
.y16{bottom:974.853333pt;}
.y42{bottom:977.893333pt;}
.ycb{bottom:985.573333pt;}
.ya0{bottom:986.213333pt;}
.y86{bottom:992.773333pt;}
.y6a{bottom:996.640000pt;}
.y41{bottom:996.800000pt;}
.y40{bottom:1015.520000pt;}
.y85{bottom:1016.000000pt;}
.yca{bottom:1016.320000pt;}
.y9f{bottom:1033.280000pt;}
.h42{height:12.946667pt;}
.h41{height:13.106667pt;}
.h46{height:13.120000pt;}
.h47{height:15.186667pt;}
.h4a{height:15.200000pt;}
.h4b{height:15.226667pt;}
.h4c{height:15.346667pt;}
.h49{height:15.360000pt;}
.h4d{height:15.378667pt;}
.h25{height:16.146667pt;}
.h24{height:16.306667pt;}
.h45{height:18.560000pt;}
.h43{height:18.580000pt;}
.h44{height:18.706667pt;}
.h20{height:19.986667pt;}
.h22{height:20.000000pt;}
.h21{height:20.020000pt;}
.h23{height:20.026667pt;}
.h30{height:28.826667pt;}
.h18{height:30.546667pt;}
.h1e{height:30.552000pt;}
.h1b{height:30.560000pt;}
.h1f{height:30.578667pt;}
.h19{height:30.580000pt;}
.h17{height:30.706667pt;}
.h1d{height:30.712000pt;}
.h1a{height:30.720000pt;}
.h1c{height:30.738667pt;}
.h15{height:30.746667pt;}
.h40{height:30.778125pt;}
.h3e{height:31.134062pt;}
.h14{height:33.586667pt;}
.h12{height:33.600000pt;}
.h11{height:33.760000pt;}
.h13{height:33.786667pt;}
.hd{height:38.128125pt;}
.hb{height:38.569063pt;}
.h10{height:38.724688pt;}
.h37{height:40.425000pt;}
.h38{height:40.892500pt;}
.h4{height:42.262500pt;}
.h3{height:42.751250pt;}
.h33{height:42.923750pt;}
.he{height:43.653125pt;}
.h3a{height:45.937500pt;}
.h2f{height:47.040000pt;}
.h39{height:47.986667pt;}
.h3b{height:48.032000pt;}
.h8{height:48.937500pt;}
.h3c{height:49.266667pt;}
.h3d{height:49.298667pt;}
.h35{height:54.368437pt;}
.h48{height:54.598989pt;}
.hc{height:55.402500pt;}
.h36{height:59.986667pt;}
.h16{height:61.410000pt;}
.h2{height:65.086875pt;}
.h26{height:65.266667pt;}
.h2a{height:65.306667pt;}
.h4e{height:65.781915pt;}
.h5{height:66.625000pt;}
.ha{height:67.078125pt;}
.h9{height:67.125000pt;}
.h2e{height:75.858667pt;}
.h2b{height:75.986667pt;}
.h27{height:76.018667pt;}
.h2d{height:76.026667pt;}
.h29{height:76.032000pt;}
.h3f{height:91.026667pt;}
.h28{height:94.066667pt;}
.h2c{height:94.098667pt;}
.h31{height:94.100000pt;}
.h34{height:94.106667pt;}
.h32{height:94.240000pt;}
.hf{height:111.472500pt;}
.h1{height:114.024375pt;}
.h0{height:1056.000000pt;}
.h6{height:1122.560000pt;}
.h7{height:1122.666667pt;}
.w12{width:25.112000pt;}
.w3{width:28.792000pt;}
.w7{width:30.226667pt;}
.w8{width:30.258667pt;}
.w5{width:38.752000pt;}
.w10{width:64.018667pt;}
.we{width:65.152000pt;}
.w11{width:69.266667pt;}
.w18{width:70.546667pt;}
.w14{width:71.200000pt;}
.w17{width:71.378667pt;}
.w15{width:71.392000pt;}
.w16{width:77.106667pt;}
.wd{width:77.600000pt;}
.wf{width:95.986667pt;}
.w19{width:97.752000pt;}
.w4{width:156.018667pt;}
.w1b{width:173.946667pt;}
.w1c{width:183.533333pt;}
.w13{width:228.818667pt;}
.wa{width:235.693333pt;}
.w1a{width:241.133333pt;}
.wc{width:252.018667pt;}
.w1d{width:338.898667pt;}
.wb{width:382.306667pt;}
.w6{width:452.858667pt;}
.w9{width:606.000000pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.xc{left:-4.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:1.600000pt;}
.x2b{left:2.880000pt;}
.x9{left:4.792000pt;}
.x27{left:5.920000pt;}
.x18{left:6.872000pt;}
.x29{left:8.160000pt;}
.x28{left:9.280000pt;}
.x14{left:11.026667pt;}
.x2a{left:13.920000pt;}
.xf{left:15.026667pt;}
.x24{left:24.480000pt;}
.x26{left:26.560000pt;}
.x23{left:30.880000pt;}
.x33{left:32.000000pt;}
.x34{left:34.866667pt;}
.x25{left:39.826667pt;}
.xb{left:75.520000pt;}
.x2{left:94.752000pt;}
.x1{left:96.032000pt;}
.x2e{left:98.120000pt;}
.x17{left:100.520000pt;}
.x3{left:109.472000pt;}
.xd{left:114.280000pt;}
.x1b{left:120.032000pt;}
.x4{left:124.032000pt;}
.x6{left:142.426667pt;}
.x1c{left:144.026667pt;}
.x36{left:168.026667pt;}
.x37{left:192.026667pt;}
.x38{left:193.800000pt;}
.x7{left:200.026667pt;}
.x19{left:333.026667pt;}
.x1e{left:348.066667pt;}
.x2f{left:352.866667pt;}
.x16{left:372.866667pt;}
.x35{left:392.546667pt;}
.x8{left:396.866667pt;}
.x2d{left:408.066667pt;}
.x1f{left:425.666667pt;}
.x39{left:434.946667pt;}
.x20{left:490.826667pt;}
.x30{left:497.386667pt;}
.xe{left:567.146667pt;}
.x31{left:575.306667pt;}
.x21{left:586.826667pt;}
.x10{left:597.386667pt;}
.x3a{left:608.906667pt;}
.x11{left:627.653333pt;}
.x32{left:647.653333pt;}
.x22{left:650.853333pt;}
.x12{left:657.893333pt;}
.x13{left:688.133333pt;}
.x5{left:691.973333pt;}
.x1a{left:705.253333pt;}
.xa{left:710.853333pt;}
.x15{left:712.773333pt;}
.x1d{left:720.133333pt;}
}




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