
    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_74b0c6b7c348ca9f219d6fac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.071777;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_11b15d1ad30fbd1bfb30dab6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_2b461898c816fdc408c2fdc0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f3bf878bd5221ab43928dc5e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_ca000d0b7318c1b327d32acb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957031;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_5a29a77da34d6724fde0fdab.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_18441ea44e25481175a01a24.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ef887b805c1b361a5fe74362.woff')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_e8a4ebab1b80f3046c056085.woff')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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_e50227a54a8867460f91c500.woff')format("woff");}.ffc{font-family:ffc;line-height:0.957031;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f80bab2023285485f46527a5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-1.896000px;}
.lsb{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.134000px;}
.lsf{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.457800px;}
.ls2{letter-spacing:-0.351600px;}
.ls17{letter-spacing:-0.305400px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.305280px;}
.ls8{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.345600px;}
.ls10{letter-spacing:0.457800px;}
.ls0{letter-spacing:0.535680px;}
.ls4{letter-spacing:0.708000px;}
.lsa{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.590000px;}
.ls6{letter-spacing:3.600000px;}
.ls16{letter-spacing:15.120000px;}
.ls15{letter-spacing:18.000000px;}
.ls9{letter-spacing:26.225280px;}
.ls5{letter-spacing:33.276000px;}
.lse{letter-spacing:67.985280px;}
.ls14{letter-spacing:67.997280px;}
.lsd{letter-spacing:68.129280px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.017800px;}
.ws7{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.473600px;}
.wsc{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.122000px;}
.wsb{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.664000px;}
.ws2{word-spacing:-13.074720px;}
.ws6{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-9.774720px;}
._1d{margin-left:-5.641920px;}
._14{margin-left:-4.401600px;}
._2{margin-left:-2.752320px;}
._1{margin-left:-1.584000px;}
._0{width:1.152000px;}
._4{width:2.289600px;}
._9{width:3.621120px;}
._c{width:5.414880px;}
._15{width:7.322880px;}
._16{width:8.761440px;}
._a{width:10.068480px;}
._b{width:11.278560px;}
._d{width:12.381120px;}
._f{width:14.064000px;}
._e{width:15.494400px;}
._13{width:18.351360px;}
._18{width:20.335680px;}
._17{width:21.720960px;}
._19{width:22.738560px;}
._8{width:24.569280px;}
._1b{width:25.610880px;}
._7{width:26.628480px;}
._10{width:27.682560px;}
._11{width:28.880640px;}
._12{width:30.029760px;}
._1a{width:31.150560px;}
._1e{width:32.964480px;}
._1f{width:34.061760px;}
._21{width:36.227520px;}
._20{width:37.287360px;}
._27{width:38.301120px;}
._26{width:39.539520px;}
._25{width:41.643840px;}
._23{width:43.122240px;}
._24{width:44.314560px;}
._22{width:53.985600px;}
._28{width:69.883200px;}
._6{width:395.333280px;}
._3{width:588.689760px;}
._5{width:2209.109280px;}
.fc7{color:rgb(0,112,192);}
.fc6{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:119.520000px;}
.y8{bottom:-4.680000px;}
.y2b{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.880000px;}
.y30{bottom:3.960000px;}
.y151{bottom:6.120000px;}
.y14c{bottom:6.480000px;}
.y140{bottom:15.480000px;}
.y14b{bottom:28.080000px;}
.y13f{bottom:37.080000px;}
.y2f{bottom:38.880000px;}
.y14a{bottom:50.034000px;}
.y150{bottom:50.085000px;}
.yb{bottom:56.880000px;}
.y14f{bottom:71.685000px;}
.y149{bottom:71.994000px;}
.y2e{bottom:73.440000px;}
.y9{bottom:84.240000px;}
.y148{bottom:93.639000px;}
.y14e{bottom:93.645000px;}
.y2d{bottom:93.996000px;}
.y7{bottom:110.556000px;}
.y12f{bottom:114.156000px;}
.ycb{bottom:114.516000px;}
.y213{bottom:115.236000px;}
.y147{bottom:115.599000px;}
.y141{bottom:117.036000px;}
.yd9{bottom:119.196000px;}
.y174{bottom:121.716000px;}
.y81{bottom:122.436000px;}
.y121{bottom:123.156000px;}
.y206{bottom:124.236000px;}
.y1b5{bottom:124.956000px;}
.y58{bottom:127.116000px;}
.yf4{bottom:128.196000px;}
.yeb{bottom:132.156000px;}
.ya6{bottom:133.956000px;}
.y12e{bottom:135.756000px;}
.yca{bottom:136.116000px;}
.y212{bottom:136.836000px;}
.y146{bottom:137.199000px;}
.yff{bottom:137.916000px;}
.y1cd{bottom:140.076000px;}
.yd8{bottom:141.156000px;}
.y28{bottom:142.596000px;}
.y173{bottom:143.316000px;}
.y80{bottom:144.396000px;}
.y120{bottom:144.756000px;}
.y205{bottom:145.836000px;}
.y1b4{bottom:146.916000px;}
.y19e{bottom:148.716000px;}
.yf3{bottom:150.150000px;}
.yea{bottom:153.750000px;}
.y57{bottom:156.630000px;}
.y12d{bottom:157.710000px;}
.yc9{bottom:158.070000px;}
.y145{bottom:159.159000px;}
.yfe{bottom:159.870000px;}
.y1cc{bottom:162.030000px;}
.yd7{bottom:162.750000px;}
.y1e8{bottom:163.830000px;}
.ya5{bottom:164.910000px;}
.y172{bottom:165.270000px;}
.y11f{bottom:166.710000px;}
.y211{bottom:167.790000px;}
.y1b3{bottom:168.510000px;}
.y27{bottom:170.310000px;}
.yf2{bottom:171.750000px;}
.y7f{bottom:174.990000px;}
.ye9{bottom:175.710000px;}
.y204{bottom:176.790000px;}
.y12c{bottom:179.670000px;}
.y144{bottom:181.119000px;}
.yfd{bottom:181.470000px;}
.y1cb{bottom:183.990000px;}
.yd6{bottom:184.710000px;}
.y1e7{bottom:185.790000px;}
.y56{bottom:186.150000px;}
.ya4{bottom:186.510000px;}
.y19b{bottom:187.230000px;}
.y11e{bottom:188.670000px;}
.yc8{bottom:189.030000px;}
.y220{bottom:189.750000px;}
.yf1{bottom:193.710000px;}
.y171{bottom:195.870000px;}
.y7e{bottom:196.950000px;}
.ye8{bottom:197.670000px;}
.y26{bottom:198.390000px;}
.y203{bottom:198.750000px;}
.y1b2{bottom:199.470000px;}
.y12b{bottom:201.270000px;}
.y143{bottom:202.719000px;}
.yfc{bottom:203.430000px;}
.y179{bottom:206.715000px;}
.ya3{bottom:208.515000px;}
.y19a{bottom:208.875000px;}
.y11d{bottom:210.315000px;}
.yc7{bottom:210.675000px;}
.y1ca{bottom:214.635000px;}
.y55{bottom:215.355000px;}
.yd5{bottom:215.715000px;}
.y1e6{bottom:216.795000px;}
.y170{bottom:217.875000px;}
.y7d{bottom:218.595000px;}
.ye7{bottom:219.315000px;}
.y210{bottom:220.395000px;}
.y1b1{bottom:221.115000px;}
.y12a{bottom:223.275000px;}
.y142{bottom:224.709000px;}
.yfb{bottom:225.075000px;}
.y25{bottom:226.515000px;}
.y178{bottom:228.315000px;}
.y202{bottom:229.395000px;}
.ya2{bottom:230.115000px;}
.y199{bottom:230.835000px;}
.y11c{bottom:232.275000px;}
.yc6{bottom:232.635000px;}
.y1c9{bottom:236.595000px;}
.yb5{bottom:237.315000px;}
.y1e5{bottom:238.395000px;}
.y16f{bottom:239.835000px;}
.y7c{bottom:240.555000px;}
.ye6{bottom:241.275000px;}
.y21f{bottom:242.355000px;}
.y1b0{bottom:243.075000px;}
.y54{bottom:244.875000px;}
.yfa{bottom:247.035000px;}
.y177{bottom:250.275000px;}
.y201{bottom:251.355000px;}
.ya1{bottom:252.075000px;}
.y198{bottom:252.435000px;}
.y11b{bottom:253.875000px;}
.y24{bottom:254.235000px;}
.yb4{bottom:259.275000px;}
.y16e{bottom:261.435000px;}
.y7b{bottom:262.515000px;}
.ye5{bottom:262.875000px;}
.y1af{bottom:265.035000px;}
.y129{bottom:266.835000px;}
.y1c8{bottom:267.195000px;}
.yf9{bottom:268.995000px;}
.y1e4{bottom:269.355000px;}
.y176{bottom:271.875000px;}
.y200{bottom:273.315000px;}
.ya0{bottom:274.035000px;}
.y197{bottom:274.395000px;}
.y11a{bottom:275.835000px;}
.yc5{bottom:276.195000px;}
.yb3{bottom:280.875000px;}
.y23{bottom:282.315000px;}
.y16d{bottom:283.395000px;}
.y7a{bottom:284.115000px;}
.y53{bottom:284.835000px;}
.y1ae{bottom:286.635000px;}
.y1c7{bottom:289.155000px;}
.yf8{bottom:290.595000px;}
.y1e3{bottom:291.315000px;}
.y175{bottom:293.835000px;}
.y21e{bottom:294.915000px;}
.y9f{bottom:295.635000px;}
.y196{bottom:296.355000px;}
.y119{bottom:297.795000px;}
.yc4{bottom:298.155000px;}
.yb2{bottom:302.835000px;}
.y1ff{bottom:303.915000px;}
.y16c{bottom:305.355000px;}
.y79{bottom:306.075000px;}
.ye4{bottom:306.795000px;}
.y1ad{bottom:308.595000px;}
.y22{bottom:310.395000px;}
.y124{bottom:311.835000px;}
.yf7{bottom:312.555000px;}
.y1e2{bottom:312.915000px;}
.y182{bottom:315.795000px;}
.y21d{bottom:316.875000px;}
.y9e{bottom:317.595000px;}
.y195{bottom:317.955000px;}
.y118{bottom:319.395000px;}
.yc3{bottom:319.755000px;}
.y1c6{bottom:320.145000px;}
.y52{bottom:322.305000px;}
.yb1{bottom:324.825000px;}
.y1fe{bottom:325.905000px;}
.y16b{bottom:326.985000px;}
.y78{bottom:328.065000px;}
.ye3{bottom:328.425000px;}
.y1ac{bottom:330.225000px;}
.y123{bottom:333.825000px;}
.y181{bottom:337.425000px;}
.y21{bottom:338.145000px;}
.y194{bottom:339.945000px;}
.y117{bottom:341.385000px;}
.yc2{bottom:341.745000px;}
.yf6{bottom:343.545000px;}
.y1e1{bottom:343.905000px;}
.yb0{bottom:346.425000px;}
.y1fd{bottom:347.505000px;}
.y9d{bottom:348.945000px;}
.y77{bottom:349.665000px;}
.y51{bottom:350.025000px;}
.ye2{bottom:350.385000px;}
.y122{bottom:355.425000px;}
.y20f{bottom:356.505000px;}
.y13e{bottom:357.945000px;}
.y187{bottom:359.385000px;}
.y1ab{bottom:361.185000px;}
.y193{bottom:361.905000px;}
.y116{bottom:363.345000px;}
.y1e0{bottom:365.505000px;}
.y20{bottom:366.225000px;}
.yaf{bottom:368.385000px;}
.y50{bottom:369.105000px;}
.y21c{bottom:369.465000px;}
.y16a{bottom:370.545000px;}
.yf5{bottom:370.905000px;}
.y76{bottom:371.625000px;}
.yc1{bottom:372.345000px;}
.y1c5{bottom:372.705000px;}
.yf0{bottom:377.385000px;}
.y1fc{bottom:378.465000px;}
.y186{bottom:381.345000px;}
.y1aa{bottom:383.145000px;}
.y115{bottom:384.945000px;}
.y20e{bottom:387.465000px;}
.y4f{bottom:388.185000px;}
.y9c{bottom:390.345000px;}
.y169{bottom:392.505000px;}
.y75{bottom:393.225000px;}
.ye1{bottom:393.945000px;}
.y1f{bottom:394.305000px;}
.y1df{bottom:396.465000px;}
.yef{bottom:399.345000px;}
.y1fb{bottom:400.425000px;}
.y185{bottom:402.945000px;}
.y1a9{bottom:404.745000px;}
.y114{bottom:406.905000px;}
.y4e{bottom:407.265000px;}
.y9b{bottom:411.945000px;}
.y168{bottom:414.465000px;}
.y74{bottom:415.185000px;}
.ye0{bottom:415.905000px;}
.yc0{bottom:416.265000px;}
.y1de{bottom:418.425000px;}
.yee{bottom:420.945000px;}
.y1e{bottom:422.385000px;}
.y184{bottom:424.905000px;}
.y1c4{bottom:425.265000px;}
.y4d{bottom:425.985000px;}
.y13d{bottom:426.705000px;}
.y113{bottom:428.505000px;}
.y1fa{bottom:431.025000px;}
.y9a{bottom:433.905000px;}
.y73{bottom:437.190000px;}
.y128{bottom:437.550000px;}
.ybf{bottom:437.910000px;}
.y20d{bottom:440.070000px;}
.yed{bottom:442.950000px;}
.y4c{bottom:445.110000px;}
.ydf{bottom:446.550000px;}
.y1c3{bottom:447.270000px;}
.y1a8{bottom:448.350000px;}
.y1dd{bottom:449.070000px;}
.y1d{bottom:450.150000px;}
.y19d{bottom:450.510000px;}
.y21b{bottom:453.030000px;}
.y99{bottom:455.550000px;}
.y13c{bottom:457.350000px;}
.y72{bottom:458.790000px;}
.y112{bottom:459.510000px;}
.ybe{bottom:459.870000px;}
.y1f9{bottom:462.030000px;}
.y4b{bottom:464.190000px;}
.yec{bottom:464.550000px;}
.y167{bottom:467.070000px;}
.yde{bottom:468.510000px;}
.y1c2{bottom:468.870000px;}
.y1c{bottom:469.230000px;}
.y1a7{bottom:470.310000px;}
.y1dc{bottom:471.030000px;}
.y19c{bottom:472.470000px;}
.y21a{bottom:474.630000px;}
.y98{bottom:477.510000px;}
.y13b{bottom:479.310000px;}
.y71{bottom:480.750000px;}
.y111{bottom:481.470000px;}
.ybd{bottom:481.830000px;}
.y4a{bottom:483.270000px;}
.y1f8{bottom:483.630000px;}
.yae{bottom:486.510000px;}
.y1b{bottom:488.310000px;}
.y166{bottom:488.670000px;}
.ydd{bottom:490.470000px;}
.y1a6{bottom:492.270000px;}
.y20c{bottom:492.630000px;}
.y97{bottom:499.470000px;}
.y1c1{bottom:499.830000px;}
.y13a{bottom:501.270000px;}
.y1db{bottom:501.630000px;}
.y49{bottom:501.990000px;}
.y110{bottom:503.070000px;}
.ybc{bottom:503.430000px;}
.y219{bottom:505.590000px;}
.y1a{bottom:507.390000px;}
.yad{bottom:508.470000px;}
.y165{bottom:510.630000px;}
.y70{bottom:511.350000px;}
.ydc{bottom:512.070000px;}
.y1a5{bottom:513.870000px;}
.y1f7{bottom:514.590000px;}
.y180{bottom:517.470000px;}
.y48{bottom:521.070000px;}
.y1c0{bottom:521.430000px;}
.y139{bottom:522.870000px;}
.y1da{bottom:523.590000px;}
.y10f{bottom:525.030000px;}
.ybb{bottom:525.390000px;}
.y19{bottom:526.110000px;}
.y218{bottom:527.550000px;}
.yac{bottom:530.070000px;}
.y164{bottom:532.590000px;}
.y6f{bottom:533.310000px;}
.ydb{bottom:534.030000px;}
.y1a4{bottom:535.830000px;}
.y1f6{bottom:536.550000px;}
.y17f{bottom:539.070000px;}
.y47{bottom:540.150000px;}
.y96{bottom:543.030000px;}
.y1bf{bottom:543.390000px;}
.y138{bottom:544.830000px;}
.y18{bottom:545.190000px;}
.y1d9{bottom:545.550000px;}
.y10e{bottom:546.630000px;}
.yba{bottom:546.990000px;}
.yab{bottom:552.030000px;}
.y6e{bottom:555.300000px;}
.yda{bottom:555.660000px;}
.y1a3{bottom:557.460000px;}
.y217{bottom:558.180000px;}
.y46{bottom:558.900000px;}
.y17e{bottom:561.060000px;}
.y163{bottom:563.220000px;}
.y17{bottom:564.300000px;}
.y95{bottom:564.660000px;}
.y137{bottom:566.460000px;}
.y1f5{bottom:567.180000px;}
.yb9{bottom:568.980000px;}
.yaa{bottom:573.660000px;}
.y1be{bottom:574.380000px;}
.y1d8{bottom:576.180000px;}
.y6d{bottom:576.900000px;}
.y10d{bottom:577.620000px;}
.y45{bottom:577.980000px;}
.y1a2{bottom:579.420000px;}
.y216{bottom:580.140000px;}
.y17d{bottom:582.660000px;}
.y16{bottom:583.020000px;}
.y94{bottom:586.620000px;}
.y136{bottom:588.420000px;}
.y1f4{bottom:589.140000px;}
.yb8{bottom:590.940000px;}
.y162{bottom:594.180000px;}
.ya9{bottom:595.620000px;}
.y1d7{bottom:598.140000px;}
.y6c{bottom:598.860000px;}
.y183{bottom:599.580000px;}
.y1a1{bottom:601.380000px;}
.y15{bottom:602.100000px;}
.y17c{bottom:604.620000px;}
.y1bd{bottom:604.980000px;}
.yd4{bottom:608.580000px;}
.y135{bottom:610.380000px;}
.y1f3{bottom:610.740000px;}
.y161{bottom:615.780000px;}
.y44{bottom:617.580000px;}
.y6b{bottom:620.460000px;}
.y14{bottom:621.180000px;}
.yb7{bottom:621.540000px;}
.y1a0{bottom:622.980000px;}
.y17b{bottom:626.580000px;}
.y1bc{bottom:626.940000px;}
.y1d6{bottom:628.740000px;}
.y10c{bottom:630.180000px;}
.y134{bottom:631.980000px;}
.y215{bottom:632.700000px;}
.y160{bottom:637.740000px;}
.y93{bottom:639.180000px;}
.y1f2{bottom:641.700000px;}
.y6a{bottom:642.420000px;}
.y192{bottom:643.140000px;}
.y17a{bottom:648.180000px;}
.yb6{bottom:648.900000px;}
.y1d5{bottom:650.700000px;}
.y13{bottom:651.780000px;}
.y10b{bottom:652.140000px;}
.y133{bottom:653.940000px;}
.y19f{bottom:654.300000px;}
.y43{bottom:655.020000px;}
.y1bb{bottom:657.900000px;}
.y15f{bottom:659.700000px;}
.y92{bottom:661.140000px;}
.y1f1{bottom:663.660000px;}
.y69{bottom:664.380000px;}
.y191{bottom:664.740000px;}
.y127{bottom:670.170000px;}
.y20b{bottom:672.690000px;}
.y10a{bottom:673.770000px;}
.y132{bottom:675.930000px;}
.y1ba{bottom:679.530000px;}
.y15e{bottom:681.330000px;}
.y1d4{bottom:681.690000px;}
.y91{bottom:682.770000px;}
.y214{bottom:685.290000px;}
.y68{bottom:686.010000px;}
.y12{bottom:686.370000px;}
.y190{bottom:686.730000px;}
.y126{bottom:691.770000px;}
.y1f0{bottom:694.290000px;}
.y42{bottom:694.650000px;}
.y109{bottom:695.730000px;}
.y131{bottom:697.530000px;}
.y1b9{bottom:701.490000px;}
.y15d{bottom:703.290000px;}
.y90{bottom:704.730000px;}
.y67{bottom:707.970000px;}
.y18f{bottom:708.690000px;}
.y125{bottom:713.730000px;}
.y1ef{bottom:716.250000px;}
.y108{bottom:717.690000px;}
.y11{bottom:720.930000px;}
.y15c{bottom:724.890000px;}
.y20a{bottom:725.250000px;}
.ya8{bottom:726.690000px;}
.y130{bottom:728.850000px;}
.y66{bottom:729.570000px;}
.y1b8{bottom:732.090000px;}
.y41{bottom:732.450000px;}
.y1d3{bottom:734.250000px;}
.y8f{bottom:735.690000px;}
.y1ee{bottom:737.850000px;}
.y107{bottom:739.290000px;}
.y15b{bottom:746.850000px;}
.ya7{bottom:748.290000px;}
.y65{bottom:751.530000px;}
.y1b7{bottom:754.050000px;}
.y1d2{bottom:755.850000px;}
.y8e{bottom:757.290000px;}
.y40{bottom:760.170000px;}
.y106{bottom:761.250000px;}
.y10{bottom:764.490000px;}
.y15a{bottom:768.810000px;}
.yd3{bottom:770.250000px;}
.y64{bottom:773.490000px;}
.y209{bottom:777.810000px;}
.y3f{bottom:779.250000px;}
.y105{bottom:782.850000px;}
.y1b6{bottom:785.415000px;}
.y1d1{bottom:786.855000px;}
.y159{bottom:790.455000px;}
.yd2{bottom:791.895000px;}
.y63{bottom:795.135000px;}
.y3e{bottom:798.375000px;}
.y1ed{bottom:799.815000px;}
.y8d{bottom:800.895000px;}
.y104{bottom:804.855000px;}
.yf{bottom:808.095000px;}
.y1d0{bottom:808.815000px;}
.y158{bottom:812.415000px;}
.yd1{bottom:813.855000px;}
.y62{bottom:817.095000px;}
.y3d{bottom:817.455000px;}
.y1ec{bottom:821.415000px;}
.y8c{bottom:822.855000px;}
.y103{bottom:826.815000px;}
.y208{bottom:830.415000px;}
.y157{bottom:834.375000px;}
.yd0{bottom:835.815000px;}
.y3c{bottom:836.175000px;}
.y61{bottom:839.055000px;}
.y1cf{bottom:839.415000px;}
.y8b{bottom:844.815000px;}
.y18e{bottom:848.415000px;}
.ye{bottom:851.655000px;}
.y1eb{bottom:852.375000px;}
.y3b{bottom:855.255000px;}
.y156{bottom:855.975000px;}
.ycf{bottom:857.415000px;}
.y60{bottom:860.655000px;}
.y1ce{bottom:861.375000px;}
.y8a{bottom:866.415000px;}
.y18d{bottom:870.375000px;}
.y3a{bottom:874.335000px;}
.y155{bottom:877.935000px;}
.yce{bottom:879.375000px;}
.y5f{bottom:882.615000px;}
.y207{bottom:883.335000px;}
.yd{bottom:886.215000px;}
.y89{bottom:888.375000px;}
.y18c{bottom:892.335000px;}
.y39{bottom:893.055000px;}
.y154{bottom:899.535000px;}
.ycd{bottom:901.365000px;}
.y5e{bottom:904.245000px;}
.y1ea{bottom:904.965000px;}
.y88{bottom:910.365000px;}
.y38{bottom:912.165000px;}
.y18b{bottom:913.965000px;}
.yc{bottom:920.445000px;}
.y153{bottom:921.525000px;}
.ycc{bottom:922.965000px;}
.y5d{bottom:926.205000px;}
.y1e9{bottom:926.925000px;}
.y37{bottom:931.245000px;}
.y87{bottom:931.965000px;}
.y18a{bottom:935.925000px;}
.y102{bottom:944.925000px;}
.y5c{bottom:948.165000px;}
.y36{bottom:950.325000px;}
.y152{bottom:952.485000px;}
.y86{bottom:953.925000px;}
.y189{bottom:957.525000px;}
.y6{bottom:966.525000px;}
.y14d{bottom:968.685000px;}
.y35{bottom:969.045000px;}
.y5b{bottom:969.765000px;}
.y85{bottom:975.525000px;}
.y188{bottom:979.485000px;}
.y34{bottom:988.125000px;}
.y101{bottom:988.485000px;}
.y5a{bottom:991.725000px;}
.y5{bottom:995.685000px;}
.y84{bottom:997.485000px;}
.y33{bottom:1007.205000px;}
.y100{bottom:1010.445000px;}
.y83{bottom:1019.490000px;}
.y59{bottom:1023.090000px;}
.y32{bottom:1034.970000px;}
.y82{bottom:1041.090000px;}
.y4{bottom:1054.410000px;}
.y31{bottom:1063.050000px;}
.y3{bottom:1072.050000px;}
.y2c{bottom:1082.850000px;}
.y2{bottom:1093.650000px;}
.y2a{bottom:1098.690000px;}
.y1{bottom:1115.970000px;}
.y29{bottom:1119.210000px;}
.h5{height:7.920000px;}
.hf{height:8.639850px;}
.hd{height:8.640000px;}
.h7{height:15.516000px;}
.h10{height:20.520000px;}
.h3{height:41.547656px;}
.h6{height:48.013594px;}
.ha{height:49.097812px;}
.h14{height:52.560000px;}
.h2{height:52.686563px;}
.h11{height:53.367188px;}
.he{height:54.426094px;}
.hb{height:58.121719px;}
.h13{height:58.283437px;}
.h1{height:59.871094px;}
.h8{height:63.175781px;}
.h12{height:64.001953px;}
.h4{height:65.884219px;}
.hc{height:67.824844px;}
.h9{height:88.589531px;}
.h16{height:109.116000px;}
.h15{height:240.195000px;}
.h0{height:1188.000000px;}
.w6{width:36.036000px;}
.w5{width:118.836000px;}
.w3{width:320.910000px;}
.w7{width:323.025000px;}
.w8{width:323.070000px;}
.w2{width:327.345000px;}
.w4{width:583.455000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x1b{left:-19.116000px;}
.x0{left:0.000000px;}
.x1a{left:7.560000px;}
.x4{left:8.640000px;}
.x11{left:108.036000px;}
.x14{left:129.275986px;}
.x1{left:135.071986px;}
.x8{left:142.271986px;}
.x7{left:144.791986px;}
.x17{left:148.751986px;}
.xa{left:154.874986px;}
.x15{left:162.074986px;}
.x10{left:207.434986px;}
.xe{left:208.874986px;}
.x19{left:220.064986px;}
.xd{left:224.744986px;}
.x2{left:257.144986px;}
.x6{left:285.225000px;}
.xf{left:305.744986px;}
.x9{left:316.949986px;}
.xb{left:381.389986px;}
.xc{left:410.219986px;}
.x3{left:459.179986px;}
.x5{left:462.420000px;}
.x16{left:522.209986px;}
.x12{left:691.485000px;}
.x13{left:747.285000px;}
.x18{left:778.649986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-1.685333pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.008000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.406933pt;}
.ls2{letter-spacing:-0.312533pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.271360pt;}
.ls8{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.307200pt;}
.ls10{letter-spacing:0.406933pt;}
.ls0{letter-spacing:0.476160pt;}
.ls4{letter-spacing:0.629333pt;}
.lsa{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.413333pt;}
.ls6{letter-spacing:3.200000pt;}
.ls16{letter-spacing:13.440000pt;}
.ls15{letter-spacing:16.000000pt;}
.ls9{letter-spacing:23.311360pt;}
.ls5{letter-spacing:29.578667pt;}
.lse{letter-spacing:60.431360pt;}
.ls14{letter-spacing:60.442027pt;}
.lsd{letter-spacing:60.559360pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.126933pt;}
.ws7{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.643200pt;}
.wsc{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.330667pt;}
.wsb{word-spacing:-14.313067pt;}
.ws8{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.034667pt;}
.ws2{word-spacing:-11.621973pt;}
.ws6{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-8.688640pt;}
._1d{margin-left:-5.015040pt;}
._14{margin-left:-3.912533pt;}
._2{margin-left:-2.446507pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.024000pt;}
._4{width:2.035200pt;}
._9{width:3.218773pt;}
._c{width:4.813227pt;}
._15{width:6.509227pt;}
._16{width:7.787947pt;}
._a{width:8.949760pt;}
._b{width:10.025387pt;}
._d{width:11.005440pt;}
._f{width:12.501333pt;}
._e{width:13.772800pt;}
._13{width:16.312320pt;}
._18{width:18.076160pt;}
._17{width:19.307520pt;}
._19{width:20.212053pt;}
._8{width:21.839360pt;}
._1b{width:22.765227pt;}
._7{width:23.669760pt;}
._10{width:24.606720pt;}
._11{width:25.671680pt;}
._12{width:26.693120pt;}
._1a{width:27.689387pt;}
._1e{width:29.301760pt;}
._1f{width:30.277120pt;}
._21{width:32.202240pt;}
._20{width:33.144320pt;}
._27{width:34.045440pt;}
._26{width:35.146240pt;}
._25{width:37.016747pt;}
._23{width:38.330880pt;}
._24{width:39.390720pt;}
._22{width:47.987200pt;}
._28{width:62.118400pt;}
._6{width:351.407360pt;}
._3{width:523.279787pt;}
._5{width:1963.652693pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:106.240000pt;}
.y8{bottom:-4.160000pt;}
.y2b{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.560000pt;}
.y30{bottom:3.520000pt;}
.y151{bottom:5.440000pt;}
.y14c{bottom:5.760000pt;}
.y140{bottom:13.760000pt;}
.y14b{bottom:24.960000pt;}
.y13f{bottom:32.960000pt;}
.y2f{bottom:34.560000pt;}
.y14a{bottom:44.474667pt;}
.y150{bottom:44.520000pt;}
.yb{bottom:50.560000pt;}
.y14f{bottom:63.720000pt;}
.y149{bottom:63.994667pt;}
.y2e{bottom:65.280000pt;}
.y9{bottom:74.880000pt;}
.y148{bottom:83.234667pt;}
.y14e{bottom:83.240000pt;}
.y2d{bottom:83.552000pt;}
.y7{bottom:98.272000pt;}
.y12f{bottom:101.472000pt;}
.ycb{bottom:101.792000pt;}
.y213{bottom:102.432000pt;}
.y147{bottom:102.754667pt;}
.y141{bottom:104.032000pt;}
.yd9{bottom:105.952000pt;}
.y174{bottom:108.192000pt;}
.y81{bottom:108.832000pt;}
.y121{bottom:109.472000pt;}
.y206{bottom:110.432000pt;}
.y1b5{bottom:111.072000pt;}
.y58{bottom:112.992000pt;}
.yf4{bottom:113.952000pt;}
.yeb{bottom:117.472000pt;}
.ya6{bottom:119.072000pt;}
.y12e{bottom:120.672000pt;}
.yca{bottom:120.992000pt;}
.y212{bottom:121.632000pt;}
.y146{bottom:121.954667pt;}
.yff{bottom:122.592000pt;}
.y1cd{bottom:124.512000pt;}
.yd8{bottom:125.472000pt;}
.y28{bottom:126.752000pt;}
.y173{bottom:127.392000pt;}
.y80{bottom:128.352000pt;}
.y120{bottom:128.672000pt;}
.y205{bottom:129.632000pt;}
.y1b4{bottom:130.592000pt;}
.y19e{bottom:132.192000pt;}
.yf3{bottom:133.466667pt;}
.yea{bottom:136.666667pt;}
.y57{bottom:139.226667pt;}
.y12d{bottom:140.186667pt;}
.yc9{bottom:140.506667pt;}
.y145{bottom:141.474667pt;}
.yfe{bottom:142.106667pt;}
.y1cc{bottom:144.026667pt;}
.yd7{bottom:144.666667pt;}
.y1e8{bottom:145.626667pt;}
.ya5{bottom:146.586667pt;}
.y172{bottom:146.906667pt;}
.y11f{bottom:148.186667pt;}
.y211{bottom:149.146667pt;}
.y1b3{bottom:149.786667pt;}
.y27{bottom:151.386667pt;}
.yf2{bottom:152.666667pt;}
.y7f{bottom:155.546667pt;}
.ye9{bottom:156.186667pt;}
.y204{bottom:157.146667pt;}
.y12c{bottom:159.706667pt;}
.y144{bottom:160.994667pt;}
.yfd{bottom:161.306667pt;}
.y1cb{bottom:163.546667pt;}
.yd6{bottom:164.186667pt;}
.y1e7{bottom:165.146667pt;}
.y56{bottom:165.466667pt;}
.ya4{bottom:165.786667pt;}
.y19b{bottom:166.426667pt;}
.y11e{bottom:167.706667pt;}
.yc8{bottom:168.026667pt;}
.y220{bottom:168.666667pt;}
.yf1{bottom:172.186667pt;}
.y171{bottom:174.106667pt;}
.y7e{bottom:175.066667pt;}
.ye8{bottom:175.706667pt;}
.y26{bottom:176.346667pt;}
.y203{bottom:176.666667pt;}
.y1b2{bottom:177.306667pt;}
.y12b{bottom:178.906667pt;}
.y143{bottom:180.194667pt;}
.yfc{bottom:180.826667pt;}
.y179{bottom:183.746667pt;}
.ya3{bottom:185.346667pt;}
.y19a{bottom:185.666667pt;}
.y11d{bottom:186.946667pt;}
.yc7{bottom:187.266667pt;}
.y1ca{bottom:190.786667pt;}
.y55{bottom:191.426667pt;}
.yd5{bottom:191.746667pt;}
.y1e6{bottom:192.706667pt;}
.y170{bottom:193.666667pt;}
.y7d{bottom:194.306667pt;}
.ye7{bottom:194.946667pt;}
.y210{bottom:195.906667pt;}
.y1b1{bottom:196.546667pt;}
.y12a{bottom:198.466667pt;}
.y142{bottom:199.741333pt;}
.yfb{bottom:200.066667pt;}
.y25{bottom:201.346667pt;}
.y178{bottom:202.946667pt;}
.y202{bottom:203.906667pt;}
.ya2{bottom:204.546667pt;}
.y199{bottom:205.186667pt;}
.y11c{bottom:206.466667pt;}
.yc6{bottom:206.786667pt;}
.y1c9{bottom:210.306667pt;}
.yb5{bottom:210.946667pt;}
.y1e5{bottom:211.906667pt;}
.y16f{bottom:213.186667pt;}
.y7c{bottom:213.826667pt;}
.ye6{bottom:214.466667pt;}
.y21f{bottom:215.426667pt;}
.y1b0{bottom:216.066667pt;}
.y54{bottom:217.666667pt;}
.yfa{bottom:219.586667pt;}
.y177{bottom:222.466667pt;}
.y201{bottom:223.426667pt;}
.ya1{bottom:224.066667pt;}
.y198{bottom:224.386667pt;}
.y11b{bottom:225.666667pt;}
.y24{bottom:225.986667pt;}
.yb4{bottom:230.466667pt;}
.y16e{bottom:232.386667pt;}
.y7b{bottom:233.346667pt;}
.ye5{bottom:233.666667pt;}
.y1af{bottom:235.586667pt;}
.y129{bottom:237.186667pt;}
.y1c8{bottom:237.506667pt;}
.yf9{bottom:239.106667pt;}
.y1e4{bottom:239.426667pt;}
.y176{bottom:241.666667pt;}
.y200{bottom:242.946667pt;}
.ya0{bottom:243.586667pt;}
.y197{bottom:243.906667pt;}
.y11a{bottom:245.186667pt;}
.yc5{bottom:245.506667pt;}
.yb3{bottom:249.666667pt;}
.y23{bottom:250.946667pt;}
.y16d{bottom:251.906667pt;}
.y7a{bottom:252.546667pt;}
.y53{bottom:253.186667pt;}
.y1ae{bottom:254.786667pt;}
.y1c7{bottom:257.026667pt;}
.yf8{bottom:258.306667pt;}
.y1e3{bottom:258.946667pt;}
.y175{bottom:261.186667pt;}
.y21e{bottom:262.146667pt;}
.y9f{bottom:262.786667pt;}
.y196{bottom:263.426667pt;}
.y119{bottom:264.706667pt;}
.yc4{bottom:265.026667pt;}
.yb2{bottom:269.186667pt;}
.y1ff{bottom:270.146667pt;}
.y16c{bottom:271.426667pt;}
.y79{bottom:272.066667pt;}
.ye4{bottom:272.706667pt;}
.y1ad{bottom:274.306667pt;}
.y22{bottom:275.906667pt;}
.y124{bottom:277.186667pt;}
.yf7{bottom:277.826667pt;}
.y1e2{bottom:278.146667pt;}
.y182{bottom:280.706667pt;}
.y21d{bottom:281.666667pt;}
.y9e{bottom:282.306667pt;}
.y195{bottom:282.626667pt;}
.y118{bottom:283.906667pt;}
.yc3{bottom:284.226667pt;}
.y1c6{bottom:284.573333pt;}
.y52{bottom:286.493333pt;}
.yb1{bottom:288.733333pt;}
.y1fe{bottom:289.693333pt;}
.y16b{bottom:290.653333pt;}
.y78{bottom:291.613333pt;}
.ye3{bottom:291.933333pt;}
.y1ac{bottom:293.533333pt;}
.y123{bottom:296.733333pt;}
.y181{bottom:299.933333pt;}
.y21{bottom:300.573333pt;}
.y194{bottom:302.173333pt;}
.y117{bottom:303.453333pt;}
.yc2{bottom:303.773333pt;}
.yf6{bottom:305.373333pt;}
.y1e1{bottom:305.693333pt;}
.yb0{bottom:307.933333pt;}
.y1fd{bottom:308.893333pt;}
.y9d{bottom:310.173333pt;}
.y77{bottom:310.813333pt;}
.y51{bottom:311.133333pt;}
.ye2{bottom:311.453333pt;}
.y122{bottom:315.933333pt;}
.y20f{bottom:316.893333pt;}
.y13e{bottom:318.173333pt;}
.y187{bottom:319.453333pt;}
.y1ab{bottom:321.053333pt;}
.y193{bottom:321.693333pt;}
.y116{bottom:322.973333pt;}
.y1e0{bottom:324.893333pt;}
.y20{bottom:325.533333pt;}
.yaf{bottom:327.453333pt;}
.y50{bottom:328.093333pt;}
.y21c{bottom:328.413333pt;}
.y16a{bottom:329.373333pt;}
.yf5{bottom:329.693333pt;}
.y76{bottom:330.333333pt;}
.yc1{bottom:330.973333pt;}
.y1c5{bottom:331.293333pt;}
.yf0{bottom:335.453333pt;}
.y1fc{bottom:336.413333pt;}
.y186{bottom:338.973333pt;}
.y1aa{bottom:340.573333pt;}
.y115{bottom:342.173333pt;}
.y20e{bottom:344.413333pt;}
.y4f{bottom:345.053333pt;}
.y9c{bottom:346.973333pt;}
.y169{bottom:348.893333pt;}
.y75{bottom:349.533333pt;}
.ye1{bottom:350.173333pt;}
.y1f{bottom:350.493333pt;}
.y1df{bottom:352.413333pt;}
.yef{bottom:354.973333pt;}
.y1fb{bottom:355.933333pt;}
.y185{bottom:358.173333pt;}
.y1a9{bottom:359.773333pt;}
.y114{bottom:361.693333pt;}
.y4e{bottom:362.013333pt;}
.y9b{bottom:366.173333pt;}
.y168{bottom:368.413333pt;}
.y74{bottom:369.053333pt;}
.ye0{bottom:369.693333pt;}
.yc0{bottom:370.013333pt;}
.y1de{bottom:371.933333pt;}
.yee{bottom:374.173333pt;}
.y1e{bottom:375.453333pt;}
.y184{bottom:377.693333pt;}
.y1c4{bottom:378.013333pt;}
.y4d{bottom:378.653333pt;}
.y13d{bottom:379.293333pt;}
.y113{bottom:380.893333pt;}
.y1fa{bottom:383.133333pt;}
.y9a{bottom:385.693333pt;}
.y73{bottom:388.613333pt;}
.y128{bottom:388.933333pt;}
.ybf{bottom:389.253333pt;}
.y20d{bottom:391.173333pt;}
.yed{bottom:393.733333pt;}
.y4c{bottom:395.653333pt;}
.ydf{bottom:396.933333pt;}
.y1c3{bottom:397.573333pt;}
.y1a8{bottom:398.533333pt;}
.y1dd{bottom:399.173333pt;}
.y1d{bottom:400.133333pt;}
.y19d{bottom:400.453333pt;}
.y21b{bottom:402.693333pt;}
.y99{bottom:404.933333pt;}
.y13c{bottom:406.533333pt;}
.y72{bottom:407.813333pt;}
.y112{bottom:408.453333pt;}
.ybe{bottom:408.773333pt;}
.y1f9{bottom:410.693333pt;}
.y4b{bottom:412.613333pt;}
.yec{bottom:412.933333pt;}
.y167{bottom:415.173333pt;}
.yde{bottom:416.453333pt;}
.y1c2{bottom:416.773333pt;}
.y1c{bottom:417.093333pt;}
.y1a7{bottom:418.053333pt;}
.y1dc{bottom:418.693333pt;}
.y19c{bottom:419.973333pt;}
.y21a{bottom:421.893333pt;}
.y98{bottom:424.453333pt;}
.y13b{bottom:426.053333pt;}
.y71{bottom:427.333333pt;}
.y111{bottom:427.973333pt;}
.ybd{bottom:428.293333pt;}
.y4a{bottom:429.573333pt;}
.y1f8{bottom:429.893333pt;}
.yae{bottom:432.453333pt;}
.y1b{bottom:434.053333pt;}
.y166{bottom:434.373333pt;}
.ydd{bottom:435.973333pt;}
.y1a6{bottom:437.573333pt;}
.y20c{bottom:437.893333pt;}
.y97{bottom:443.973333pt;}
.y1c1{bottom:444.293333pt;}
.y13a{bottom:445.573333pt;}
.y1db{bottom:445.893333pt;}
.y49{bottom:446.213333pt;}
.y110{bottom:447.173333pt;}
.ybc{bottom:447.493333pt;}
.y219{bottom:449.413333pt;}
.y1a{bottom:451.013333pt;}
.yad{bottom:451.973333pt;}
.y165{bottom:453.893333pt;}
.y70{bottom:454.533333pt;}
.ydc{bottom:455.173333pt;}
.y1a5{bottom:456.773333pt;}
.y1f7{bottom:457.413333pt;}
.y180{bottom:459.973333pt;}
.y48{bottom:463.173333pt;}
.y1c0{bottom:463.493333pt;}
.y139{bottom:464.773333pt;}
.y1da{bottom:465.413333pt;}
.y10f{bottom:466.693333pt;}
.ybb{bottom:467.013333pt;}
.y19{bottom:467.653333pt;}
.y218{bottom:468.933333pt;}
.yac{bottom:471.173333pt;}
.y164{bottom:473.413333pt;}
.y6f{bottom:474.053333pt;}
.ydb{bottom:474.693333pt;}
.y1a4{bottom:476.293333pt;}
.y1f6{bottom:476.933333pt;}
.y17f{bottom:479.173333pt;}
.y47{bottom:480.133333pt;}
.y96{bottom:482.693333pt;}
.y1bf{bottom:483.013333pt;}
.y138{bottom:484.293333pt;}
.y18{bottom:484.613333pt;}
.y1d9{bottom:484.933333pt;}
.y10e{bottom:485.893333pt;}
.yba{bottom:486.213333pt;}
.yab{bottom:490.693333pt;}
.y6e{bottom:493.600000pt;}
.yda{bottom:493.920000pt;}
.y1a3{bottom:495.520000pt;}
.y217{bottom:496.160000pt;}
.y46{bottom:496.800000pt;}
.y17e{bottom:498.720000pt;}
.y163{bottom:500.640000pt;}
.y17{bottom:501.600000pt;}
.y95{bottom:501.920000pt;}
.y137{bottom:503.520000pt;}
.y1f5{bottom:504.160000pt;}
.yb9{bottom:505.760000pt;}
.yaa{bottom:509.920000pt;}
.y1be{bottom:510.560000pt;}
.y1d8{bottom:512.160000pt;}
.y6d{bottom:512.800000pt;}
.y10d{bottom:513.440000pt;}
.y45{bottom:513.760000pt;}
.y1a2{bottom:515.040000pt;}
.y216{bottom:515.680000pt;}
.y17d{bottom:517.920000pt;}
.y16{bottom:518.240000pt;}
.y94{bottom:521.440000pt;}
.y136{bottom:523.040000pt;}
.y1f4{bottom:523.680000pt;}
.yb8{bottom:525.280000pt;}
.y162{bottom:528.160000pt;}
.ya9{bottom:529.440000pt;}
.y1d7{bottom:531.680000pt;}
.y6c{bottom:532.320000pt;}
.y183{bottom:532.960000pt;}
.y1a1{bottom:534.560000pt;}
.y15{bottom:535.200000pt;}
.y17c{bottom:537.440000pt;}
.y1bd{bottom:537.760000pt;}
.yd4{bottom:540.960000pt;}
.y135{bottom:542.560000pt;}
.y1f3{bottom:542.880000pt;}
.y161{bottom:547.360000pt;}
.y44{bottom:548.960000pt;}
.y6b{bottom:551.520000pt;}
.y14{bottom:552.160000pt;}
.yb7{bottom:552.480000pt;}
.y1a0{bottom:553.760000pt;}
.y17b{bottom:556.960000pt;}
.y1bc{bottom:557.280000pt;}
.y1d6{bottom:558.880000pt;}
.y10c{bottom:560.160000pt;}
.y134{bottom:561.760000pt;}
.y215{bottom:562.400000pt;}
.y160{bottom:566.880000pt;}
.y93{bottom:568.160000pt;}
.y1f2{bottom:570.400000pt;}
.y6a{bottom:571.040000pt;}
.y192{bottom:571.680000pt;}
.y17a{bottom:576.160000pt;}
.yb6{bottom:576.800000pt;}
.y1d5{bottom:578.400000pt;}
.y13{bottom:579.360000pt;}
.y10b{bottom:579.680000pt;}
.y133{bottom:581.280000pt;}
.y19f{bottom:581.600000pt;}
.y43{bottom:582.240000pt;}
.y1bb{bottom:584.800000pt;}
.y15f{bottom:586.400000pt;}
.y92{bottom:587.680000pt;}
.y1f1{bottom:589.920000pt;}
.y69{bottom:590.560000pt;}
.y191{bottom:590.880000pt;}
.y127{bottom:595.706667pt;}
.y20b{bottom:597.946667pt;}
.y10a{bottom:598.906667pt;}
.y132{bottom:600.826667pt;}
.y1ba{bottom:604.026667pt;}
.y15e{bottom:605.626667pt;}
.y1d4{bottom:605.946667pt;}
.y91{bottom:606.906667pt;}
.y214{bottom:609.146667pt;}
.y68{bottom:609.786667pt;}
.y12{bottom:610.106667pt;}
.y190{bottom:610.426667pt;}
.y126{bottom:614.906667pt;}
.y1f0{bottom:617.146667pt;}
.y42{bottom:617.466667pt;}
.y109{bottom:618.426667pt;}
.y131{bottom:620.026667pt;}
.y1b9{bottom:623.546667pt;}
.y15d{bottom:625.146667pt;}
.y90{bottom:626.426667pt;}
.y67{bottom:629.306667pt;}
.y18f{bottom:629.946667pt;}
.y125{bottom:634.426667pt;}
.y1ef{bottom:636.666667pt;}
.y108{bottom:637.946667pt;}
.y11{bottom:640.826667pt;}
.y15c{bottom:644.346667pt;}
.y20a{bottom:644.666667pt;}
.ya8{bottom:645.946667pt;}
.y130{bottom:647.866667pt;}
.y66{bottom:648.506667pt;}
.y1b8{bottom:650.746667pt;}
.y41{bottom:651.066667pt;}
.y1d3{bottom:652.666667pt;}
.y8f{bottom:653.946667pt;}
.y1ee{bottom:655.866667pt;}
.y107{bottom:657.146667pt;}
.y15b{bottom:663.866667pt;}
.ya7{bottom:665.146667pt;}
.y65{bottom:668.026667pt;}
.y1b7{bottom:670.266667pt;}
.y1d2{bottom:671.866667pt;}
.y8e{bottom:673.146667pt;}
.y40{bottom:675.706667pt;}
.y106{bottom:676.666667pt;}
.y10{bottom:679.546667pt;}
.y15a{bottom:683.386667pt;}
.yd3{bottom:684.666667pt;}
.y64{bottom:687.546667pt;}
.y209{bottom:691.386667pt;}
.y3f{bottom:692.666667pt;}
.y105{bottom:695.866667pt;}
.y1b6{bottom:698.146667pt;}
.y1d1{bottom:699.426667pt;}
.y159{bottom:702.626667pt;}
.yd2{bottom:703.906667pt;}
.y63{bottom:706.786667pt;}
.y3e{bottom:709.666667pt;}
.y1ed{bottom:710.946667pt;}
.y8d{bottom:711.906667pt;}
.y104{bottom:715.426667pt;}
.yf{bottom:718.306667pt;}
.y1d0{bottom:718.946667pt;}
.y158{bottom:722.146667pt;}
.yd1{bottom:723.426667pt;}
.y62{bottom:726.306667pt;}
.y3d{bottom:726.626667pt;}
.y1ec{bottom:730.146667pt;}
.y8c{bottom:731.426667pt;}
.y103{bottom:734.946667pt;}
.y208{bottom:738.146667pt;}
.y157{bottom:741.666667pt;}
.yd0{bottom:742.946667pt;}
.y3c{bottom:743.266667pt;}
.y61{bottom:745.826667pt;}
.y1cf{bottom:746.146667pt;}
.y8b{bottom:750.946667pt;}
.y18e{bottom:754.146667pt;}
.ye{bottom:757.026667pt;}
.y1eb{bottom:757.666667pt;}
.y3b{bottom:760.226667pt;}
.y156{bottom:760.866667pt;}
.ycf{bottom:762.146667pt;}
.y60{bottom:765.026667pt;}
.y1ce{bottom:765.666667pt;}
.y8a{bottom:770.146667pt;}
.y18d{bottom:773.666667pt;}
.y3a{bottom:777.186667pt;}
.y155{bottom:780.386667pt;}
.yce{bottom:781.666667pt;}
.y5f{bottom:784.546667pt;}
.y207{bottom:785.186667pt;}
.yd{bottom:787.746667pt;}
.y89{bottom:789.666667pt;}
.y18c{bottom:793.186667pt;}
.y39{bottom:793.826667pt;}
.y154{bottom:799.586667pt;}
.ycd{bottom:801.213333pt;}
.y5e{bottom:803.773333pt;}
.y1ea{bottom:804.413333pt;}
.y88{bottom:809.213333pt;}
.y38{bottom:810.813333pt;}
.y18b{bottom:812.413333pt;}
.yc{bottom:818.173333pt;}
.y153{bottom:819.133333pt;}
.ycc{bottom:820.413333pt;}
.y5d{bottom:823.293333pt;}
.y1e9{bottom:823.933333pt;}
.y37{bottom:827.773333pt;}
.y87{bottom:828.413333pt;}
.y18a{bottom:831.933333pt;}
.y102{bottom:839.933333pt;}
.y5c{bottom:842.813333pt;}
.y36{bottom:844.733333pt;}
.y152{bottom:846.653333pt;}
.y86{bottom:847.933333pt;}
.y189{bottom:851.133333pt;}
.y6{bottom:859.133333pt;}
.y14d{bottom:861.053333pt;}
.y35{bottom:861.373333pt;}
.y5b{bottom:862.013333pt;}
.y85{bottom:867.133333pt;}
.y188{bottom:870.653333pt;}
.y34{bottom:878.333333pt;}
.y101{bottom:878.653333pt;}
.y5a{bottom:881.533333pt;}
.y5{bottom:885.053333pt;}
.y84{bottom:886.653333pt;}
.y33{bottom:895.293333pt;}
.y100{bottom:898.173333pt;}
.y83{bottom:906.213333pt;}
.y59{bottom:909.413333pt;}
.y32{bottom:919.973333pt;}
.y82{bottom:925.413333pt;}
.y4{bottom:937.253333pt;}
.y31{bottom:944.933333pt;}
.y3{bottom:952.933333pt;}
.y2c{bottom:962.533333pt;}
.y2{bottom:972.133333pt;}
.y2a{bottom:976.613333pt;}
.y1{bottom:991.973333pt;}
.y29{bottom:994.853333pt;}
.h5{height:7.040000pt;}
.hf{height:7.679867pt;}
.hd{height:7.680000pt;}
.h7{height:13.792000pt;}
.h10{height:18.240000pt;}
.h3{height:36.931250pt;}
.h6{height:42.678750pt;}
.ha{height:43.642500pt;}
.h14{height:46.720000pt;}
.h2{height:46.832500pt;}
.h11{height:47.437500pt;}
.he{height:48.378750pt;}
.hb{height:51.663750pt;}
.h13{height:51.807500pt;}
.h1{height:53.218750pt;}
.h8{height:56.156250pt;}
.h12{height:56.890625pt;}
.h4{height:58.563750pt;}
.hc{height:60.288750pt;}
.h9{height:78.746250pt;}
.h16{height:96.992000pt;}
.h15{height:213.506667pt;}
.h0{height:1056.000000pt;}
.w6{width:32.032000pt;}
.w5{width:105.632000pt;}
.w3{width:285.253333pt;}
.w7{width:287.133333pt;}
.w8{width:287.173333pt;}
.w2{width:290.973333pt;}
.w4{width:518.626667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x1b{left:-16.992000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.720000pt;}
.x4{left:7.680000pt;}
.x11{left:96.032000pt;}
.x14{left:114.911988pt;}
.x1{left:120.063988pt;}
.x8{left:126.463988pt;}
.x7{left:128.703988pt;}
.x17{left:132.223988pt;}
.xa{left:137.666655pt;}
.x15{left:144.066655pt;}
.x10{left:184.386655pt;}
.xe{left:185.666655pt;}
.x19{left:195.613321pt;}
.xd{left:199.773321pt;}
.x2{left:228.573321pt;}
.x6{left:253.533333pt;}
.xf{left:271.773321pt;}
.x9{left:281.733321pt;}
.xb{left:339.013321pt;}
.xc{left:364.639988pt;}
.x3{left:408.159988pt;}
.x5{left:411.040000pt;}
.x16{left:464.186655pt;}
.x12{left:614.653333pt;}
.x13{left:664.253333pt;}
.x18{left:692.133321pt;}
}




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