
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_02131bef866822d79197c688.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a05b6391d6aca56c22a19ba2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_0f9e34d326db3cc442d955e1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_b23efc64f0cb4396dad7dbbe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_320cd6c8542c597fde9e5d0c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_114e953e56be3e228f5fe484.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ac278f509573c554e0d13550.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e9f005d1dea2447f691e6d9b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.800781;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_8e887b175d7cd40132beef76.woff')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_240ca56aec53e6f47b242c17.woff')format("woff");}.ffc{font-family:ffc;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.266400px;}
.lse{letter-spacing:-0.244200px;}
.ls12{letter-spacing:-0.216600px;}
.lsc{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls19{letter-spacing:-0.084600px;}
.ls1e{letter-spacing:-0.078000px;}
.ls1b{letter-spacing:-0.067200px;}
.ls20{letter-spacing:-0.066000px;}
.ls14{letter-spacing:-0.063600px;}
.ls7{letter-spacing:-0.052200px;}
.ls17{letter-spacing:-0.038880px;}
.ls5{letter-spacing:-0.038400px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.ls10{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.064800px;}
.ls13{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.074400px;}
.ls15{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.168600px;}
.lsd{letter-spacing:0.173400px;}
.ls22{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.453600px;}
.ls11{letter-spacing:10.980000px;}
.ls18{letter-spacing:29.160000px;}
.ls23{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls21{letter-spacing:80.846640px;}
.lsa{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.662200px;}
.ws6{word-spacing:-14.493600px;}
.ws1{word-spacing:-14.455200px;}
.ws3{word-spacing:-14.441400px;}
.wsd{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.300800px;}
.wsa{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.187520px;}
.ws10{word-spacing:-13.162800px;}
.ws16{word-spacing:-13.160400px;}
.ws14{word-spacing:-13.159200px;}
.ws15{word-spacing:-13.148400px;}
.ws13{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.wsf{word-spacing:-13.009800px;}
.wsc{word-spacing:-12.982200px;}
.ws0{word-spacing:-9.810000px;}
.ws11{word-spacing:-8.625600px;}
.wsb{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._5{margin-left:-3.667200px;}
._6{margin-left:-2.235360px;}
._0{margin-left:-1.020000px;}
._3{width:1.090812px;}
._a{width:2.393988px;}
._f{width:3.658789px;}
._10{width:4.749240px;}
._c{width:6.192600px;}
._4{width:7.935600px;}
._2{width:8.974872px;}
._1{width:10.569000px;}
._b{width:11.723400px;}
._9{width:15.210600px;}
._16{width:17.314560px;}
._7{width:18.336600px;}
._8{width:19.419000px;}
._19{width:20.667362px;}
._14{width:21.820558px;}
._d{width:23.026200px;}
._e{width:24.330837px;}
._13{width:26.278083px;}
._17{width:28.015920px;}
._18{width:29.699280px;}
._15{width:31.382640px;}
._1a{width:35.139960px;}
._11{width:36.252360px;}
._12{width:37.334520px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.330000px;}
.y7b{bottom:3.420000px;}
.yc2{bottom:4.500000px;}
.y134{bottom:4.590000px;}
.yc6{bottom:4.770000px;}
.y102{bottom:5.580000px;}
.yc1{bottom:6.480000px;}
.ye8{bottom:6.660000px;}
.yef{bottom:6.750000px;}
.y139{bottom:7.830000px;}
.y78{bottom:8.280000px;}
.ye1{bottom:8.460000px;}
.y82{bottom:8.820000px;}
.y110{bottom:9.090000px;}
.y8a{bottom:9.720000px;}
.yfa{bottom:10.170000px;}
.yb3{bottom:10.350000px;}
.ya1{bottom:10.440000px;}
.yba{bottom:10.530000px;}
.y92{bottom:12.780000px;}
.y79{bottom:13.680000px;}
.y2{bottom:73.380000px;}
.y1e{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y42{bottom:112.170000px;}
.yf1{bottom:113.430000px;}
.yc8{bottom:115.320000px;}
.y112{bottom:116.940000px;}
.ydf{bottom:117.480000px;}
.y17b{bottom:120.540000px;}
.y13f{bottom:125.580000px;}
.y111{bottom:127.380000px;}
.yf0{bottom:127.650000px;}
.y6f{bottom:129.090000px;}
.yc7{bottom:129.540000px;}
.ya8{bottom:129.630000px;}
.y124{bottom:129.900000px;}
.y17a{bottom:138.090000px;}
.y150{bottom:141.870000px;}
.y123{bottom:144.120000px;}
.y37{bottom:144.300000px;}
.y41{bottom:144.390000px;}
.y6e{bottom:147.540000px;}
.ya7{bottom:148.080000px;}
.y80{bottom:149.430000px;}
.yde{bottom:153.120000px;}
.y10f{bottom:153.930000px;}
.yee{bottom:154.200000px;}
.yc5{bottom:156.180000px;}
.y13e{bottom:157.800000px;}
.y14f{bottom:159.510000px;}
.y179{bottom:164.730000px;}
.y6d{bottom:165.090000px;}
.ya6{bottom:166.440000px;}
.y7f{bottom:166.980000px;}
.y122{bottom:170.670000px;}
.y36{bottom:179.850000px;}
.y178{bottom:182.280000px;}
.y6c{bottom:183.540000px;}
.ydd{bottom:188.670000px;}
.y14e{bottom:195.060000px;}
.y137{bottom:195.240000px;}
.y177{bottom:199.830000px;}
.y6b{bottom:201.900000px;}
.y7e{bottom:202.530000px;}
.ya5{bottom:202.890000px;}
.y14d{bottom:212.700000px;}
.y35{bottom:216.120000px;}
.y6a{bottom:220.350000px;}
.ydc{bottom:220.440000px;}
.ya4{bottom:220.530000px;}
.y176{bottom:226.470000px;}
.y7d{bottom:229.170000px;}
.y14c{bottom:230.250000px;}
.y136{bottom:230.880000px;}
.y69{bottom:237.900000px;}
.ydb{bottom:238.080000px;}
.y175{bottom:244.020000px;}
.y135{bottom:245.100000px;}
.yb8{bottom:246.540000px;}
.ya3{bottom:247.080000px;}
.y2f{bottom:251.130000px;}
.y34{bottom:254.550000px;}
.yda{bottom:255.630000px;}
.yb7{bottom:264.180000px;}
.y7c{bottom:264.720000px;}
.y14b{bottom:265.800000px;}
.y174{bottom:270.660000px;}
.y133{bottom:271.650000px;}
.y68{bottom:274.350000px;}
.y7a{bottom:278.940000px;}
.ya2{bottom:279.300000px;}
.yb6{bottom:281.730000px;}
.yd9{bottom:282.270000px;}
.y14a{bottom:283.440000px;}
.y2e{bottom:286.680000px;}
.y33{bottom:286.770000px;}
.y173{bottom:288.210000px;}
.y67{bottom:291.990000px;}
.y149{bottom:300.990000px;}
.y77{bottom:305.580000px;}
.y172{bottom:305.760000px;}
.ya0{bottom:305.850000px;}
.yb5{bottom:308.280000px;}
.y66{bottom:309.540000px;}
.y19f{bottom:310.800000px;}
.yd8{bottom:317.820000px;}
.y2d{bottom:318.900000px;}
.y65{bottom:327.090000px;}
.y19e{bottom:328.440000px;}
.y171{bottom:332.400000px;}
.yd7{bottom:335.370000px;}
.y148{bottom:336.630000px;}
.yb4{bottom:337.530000px;}
.y64{bottom:344.730000px;}
.y19d{bottom:345.990000px;}
.y170{bottom:349.950000px;}
.yd6{bottom:353.820000px;}
.y147{bottom:354.180000px;}
.y63{bottom:362.280000px;}
.yb2{bottom:364.080000px;}
.y100{bottom:364.620000px;}
.y16f{bottom:367.590000px;}
.y1c{bottom:369.660000px;}
.yd5{bottom:371.370000px;}
.y146{bottom:371.730000px;}
.y19c{bottom:372.540000px;}
.y99{bottom:372.810000px;}
.y62{bottom:379.920000px;}
.yff{bottom:382.260000px;}
.y1b{bottom:387.210000px;}
.y145{bottom:389.370000px;}
.yd4{bottom:389.820000px;}
.y19b{bottom:390.180000px;}
.y98{bottom:390.360000px;}
.y16e{bottom:394.140000px;}
.y1a{bottom:404.850000px;}
.y61{bottom:406.470000px;}
.y90{bottom:407.370000px;}
.y97{bottom:408.000000px;}
.y16d{bottom:411.690000px;}
.y144{bottom:416.280000px;}
.y19a{bottom:416.730000px;}
.y10e{bottom:416.910000px;}
.yfe{bottom:417.810000px;}
.y19{bottom:422.400000px;}
.y8f{bottom:424.920000px;}
.y121{bottom:426.090000px;}
.yed{bottom:429.780000px;}
.y199{bottom:434.370000px;}
.y10d{bottom:434.460000px;}
.y96{bottom:434.550000px;}
.yfd{bottom:435.450000px;}
.y13d{bottom:435.630000px;}
.y16c{bottom:438.330000px;}
.y18{bottom:439.950000px;}
.y40{bottom:441.120000px;}
.y8e{bottom:442.560000px;}
.yd3{bottom:443.370000px;}
.y120{bottom:443.640000px;}
.y60{bottom:445.260000px;}
.yec{bottom:447.420000px;}
.yc4{bottom:448.950000px;}
.y10c{bottom:452.100000px;}
.y16b{bottom:455.880000px;}
.y17{bottom:457.590000px;}
.y3f{bottom:458.760000px;}
.y8d{bottom:460.110000px;}
.yd2{bottom:460.920000px;}
.y11f{bottom:461.190000px;}
.yfc{bottom:462.000000px;}
.y143{bottom:464.520000px;}
.yeb{bottom:464.970000px;}
.y13c{bottom:467.850000px;}
.y95{bottom:470.220000px;}
.y16a{bottom:473.550000px;}
.y3e{bottom:476.340000px;}
.yc3{bottom:478.230000px;}
.y198{bottom:478.500000px;}
.y10b{bottom:478.680000px;}
.yd1{bottom:479.400000px;}
.y16{bottom:484.530000px;}
.y8c{bottom:486.690000px;}
.y11e{bottom:487.860000px;}
.yfb{bottom:491.280000px;}
.yea{bottom:491.550000px;}
.y5f{bottom:493.530000px;}
.y3d{bottom:493.890000px;}
.y197{bottom:496.140000px;}
.y142{bottom:496.770000px;}
.yd0{bottom:496.950000px;}
.y169{bottom:500.100000px;}
.y94{bottom:502.440000px;}
.yc0{bottom:504.780000px;}
.y10a{bottom:507.930000px;}
.y3c{bottom:511.530000px;}
.y5e{bottom:511.890000px;}
.y132{bottom:513.780000px;}
.ycf{bottom:515.400000px;}
.y8b{bottom:515.940000px;}
.y168{bottom:517.650000px;}
.yf9{bottom:517.830000px;}
.ye9{bottom:520.800000px;}
.y196{bottom:522.690000px;}
.y11d{bottom:523.410000px;}
.y5d{bottom:530.340000px;}
.y131{bottom:531.330000px;}
.yce{bottom:533.040000px;}
.y15{bottom:533.130000px;}
.y109{bottom:534.480000px;}
.y3b{bottom:538.080000px;}
.y195{bottom:540.330000px;}
.y11c{bottom:540.960000px;}
.y89{bottom:542.580000px;}
.y167{bottom:544.290000px;}
.ye7{bottom:547.440000px;}
.y76{bottom:548.340000px;}
.y5c{bottom:548.700000px;}
.y130{bottom:548.970000px;}
.ycd{bottom:550.590000px;}
.y11b{bottom:559.410000px;}
.y166{bottom:561.840000px;}
.y75{bottom:565.890000px;}
.y9f{bottom:566.700000px;}
.y194{bottom:566.880000px;}
.y5b{bottom:567.150000px;}
.y14{bottom:570.120000px;}
.y3a{bottom:573.720000px;}
.y2c{bottom:574.350000px;}
.y12f{bottom:575.520000px;}
.y11a{bottom:576.960000px;}
.y74{bottom:583.530000px;}
.y9e{bottom:584.250000px;}
.y193{bottom:584.430000px;}
.ycc{bottom:587.040000px;}
.y13{bottom:587.670000px;}
.y165{bottom:588.480000px;}
.y2b{bottom:591.900000px;}
.y73{bottom:601.080000px;}
.y192{bottom:602.070000px;}
.y5a{bottom:603.600000px;}
.y12{bottom:605.310000px;}
.y39{bottom:605.940000px;}
.y164{bottom:606.030000px;}
.y2a{bottom:609.540000px;}
.y12e{bottom:611.070000px;}
.y119{bottom:613.410000px;}
.ycb{bottom:619.260000px;}
.y9d{bottom:619.890000px;}
.y11{bottom:622.860000px;}
.yb1{bottom:626.280000px;}
.y29{bottom:627.090000px;}
.y72{bottom:627.720000px;}
.y191{bottom:628.620000px;}
.y12d{bottom:629.520000px;}
.y163{bottom:632.580000px;}
.y59{bottom:639.150000px;}
.y10{bottom:640.500000px;}
.yb0{bottom:643.830000px;}
.y28{bottom:644.640000px;}
.y190{bottom:646.260000px;}
.y9c{bottom:646.440000px;}
.y12c{bottom:647.880000px;}
.y118{bottom:648.960000px;}
.y162{bottom:650.220000px;}
.yf{bottom:658.050000px;}
.yaf{bottom:661.470000px;}
.y71{bottom:663.270000px;}
.y18f{bottom:663.810000px;}
.y58{bottom:665.790000px;}
.y117{bottom:666.600000px;}
.y27{bottom:671.280000px;}
.ye{bottom:675.600000px;}
.y9b{bottom:675.690000px;}
.y161{bottom:676.770000px;}
.y116{bottom:684.150000px;}
.y12b{bottom:684.330000px;}
.yae{bottom:688.020000px;}
.y18e{bottom:690.360000px;}
.yd{bottom:693.240000px;}
.y160{bottom:694.410000px;}
.y70{bottom:695.490000px;}
.y57{bottom:701.340000px;}
.y115{bottom:701.790000px;}
.y9a{bottom:702.240000px;}
.y26{bottom:706.830000px;}
.y18d{bottom:708.000000px;}
.yc{bottom:710.790000px;}
.y12a{bottom:716.550000px;}
.y56{bottom:718.980000px;}
.y114{bottom:719.340000px;}
.y15f{bottom:720.960000px;}
.yad{bottom:723.570000px;}
.y25{bottom:724.380000px;}
.y18c{bottom:725.550000px;}
.yb{bottom:728.430000px;}
.y55{bottom:736.530000px;}
.y15e{bottom:738.510000px;}
.yf8{bottom:739.410000px;}
.y24{bottom:742.830000px;}
.y18b{bottom:752.190000px;}
.y54{bottom:754.890000px;}
.ya{bottom:755.340000px;}
.yac{bottom:755.790000px;}
.y108{bottom:756.060000px;}
.yf7{bottom:757.050000px;}
.y23{bottom:760.470000px;}
.y15d{bottom:765.150000px;}
.y18a{bottom:769.740000px;}
.y13b{bottom:770.460000px;}
.y53{bottom:773.340000px;}
.y107{bottom:773.700000px;}
.yf6{bottom:774.600000px;}
.y22{bottom:778.020000px;}
.y15c{bottom:782.700000px;}
.y113{bottom:787.110000px;}
.y88{bottom:788.910000px;}
.y52{bottom:790.980000px;}
.y106{bottom:791.250000px;}
.yf5{bottom:792.240000px;}
.y189{bottom:796.290000px;}
.ybf{bottom:800.700000px;}
.y9{bottom:803.580000px;}
.y13a{bottom:805.560000px;}
.y87{bottom:806.460000px;}
.y51{bottom:808.530000px;}
.y105{bottom:808.890000px;}
.y15b{bottom:809.340000px;}
.ye6{bottom:811.770000px;}
.y188{bottom:813.930000px;}
.y21{bottom:814.470000px;}
.ybe{bottom:818.250000px;}
.y141{bottom:818.520000px;}
.yf4{bottom:818.790000px;}
.y86{bottom:824.100000px;}
.y50{bottom:826.080000px;}
.y15a{bottom:826.890000px;}
.ye5{bottom:829.320000px;}
.y138{bottom:832.110000px;}
.y104{bottom:835.440000px;}
.ybd{bottom:835.890000px;}
.y8{bottom:839.130000px;}
.y187{bottom:840.480000px;}
.y93{bottom:842.190000px;}
.y4f{bottom:844.530000px;}
.ye4{bottom:846.960000px;}
.yf3{bottom:848.040000px;}
.y20{bottom:850.020000px;}
.y85{bottom:850.650000px;}
.y140{bottom:850.740000px;}
.y32{bottom:852.720000px;}
.y159{bottom:853.440000px;}
.y186{bottom:858.030000px;}
.y4e{bottom:862.080000px;}
.ybc{bottom:862.440000px;}
.y103{bottom:864.690000px;}
.y91{bottom:868.740000px;}
.y158{bottom:871.080000px;}
.ye3{bottom:873.510000px;}
.yf2{bottom:874.590000px;}
.y7{bottom:874.950000px;}
.y185{bottom:875.670000px;}
.y83{bottom:879.900000px;}
.y4d{bottom:880.530000px;}
.y1f{bottom:882.240000px;}
.y31{bottom:888.270000px;}
.y101{bottom:891.240000px;}
.ybb{bottom:891.690000px;}
.y157{bottom:897.990000px;}
.y4c{bottom:898.080000px;}
.y184{bottom:902.220000px;}
.ye2{bottom:902.760000px;}
.y81{bottom:906.450000px;}
.y6{bottom:910.950000px;}
.yb9{bottom:918.240000px;}
.y183{bottom:919.860000px;}
.y30{bottom:920.490000px;}
.y4b{bottom:925.530000px;}
.ye0{bottom:929.310000px;}
.y182{bottom:937.410000px;}
.y156{bottom:946.230000px;}
.y5{bottom:947.040000px;}
.y4a{bottom:960.990000px;}
.y181{bottom:963.960000px;}
.y155{bottom:973.140000px;}
.y49{bottom:979.530000px;}
.y180{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y48{bottom:997.080000px;}
.y17f{bottom:999.150000px;}
.y3{bottom:1010.070000px;}
.y154{bottom:1010.160000px;}
.y47{bottom:1015.470000px;}
.y17e{bottom:1025.820000px;}
.y153{bottom:1037.070000px;}
.y129{bottom:1041.750000px;}
.y46{bottom:1042.920000px;}
.yca{bottom:1043.370000px;}
.y128{bottom:1059.300000px;}
.yc9{bottom:1060.920000px;}
.y152{bottom:1074.420000px;}
.y127{bottom:1076.850000px;}
.y45{bottom:1078.560000px;}
.yab{bottom:1085.490000px;}
.y17d{bottom:1087.560000px;}
.y126{bottom:1095.300000px;}
.y44{bottom:1096.110000px;}
.y17c{bottom:1105.110000px;}
.y125{bottom:1112.850000px;}
.y43{bottom:1113.750000px;}
.yaa{bottom:1120.950000px;}
.y151{bottom:1122.750000px;}
.ya9{bottom:1139.400000px;}
.y38{bottom:1140.300000px;}
.y1d{bottom:1194.300000px;}
.h11{height:26.550000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.he{height:32.918906px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:59.973223px;}
.h7{height:60.960938px;}
.h8{height:61.793886px;}
.h9{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1b{height:74.004654px;}
.hb{height:74.953125px;}
.h1e{height:182.550000px;}
.h1f{height:200.250000px;}
.h19{height:209.700000px;}
.h23{height:220.800000px;}
.hd{height:221.430000px;}
.h12{height:225.000000px;}
.h24{height:225.030000px;}
.h1a{height:225.210000px;}
.h22{height:234.000000px;}
.h17{height:236.280000px;}
.h15{height:239.430000px;}
.h16{height:240.780000px;}
.h21{height:241.560000px;}
.h1c{height:243.000000px;}
.h10{height:248.070000px;}
.h1d{height:254.250000px;}
.h20{height:263.280000px;}
.h18{height:274.500000px;}
.h13{height:285.780000px;}
.h14{height:452.280000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1f{width:208.020000px;}
.w29{width:225.480000px;}
.w1e{width:229.950000px;}
.w22{width:235.170000px;}
.w26{width:243.900000px;}
.w28{width:246.600000px;}
.w25{width:253.290000px;}
.w18{width:253.380000px;}
.w1c{width:261.450000px;}
.w1d{width:264.000000px;}
.wf{width:265.980000px;}
.w2a{width:270.480000px;}
.wb{width:271.110000px;}
.w23{width:274.620000px;}
.w20{width:276.120000px;}
.w11{width:277.200000px;}
.w1a{width:277.560000px;}
.w1b{width:278.310000px;}
.w17{width:281.700000px;}
.w15{width:281.730000px;}
.w3{width:284.430000px;}
.w24{width:286.200000px;}
.w16{width:288.390000px;}
.w6{width:288.480000px;}
.w12{width:291.630000px;}
.w21{width:293.070000px;}
.w13{width:293.430000px;}
.w19{width:298.530000px;}
.w5{width:301.980000px;}
.wd{width:304.230000px;}
.w14{width:306.480000px;}
.w10{width:313.230000px;}
.w27{width:320.520000px;}
.we{width:322.230000px;}
.w4{width:334.830000px;}
.w8{width:335.730000px;}
.w7{width:342.480000px;}
.wa{width:374.070000px;}
.w9{width:383.070000px;}
.wc{width:383.430000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:8.100000px;}
.x74{left:10.350000px;}
.x64{left:16.470000px;}
.x58{left:18.000000px;}
.x55{left:22.050000px;}
.x67{left:25.830000px;}
.x47{left:27.210000px;}
.x5d{left:32.400000px;}
.x43{left:34.020000px;}
.x4b{left:37.470000px;}
.x3d{left:39.720000px;}
.x30{left:40.860000px;}
.x42{left:44.460000px;}
.x48{left:45.540000px;}
.x1a{left:50.160000px;}
.x63{left:51.210000px;}
.x20{left:52.860000px;}
.x36{left:58.350000px;}
.x21{left:61.050000px;}
.x29{left:62.580000px;}
.x1{left:68.040000px;}
.x24{left:71.400000px;}
.x31{left:73.800000px;}
.x1b{left:80.730000px;}
.x28{left:90.180000px;}
.x12{left:95.039987px;}
.x6{left:99.539987px;}
.x22{left:107.550000px;}
.x7b{left:111.239987px;}
.x2c{left:119.340000px;}
.x13{left:122.039987px;}
.x32{left:133.380000px;}
.x16{left:136.980000px;}
.x44{left:146.700000px;}
.x1c{left:151.380000px;}
.x39{left:157.050000px;}
.x3e{left:162.210000px;}
.x52{left:164.370000px;}
.x56{left:168.690000px;}
.x68{left:176.880000px;}
.x4f{left:179.130000px;}
.x59{left:183.900000px;}
.x2{left:192.719987px;}
.x61{left:198.660000px;}
.x71{left:210.630000px;}
.x73{left:217.380000px;}
.x5f{left:221.850000px;}
.x51{left:226.200000px;}
.x5e{left:227.640000px;}
.x6d{left:234.450000px;}
.x72{left:238.500000px;}
.x6a{left:242.490000px;}
.x57{left:244.380000px;}
.x70{left:248.069987px;}
.x38{left:249.869987px;}
.x5a{left:253.350000px;}
.x66{left:254.640000px;}
.x5c{left:255.810000px;}
.x3a{left:257.880000px;}
.x15{left:260.309987px;}
.x2d{left:263.010000px;}
.x6c{left:265.169987px;}
.x62{left:267.930000px;}
.x3f{left:269.100000px;}
.x49{left:273.630000px;}
.x17{left:276.330000px;}
.x69{left:278.100000px;}
.x1f{left:280.380000px;}
.x41{left:283.530000px;}
.x45{left:285.330000px;}
.x53{left:290.340000px;}
.x1d{left:293.880000px;}
.x33{left:296.130000px;}
.x46{left:298.380000px;}
.x3c{left:305.130000px;}
.x4e{left:312.419987px;}
.x35{left:314.130000px;}
.xf{left:323.759987px;}
.x19{left:326.730000px;}
.xc{left:329.069987px;}
.x5{left:335.279987px;}
.x77{left:337.529987px;}
.x79{left:342.119987px;}
.x2b{left:352.559987px;}
.x27{left:368.130000px;}
.x11{left:370.829987px;}
.xa{left:374.069987px;}
.x2f{left:375.330000px;}
.x25{left:377.130000px;}
.x8{left:385.589987px;}
.x2e{left:390.450000px;}
.x6e{left:408.360000px;}
.x18{left:421.410000px;}
.x3b{left:423.030000px;}
.x65{left:426.900000px;}
.x34{left:437.610000px;}
.x40{left:439.410000px;}
.x4a{left:443.280000px;}
.x5b{left:445.350000px;}
.xd{left:446.609987px;}
.x23{left:450.030000px;}
.x26{left:451.110000px;}
.x1e{left:453.360000px;}
.x75{left:454.530000px;}
.x60{left:457.590000px;}
.x50{left:460.830000px;}
.x54{left:462.900000px;}
.x9{left:596.309987px;}
.x7{left:613.139987px;}
.x6b{left:631.139987px;}
.x6f{left:635.639987px;}
.xb{left:637.889987px;}
.x7a{left:650.309987px;}
.x4d{left:655.889987px;}
.x2a{left:669.389987px;}
.x78{left:672.809987px;}
.x4{left:684.059987px;}
.x37{left:695.309987px;}
.x76{left:716.639987px;}
.x14{left:741.389987px;}
.x10{left:786.839987px;}
.x3{left:808.619987px;}
.xe{left:822.389987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.236800pt;}
.lse{letter-spacing:-0.217067pt;}
.ls12{letter-spacing:-0.192533pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls19{letter-spacing:-0.075200pt;}
.ls1e{letter-spacing:-0.069333pt;}
.ls1b{letter-spacing:-0.059733pt;}
.ls20{letter-spacing:-0.058667pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls7{letter-spacing:-0.046400pt;}
.ls17{letter-spacing:-0.034560pt;}
.ls5{letter-spacing:-0.034133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.ls10{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.057600pt;}
.ls13{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.066133pt;}
.ls15{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.149867pt;}
.lsd{letter-spacing:0.154133pt;}
.ls22{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.403200pt;}
.ls11{letter-spacing:9.760000pt;}
.ls18{letter-spacing:25.920000pt;}
.ls23{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls21{letter-spacing:71.863680pt;}
.lsa{letter-spacing:72.503680pt;}
.wse{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.033067pt;}
.ws6{word-spacing:-12.883200pt;}
.ws1{word-spacing:-12.849067pt;}
.ws3{word-spacing:-12.836800pt;}
.wsd{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.822933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.722240pt;}
.ws10{word-spacing:-11.700267pt;}
.ws16{word-spacing:-11.698133pt;}
.ws14{word-spacing:-11.697067pt;}
.ws15{word-spacing:-11.687467pt;}
.ws13{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.564267pt;}
.wsc{word-spacing:-11.539733pt;}
.ws0{word-spacing:-8.720000pt;}
.ws11{word-spacing:-7.667200pt;}
.wsb{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._5{margin-left:-3.259733pt;}
._6{margin-left:-1.986987pt;}
._0{margin-left:-0.906667pt;}
._3{width:0.969610pt;}
._a{width:2.127989pt;}
._f{width:3.252257pt;}
._10{width:4.221546pt;}
._c{width:5.504534pt;}
._4{width:7.053866pt;}
._2{width:7.977664pt;}
._1{width:9.394667pt;}
._b{width:10.420800pt;}
._9{width:13.520534pt;}
._16{width:15.390720pt;}
._7{width:16.299200pt;}
._8{width:17.261334pt;}
._19{width:18.370988pt;}
._14{width:19.396051pt;}
._d{width:20.467734pt;}
._e{width:21.627411pt;}
._13{width:23.358296pt;}
._17{width:24.903040pt;}
._18{width:26.399360pt;}
._15{width:27.895680pt;}
._1a{width:31.235520pt;}
._11{width:32.224320pt;}
._12{width:33.186240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:2.960000pt;}
.y7b{bottom:3.040000pt;}
.yc2{bottom:4.000000pt;}
.y134{bottom:4.080000pt;}
.yc6{bottom:4.240000pt;}
.y102{bottom:4.960000pt;}
.yc1{bottom:5.760000pt;}
.ye8{bottom:5.920000pt;}
.yef{bottom:6.000000pt;}
.y139{bottom:6.960000pt;}
.y78{bottom:7.360000pt;}
.ye1{bottom:7.520000pt;}
.y82{bottom:7.840000pt;}
.y110{bottom:8.080000pt;}
.y8a{bottom:8.640000pt;}
.yfa{bottom:9.040000pt;}
.yb3{bottom:9.200000pt;}
.ya1{bottom:9.280000pt;}
.yba{bottom:9.360000pt;}
.y92{bottom:11.360000pt;}
.y79{bottom:12.160000pt;}
.y2{bottom:65.226667pt;}
.y1e{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y42{bottom:99.706667pt;}
.yf1{bottom:100.826667pt;}
.yc8{bottom:102.506667pt;}
.y112{bottom:103.946667pt;}
.ydf{bottom:104.426667pt;}
.y17b{bottom:107.146667pt;}
.y13f{bottom:111.626667pt;}
.y111{bottom:113.226667pt;}
.yf0{bottom:113.466667pt;}
.y6f{bottom:114.746667pt;}
.yc7{bottom:115.146667pt;}
.ya8{bottom:115.226667pt;}
.y124{bottom:115.466667pt;}
.y17a{bottom:122.746667pt;}
.y150{bottom:126.106667pt;}
.y123{bottom:128.106667pt;}
.y37{bottom:128.266667pt;}
.y41{bottom:128.346667pt;}
.y6e{bottom:131.146667pt;}
.ya7{bottom:131.626667pt;}
.y80{bottom:132.826667pt;}
.yde{bottom:136.106667pt;}
.y10f{bottom:136.826667pt;}
.yee{bottom:137.066667pt;}
.yc5{bottom:138.826667pt;}
.y13e{bottom:140.266667pt;}
.y14f{bottom:141.786667pt;}
.y179{bottom:146.426667pt;}
.y6d{bottom:146.746667pt;}
.ya6{bottom:147.946667pt;}
.y7f{bottom:148.426667pt;}
.y122{bottom:151.706667pt;}
.y36{bottom:159.866667pt;}
.y178{bottom:162.026667pt;}
.y6c{bottom:163.146667pt;}
.ydd{bottom:167.706667pt;}
.y14e{bottom:173.386667pt;}
.y137{bottom:173.546667pt;}
.y177{bottom:177.626667pt;}
.y6b{bottom:179.466667pt;}
.y7e{bottom:180.026667pt;}
.ya5{bottom:180.346667pt;}
.y14d{bottom:189.066667pt;}
.y35{bottom:192.106667pt;}
.y6a{bottom:195.866667pt;}
.ydc{bottom:195.946667pt;}
.ya4{bottom:196.026667pt;}
.y176{bottom:201.306667pt;}
.y7d{bottom:203.706667pt;}
.y14c{bottom:204.666667pt;}
.y136{bottom:205.226667pt;}
.y69{bottom:211.466667pt;}
.ydb{bottom:211.626667pt;}
.y175{bottom:216.906667pt;}
.y135{bottom:217.866667pt;}
.yb8{bottom:219.146667pt;}
.ya3{bottom:219.626667pt;}
.y2f{bottom:223.226667pt;}
.y34{bottom:226.266667pt;}
.yda{bottom:227.226667pt;}
.yb7{bottom:234.826667pt;}
.y7c{bottom:235.306667pt;}
.y14b{bottom:236.266667pt;}
.y174{bottom:240.586667pt;}
.y133{bottom:241.466667pt;}
.y68{bottom:243.866667pt;}
.y7a{bottom:247.946667pt;}
.ya2{bottom:248.266667pt;}
.yb6{bottom:250.426667pt;}
.yd9{bottom:250.906667pt;}
.y14a{bottom:251.946667pt;}
.y2e{bottom:254.826667pt;}
.y33{bottom:254.906667pt;}
.y173{bottom:256.186667pt;}
.y67{bottom:259.546667pt;}
.y149{bottom:267.546667pt;}
.y77{bottom:271.626667pt;}
.y172{bottom:271.786667pt;}
.ya0{bottom:271.866667pt;}
.yb5{bottom:274.026667pt;}
.y66{bottom:275.146667pt;}
.y19f{bottom:276.266667pt;}
.yd8{bottom:282.506667pt;}
.y2d{bottom:283.466667pt;}
.y65{bottom:290.746667pt;}
.y19e{bottom:291.946667pt;}
.y171{bottom:295.466667pt;}
.yd7{bottom:298.106667pt;}
.y148{bottom:299.226667pt;}
.yb4{bottom:300.026667pt;}
.y64{bottom:306.426667pt;}
.y19d{bottom:307.546667pt;}
.y170{bottom:311.066667pt;}
.yd6{bottom:314.506667pt;}
.y147{bottom:314.826667pt;}
.y63{bottom:322.026667pt;}
.yb2{bottom:323.626667pt;}
.y100{bottom:324.106667pt;}
.y16f{bottom:326.746667pt;}
.y1c{bottom:328.586667pt;}
.yd5{bottom:330.106667pt;}
.y146{bottom:330.426667pt;}
.y19c{bottom:331.146667pt;}
.y99{bottom:331.386667pt;}
.y62{bottom:337.706667pt;}
.yff{bottom:339.786667pt;}
.y1b{bottom:344.186667pt;}
.y145{bottom:346.106667pt;}
.yd4{bottom:346.506667pt;}
.y19b{bottom:346.826667pt;}
.y98{bottom:346.986667pt;}
.y16e{bottom:350.346667pt;}
.y1a{bottom:359.866667pt;}
.y61{bottom:361.306667pt;}
.y90{bottom:362.106667pt;}
.y97{bottom:362.666667pt;}
.y16d{bottom:365.946667pt;}
.y144{bottom:370.026667pt;}
.y19a{bottom:370.426667pt;}
.y10e{bottom:370.586667pt;}
.yfe{bottom:371.386667pt;}
.y19{bottom:375.466667pt;}
.y8f{bottom:377.706667pt;}
.y121{bottom:378.746667pt;}
.yed{bottom:382.026667pt;}
.y199{bottom:386.106667pt;}
.y10d{bottom:386.186667pt;}
.y96{bottom:386.266667pt;}
.yfd{bottom:387.066667pt;}
.y13d{bottom:387.226667pt;}
.y16c{bottom:389.626667pt;}
.y18{bottom:391.066667pt;}
.y40{bottom:392.106667pt;}
.y8e{bottom:393.386667pt;}
.yd3{bottom:394.106667pt;}
.y120{bottom:394.346667pt;}
.y60{bottom:395.786667pt;}
.yec{bottom:397.706667pt;}
.yc4{bottom:399.066667pt;}
.y10c{bottom:401.866667pt;}
.y16b{bottom:405.226667pt;}
.y17{bottom:406.746667pt;}
.y3f{bottom:407.786667pt;}
.y8d{bottom:408.986667pt;}
.yd2{bottom:409.706667pt;}
.y11f{bottom:409.946667pt;}
.yfc{bottom:410.666667pt;}
.y143{bottom:412.906667pt;}
.yeb{bottom:413.306667pt;}
.y13c{bottom:415.866667pt;}
.y95{bottom:417.973333pt;}
.y16a{bottom:420.933333pt;}
.y3e{bottom:423.413333pt;}
.yc3{bottom:425.093333pt;}
.y198{bottom:425.333333pt;}
.y10b{bottom:425.493333pt;}
.yd1{bottom:426.133333pt;}
.y16{bottom:430.693333pt;}
.y8c{bottom:432.613333pt;}
.y11e{bottom:433.653333pt;}
.yfb{bottom:436.693333pt;}
.yea{bottom:436.933333pt;}
.y5f{bottom:438.693333pt;}
.y3d{bottom:439.013333pt;}
.y197{bottom:441.013333pt;}
.y142{bottom:441.573333pt;}
.yd0{bottom:441.733333pt;}
.y169{bottom:444.533333pt;}
.y94{bottom:446.613333pt;}
.yc0{bottom:448.693333pt;}
.y10a{bottom:451.493333pt;}
.y3c{bottom:454.693333pt;}
.y5e{bottom:455.013333pt;}
.y132{bottom:456.693333pt;}
.ycf{bottom:458.133333pt;}
.y8b{bottom:458.613333pt;}
.y168{bottom:460.133333pt;}
.yf9{bottom:460.293333pt;}
.ye9{bottom:462.933333pt;}
.y196{bottom:464.613333pt;}
.y11d{bottom:465.253333pt;}
.y5d{bottom:471.413333pt;}
.y131{bottom:472.293333pt;}
.yce{bottom:473.813333pt;}
.y15{bottom:473.893333pt;}
.y109{bottom:475.093333pt;}
.y3b{bottom:478.293333pt;}
.y195{bottom:480.293333pt;}
.y11c{bottom:480.853333pt;}
.y89{bottom:482.293333pt;}
.y167{bottom:483.813333pt;}
.ye7{bottom:486.613333pt;}
.y76{bottom:487.413333pt;}
.y5c{bottom:487.733333pt;}
.y130{bottom:487.973333pt;}
.ycd{bottom:489.413333pt;}
.y11b{bottom:497.253333pt;}
.y166{bottom:499.413333pt;}
.y75{bottom:503.013333pt;}
.y9f{bottom:503.733333pt;}
.y194{bottom:503.893333pt;}
.y5b{bottom:504.133333pt;}
.y14{bottom:506.773333pt;}
.y3a{bottom:509.973333pt;}
.y2c{bottom:510.533333pt;}
.y12f{bottom:511.573333pt;}
.y11a{bottom:512.853333pt;}
.y74{bottom:518.693333pt;}
.y9e{bottom:519.333333pt;}
.y193{bottom:519.493333pt;}
.ycc{bottom:521.813333pt;}
.y13{bottom:522.373333pt;}
.y165{bottom:523.093333pt;}
.y2b{bottom:526.133333pt;}
.y73{bottom:534.293333pt;}
.y192{bottom:535.173333pt;}
.y5a{bottom:536.533333pt;}
.y12{bottom:538.053333pt;}
.y39{bottom:538.613333pt;}
.y164{bottom:538.693333pt;}
.y2a{bottom:541.813333pt;}
.y12e{bottom:543.173333pt;}
.y119{bottom:545.253333pt;}
.ycb{bottom:550.453333pt;}
.y9d{bottom:551.013333pt;}
.y11{bottom:553.653333pt;}
.yb1{bottom:556.693333pt;}
.y29{bottom:557.413333pt;}
.y72{bottom:557.973333pt;}
.y191{bottom:558.773333pt;}
.y12d{bottom:559.573333pt;}
.y163{bottom:562.293333pt;}
.y59{bottom:568.133333pt;}
.y10{bottom:569.333333pt;}
.yb0{bottom:572.293333pt;}
.y28{bottom:573.013333pt;}
.y190{bottom:574.453333pt;}
.y9c{bottom:574.613333pt;}
.y12c{bottom:575.893333pt;}
.y118{bottom:576.853333pt;}
.y162{bottom:577.973333pt;}
.yf{bottom:584.933333pt;}
.yaf{bottom:587.973333pt;}
.y71{bottom:589.573333pt;}
.y18f{bottom:590.053333pt;}
.y58{bottom:591.813333pt;}
.y117{bottom:592.533333pt;}
.y27{bottom:596.693333pt;}
.ye{bottom:600.533333pt;}
.y9b{bottom:600.613333pt;}
.y161{bottom:601.573333pt;}
.y116{bottom:608.133333pt;}
.y12b{bottom:608.293333pt;}
.yae{bottom:611.573333pt;}
.y18e{bottom:613.653333pt;}
.yd{bottom:616.213333pt;}
.y160{bottom:617.253333pt;}
.y70{bottom:618.213333pt;}
.y57{bottom:623.413333pt;}
.y115{bottom:623.813333pt;}
.y9a{bottom:624.213333pt;}
.y26{bottom:628.293333pt;}
.y18d{bottom:629.333333pt;}
.yc{bottom:631.813333pt;}
.y12a{bottom:636.933333pt;}
.y56{bottom:639.093333pt;}
.y114{bottom:639.413333pt;}
.y15f{bottom:640.853333pt;}
.yad{bottom:643.173333pt;}
.y25{bottom:643.893333pt;}
.y18c{bottom:644.933333pt;}
.yb{bottom:647.493333pt;}
.y55{bottom:654.693333pt;}
.y15e{bottom:656.453333pt;}
.yf8{bottom:657.253333pt;}
.y24{bottom:660.293333pt;}
.y18b{bottom:668.613333pt;}
.y54{bottom:671.013333pt;}
.ya{bottom:671.413333pt;}
.yac{bottom:671.813333pt;}
.y108{bottom:672.053333pt;}
.yf7{bottom:672.933333pt;}
.y23{bottom:675.973333pt;}
.y15d{bottom:680.133333pt;}
.y18a{bottom:684.213333pt;}
.y13b{bottom:684.853333pt;}
.y53{bottom:687.413333pt;}
.y107{bottom:687.733333pt;}
.yf6{bottom:688.533333pt;}
.y22{bottom:691.573333pt;}
.y15c{bottom:695.733333pt;}
.y113{bottom:699.653333pt;}
.y88{bottom:701.253333pt;}
.y52{bottom:703.093333pt;}
.y106{bottom:703.333333pt;}
.yf5{bottom:704.213333pt;}
.y189{bottom:707.813333pt;}
.ybf{bottom:711.733333pt;}
.y9{bottom:714.293333pt;}
.y13a{bottom:716.053333pt;}
.y87{bottom:716.853333pt;}
.y51{bottom:718.693333pt;}
.y105{bottom:719.013333pt;}
.y15b{bottom:719.413333pt;}
.ye6{bottom:721.573333pt;}
.y188{bottom:723.493333pt;}
.y21{bottom:723.973333pt;}
.ybe{bottom:727.333333pt;}
.y141{bottom:727.573333pt;}
.yf4{bottom:727.813333pt;}
.y86{bottom:732.533333pt;}
.y50{bottom:734.293333pt;}
.y15a{bottom:735.013333pt;}
.ye5{bottom:737.173333pt;}
.y138{bottom:739.653333pt;}
.y104{bottom:742.613333pt;}
.ybd{bottom:743.013333pt;}
.y8{bottom:745.893333pt;}
.y187{bottom:747.093333pt;}
.y93{bottom:748.613333pt;}
.y4f{bottom:750.693333pt;}
.ye4{bottom:752.853333pt;}
.yf3{bottom:753.813333pt;}
.y20{bottom:755.573333pt;}
.y85{bottom:756.133333pt;}
.y140{bottom:756.213333pt;}
.y32{bottom:757.973333pt;}
.y159{bottom:758.613333pt;}
.y186{bottom:762.693333pt;}
.y4e{bottom:766.293333pt;}
.ybc{bottom:766.613333pt;}
.y103{bottom:768.613333pt;}
.y91{bottom:772.213333pt;}
.y158{bottom:774.293333pt;}
.ye3{bottom:776.453333pt;}
.yf2{bottom:777.413333pt;}
.y7{bottom:777.733333pt;}
.y185{bottom:778.373333pt;}
.y83{bottom:782.133333pt;}
.y4d{bottom:782.693333pt;}
.y1f{bottom:784.213333pt;}
.y31{bottom:789.573333pt;}
.y101{bottom:792.213333pt;}
.ybb{bottom:792.613333pt;}
.y157{bottom:798.213333pt;}
.y4c{bottom:798.293333pt;}
.y184{bottom:801.973333pt;}
.ye2{bottom:802.453333pt;}
.y81{bottom:805.733333pt;}
.y6{bottom:809.733333pt;}
.yb9{bottom:816.213333pt;}
.y183{bottom:817.653333pt;}
.y30{bottom:818.213333pt;}
.y4b{bottom:822.693333pt;}
.ye0{bottom:826.053333pt;}
.y182{bottom:833.253333pt;}
.y156{bottom:841.093333pt;}
.y5{bottom:841.813333pt;}
.y4a{bottom:854.213333pt;}
.y181{bottom:856.853333pt;}
.y155{bottom:865.013333pt;}
.y49{bottom:870.693333pt;}
.y180{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y48{bottom:886.293333pt;}
.y17f{bottom:888.133333pt;}
.y3{bottom:897.840000pt;}
.y154{bottom:897.920000pt;}
.y47{bottom:902.640000pt;}
.y17e{bottom:911.840000pt;}
.y153{bottom:921.840000pt;}
.y129{bottom:926.000000pt;}
.y46{bottom:927.040000pt;}
.yca{bottom:927.440000pt;}
.y128{bottom:941.600000pt;}
.yc9{bottom:943.040000pt;}
.y152{bottom:955.040000pt;}
.y127{bottom:957.200000pt;}
.y45{bottom:958.720000pt;}
.yab{bottom:964.880000pt;}
.y17d{bottom:966.720000pt;}
.y126{bottom:973.600000pt;}
.y44{bottom:974.320000pt;}
.y17c{bottom:982.320000pt;}
.y125{bottom:989.200000pt;}
.y43{bottom:990.000000pt;}
.yaa{bottom:996.400000pt;}
.y151{bottom:998.000000pt;}
.ya9{bottom:1012.800000pt;}
.y38{bottom:1013.600000pt;}
.y1d{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.he{height:29.261250pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:53.309531pt;}
.h7{height:54.187500pt;}
.h8{height:54.927899pt;}
.h9{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1b{height:65.781915pt;}
.hb{height:66.625000pt;}
.h1e{height:162.266667pt;}
.h1f{height:178.000000pt;}
.h19{height:186.400000pt;}
.h23{height:196.266667pt;}
.hd{height:196.826667pt;}
.h12{height:200.000000pt;}
.h24{height:200.026667pt;}
.h1a{height:200.186667pt;}
.h22{height:208.000000pt;}
.h17{height:210.026667pt;}
.h15{height:212.826667pt;}
.h16{height:214.026667pt;}
.h21{height:214.720000pt;}
.h1c{height:216.000000pt;}
.h10{height:220.506667pt;}
.h1d{height:226.000000pt;}
.h20{height:234.026667pt;}
.h18{height:244.000000pt;}
.h13{height:254.026667pt;}
.h14{height:402.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1f{width:184.906667pt;}
.w29{width:200.426667pt;}
.w1e{width:204.400000pt;}
.w22{width:209.040000pt;}
.w26{width:216.800000pt;}
.w28{width:219.200000pt;}
.w25{width:225.146667pt;}
.w18{width:225.226667pt;}
.w1c{width:232.400000pt;}
.w1d{width:234.666667pt;}
.wf{width:236.426667pt;}
.w2a{width:240.426667pt;}
.wb{width:240.986667pt;}
.w23{width:244.106667pt;}
.w20{width:245.440000pt;}
.w11{width:246.400000pt;}
.w1a{width:246.720000pt;}
.w1b{width:247.386667pt;}
.w17{width:250.400000pt;}
.w15{width:250.426667pt;}
.w3{width:252.826667pt;}
.w24{width:254.400000pt;}
.w16{width:256.346667pt;}
.w6{width:256.426667pt;}
.w12{width:259.226667pt;}
.w21{width:260.506667pt;}
.w13{width:260.826667pt;}
.w19{width:265.360000pt;}
.w5{width:268.426667pt;}
.wd{width:270.426667pt;}
.w14{width:272.426667pt;}
.w10{width:278.426667pt;}
.w27{width:284.906667pt;}
.we{width:286.426667pt;}
.w4{width:297.626667pt;}
.w8{width:298.426667pt;}
.w7{width:304.426667pt;}
.wa{width:332.506667pt;}
.w9{width:340.506667pt;}
.wc{width:340.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:7.200000pt;}
.x74{left:9.200000pt;}
.x64{left:14.640000pt;}
.x58{left:16.000000pt;}
.x55{left:19.600000pt;}
.x67{left:22.960000pt;}
.x47{left:24.186667pt;}
.x5d{left:28.800000pt;}
.x43{left:30.240000pt;}
.x4b{left:33.306667pt;}
.x3d{left:35.306667pt;}
.x30{left:36.320000pt;}
.x42{left:39.520000pt;}
.x48{left:40.480000pt;}
.x1a{left:44.586667pt;}
.x63{left:45.520000pt;}
.x20{left:46.986667pt;}
.x36{left:51.866667pt;}
.x21{left:54.266667pt;}
.x29{left:55.626667pt;}
.x1{left:60.480000pt;}
.x24{left:63.466667pt;}
.x31{left:65.600000pt;}
.x1b{left:71.760000pt;}
.x28{left:80.160000pt;}
.x12{left:84.479988pt;}
.x6{left:88.479988pt;}
.x22{left:95.600000pt;}
.x7b{left:98.879988pt;}
.x2c{left:106.080000pt;}
.x13{left:108.479988pt;}
.x32{left:118.560000pt;}
.x16{left:121.760000pt;}
.x44{left:130.400000pt;}
.x1c{left:134.560000pt;}
.x39{left:139.600000pt;}
.x3e{left:144.186667pt;}
.x52{left:146.106667pt;}
.x56{left:149.946667pt;}
.x68{left:157.226667pt;}
.x4f{left:159.226667pt;}
.x59{left:163.466667pt;}
.x2{left:171.306655pt;}
.x61{left:176.586667pt;}
.x71{left:187.226667pt;}
.x73{left:193.226667pt;}
.x5f{left:197.200000pt;}
.x51{left:201.066667pt;}
.x5e{left:202.346667pt;}
.x6d{left:208.400000pt;}
.x72{left:212.000000pt;}
.x6a{left:215.546667pt;}
.x57{left:217.226667pt;}
.x70{left:220.506655pt;}
.x38{left:222.106655pt;}
.x5a{left:225.200000pt;}
.x66{left:226.346667pt;}
.x5c{left:227.386667pt;}
.x3a{left:229.226667pt;}
.x15{left:231.386655pt;}
.x2d{left:233.786667pt;}
.x6c{left:235.706655pt;}
.x62{left:238.160000pt;}
.x3f{left:239.200000pt;}
.x49{left:243.226667pt;}
.x17{left:245.626667pt;}
.x69{left:247.200000pt;}
.x1f{left:249.226667pt;}
.x41{left:252.026667pt;}
.x45{left:253.626667pt;}
.x53{left:258.080000pt;}
.x1d{left:261.226667pt;}
.x33{left:263.226667pt;}
.x46{left:265.226667pt;}
.x3c{left:271.226667pt;}
.x4e{left:277.706655pt;}
.x35{left:279.226667pt;}
.xf{left:287.786655pt;}
.x19{left:290.426667pt;}
.xc{left:292.506655pt;}
.x5{left:298.026655pt;}
.x77{left:300.026655pt;}
.x79{left:304.106655pt;}
.x2b{left:313.386655pt;}
.x27{left:327.226667pt;}
.x11{left:329.626655pt;}
.xa{left:332.506655pt;}
.x2f{left:333.626667pt;}
.x25{left:335.226667pt;}
.x8{left:342.746655pt;}
.x2e{left:347.066667pt;}
.x6e{left:362.986667pt;}
.x18{left:374.586667pt;}
.x3b{left:376.026667pt;}
.x65{left:379.466667pt;}
.x34{left:388.986667pt;}
.x40{left:390.586667pt;}
.x4a{left:394.026667pt;}
.x5b{left:395.866667pt;}
.xd{left:396.986655pt;}
.x23{left:400.026667pt;}
.x26{left:400.986667pt;}
.x1e{left:402.986667pt;}
.x75{left:404.026667pt;}
.x60{left:406.746667pt;}
.x50{left:409.626667pt;}
.x54{left:411.466667pt;}
.x9{left:530.053322pt;}
.x7{left:545.013322pt;}
.x6b{left:561.013322pt;}
.x6f{left:565.013322pt;}
.xb{left:567.013322pt;}
.x7a{left:578.053322pt;}
.x4d{left:583.013322pt;}
.x2a{left:595.013322pt;}
.x78{left:598.053322pt;}
.x4{left:608.053322pt;}
.x37{left:618.053322pt;}
.x76{left:637.013322pt;}
.x14{left:659.013322pt;}
.x10{left:699.413322pt;}
.x3{left:718.773322pt;}
.xe{left:731.013322pt;}
}




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