
    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_81dab72223fb9b28d084d0f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.680176;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_09200509d03bdb2509fb79b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_f1c888fbd8e6314e4f6052c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.147000;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_9cf0130c85c37e9d8574787d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.131000;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_4129993b9a9e79d0fb53c628.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123000;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_412e9a0901217f3cda6f5123.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_634ca7e5d41b70f35ce17b6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ad30b7281519e3d0852b8198.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_a38d5dfdcbf407bde47eab6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_8cec317d2ac9706c99d1aab3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.030000;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_7cf36c097201fe8c7e1e5d99.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);-ms-transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);-webkit-transform:matrix(0.236425,0.000000,-0.080863,0.236561,0,0);}
.m6{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.298800px;}
.ls5{letter-spacing:1.966924px;}
.ls4{letter-spacing:71.343921px;}
.ls2{letter-spacing:76.443199px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws26{word-spacing:-17.230918px;}
.ws2{word-spacing:-17.016480px;}
.ws4{word-spacing:-15.264000px;}
.ws25{word-spacing:-15.263994px;}
.ws1b{word-spacing:-14.544000px;}
.ws6{word-spacing:-12.967920px;}
.ws23{word-spacing:-12.669120px;}
.ws8{word-spacing:-8.853120px;}
.ws22{word-spacing:-8.435520px;}
.ws9{word-spacing:-7.632000px;}
.wsa{word-spacing:-0.078516px;}
.ws1{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:0.052601px;}
.ws5{word-spacing:0.132028px;}
.ws1c{word-spacing:0.981373px;}
.ws15{word-spacing:1.052173px;}
.ws12{word-spacing:1.200454px;}
.ws1e{word-spacing:4.063133px;}
.wsf{word-spacing:4.166688px;}
.ws10{word-spacing:4.584571px;}
.ws1d{word-spacing:4.724273px;}
.ws14{word-spacing:6.746086px;}
.wsc{word-spacing:7.046489px;}
.wsb{word-spacing:7.463467px;}
.ws11{word-spacing:7.809929px;}
.ws17{word-spacing:8.057183px;}
.ws21{word-spacing:8.250950px;}
.ws1f{word-spacing:8.392208px;}
.wsd{word-spacing:8.459931px;}
.wse{word-spacing:8.769022px;}
.ws18{word-spacing:9.422311px;}
.ws20{word-spacing:9.776333px;}
.ws19{word-spacing:10.344372px;}
.ws1a{word-spacing:10.411773px;}
.ws7{word-spacing:11.010910px;}
.ws16{word-spacing:13.748638px;}
.ws13{word-spacing:14.140086px;}
.ws3{word-spacing:91.500841px;}
._28{margin-left:-577.152248px;}
._2a{margin-left:-154.170786px;}
._29{margin-left:-20.663128px;}
._1e{margin-left:-5.832000px;}
._1d{margin-left:-3.384000px;}
._1{margin-left:-1.684800px;}
._3{width:1.365656px;}
._7{width:3.244517px;}
._17{width:4.470685px;}
._4{width:5.601894px;}
._9{width:6.984000px;}
._6{width:8.652350px;}
._5{width:9.729269px;}
._8{width:11.524973px;}
._15{width:13.217907px;}
._0{width:14.221660px;}
._1f{width:15.433123px;}
._11{width:16.624310px;}
._f{width:17.856000px;}
._c{width:18.901415px;}
._e{width:20.153255px;}
._b{width:21.595572px;}
._a{width:23.105868px;}
._d{width:24.692973px;}
._18{width:26.124190px;}
._19{width:27.238142px;}
._14{width:29.196014px;}
._13{width:30.765291px;}
._20{width:31.937198px;}
._10{width:32.952992px;}
._12{width:33.985760px;}
._1c{width:35.361148px;}
._25{width:37.971102px;}
._22{width:38.972631px;}
._1b{width:40.305399px;}
._21{width:44.459918px;}
._1a{width:47.792042px;}
._16{width:57.070683px;}
._24{width:58.203812px;}
._23{width:73.919758px;}
._2{width:106.908841px;}
._26{width:109.868989px;}
._27{width:117.587129px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:17.999993px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fsc{font-size:48.239981px;}
.fsa{font-size:53.999978px;}
.fsb{font-size:57.067680px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:61.242246px;}
.fs0{font-size:66.240000px;}
.fse{font-size:71.999971px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:78.515700px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs9{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000029px;}
.y191{bottom:3.059048px;}
.y19a{bottom:3.059092px;}
.y1d5{bottom:3.059309px;}
.y185{bottom:3.418984px;}
.y18c{bottom:3.419017px;}
.y1c1{bottom:4.499209px;}
.y8b{bottom:16.559981px;}
.y89{bottom:16.559996px;}
.y29{bottom:16.559998px;}
.y83{bottom:16.560003px;}
.y87{bottom:16.560004px;}
.y85{bottom:16.560020px;}
.yc0{bottom:24.687887px;}
.y28{bottom:48.959995px;}
.y6{bottom:75.059995px;}
.y27{bottom:81.539997px;}
.y9b{bottom:113.039996px;}
.y26{bottom:113.940006px;}
.y59{bottom:122.039996px;}
.ye2{bottom:124.740000px;}
.y7b{bottom:127.980022px;}
.y9a{bottom:132.479994px;}
.y58{bottom:141.479994px;}
.y16{bottom:143.460026px;}
.y25{bottom:146.339992px;}
.y1db{bottom:147.000241px;}
.y57{bottom:147.420021px;}
.ye1{bottom:148.320001px;}
.y7a{bottom:150.479994px;}
.y99{bottom:152.099997px;}
.y79{bottom:156.420021px;}
.yb8{bottom:161.099997px;}
.y11a{bottom:161.639997px;}
.y13c{bottom:167.040024px;}
.y1da{bottom:167.339933px;}
.y1d9{bottom:167.699933px;}
.y119{bottom:169.200027px;}
.y56{bottom:170.099997px;}
.y98{bottom:171.539996px;}
.ye0{bottom:171.899992px;}
.y97{bottom:177.480022px;}
.y24{bottom:178.740002px;}
.yb7{bottom:180.539996px;}
.yfe{bottom:185.220000px;}
.yb6{bottom:186.480022px;}
.y1d8{bottom:186.779925px;}
.y55{bottom:189.539996px;}
.ybb{bottom:191.519995px;}
.y118{bottom:192.959994px;}
.ydf{bottom:195.299989px;}
.y143{bottom:195.480006px;}
.y96{bottom:199.980006px;}
.y1d7{bottom:200.459920px;}
.y95{bottom:205.920021px;}
.ybe{bottom:207.236577px;}
.yfd{bottom:208.619997px;}
.y54{bottom:208.980006px;}
.y23{bottom:211.139988px;}
.y77{bottom:212.039996px;}
.y117{bottom:212.400003px;}
.y1d6{bottom:214.319914px;}
.y138{bottom:214.559985px;}
.y156{bottom:219.599985px;}
.y78{bottom:219.600014px;}
.y1d4{bottom:224.940600px;}
.ybd{bottom:225.295171px;}
.y155{bottom:225.540024px;}
.yde{bottom:227.699999px;}
.y53{bottom:228.599985px;}
.yfc{bottom:232.019983px;}
.ybc{bottom:232.200022px;}
.y76{bottom:235.440005px;}
.y137{bottom:237.959994px;}
.y1d3{bottom:241.859903px;}
.y22{bottom:243.539974px;}
.y52{bottom:248.039996px;}
.ydd{bottom:251.099985px;}
.y116{bottom:251.459994px;}
.y1d2{bottom:255.359898px;}
.yfb{bottom:255.419992px;}
.y136{bottom:261.360003px;}
.y51{bottom:267.659999px;}
.y1d1{bottom:268.859892px;}
.y115{bottom:270.900003px;}
.yb5{bottom:273.600014px;}
.ydc{bottom:274.499994px;}
.y21{bottom:275.939984px;}
.yfa{bottom:278.820002px;}
.y94{bottom:281.339991px;}
.y1d0{bottom:282.539887px;}
.y135{bottom:284.940005px;}
.y50{bottom:287.099985px;}
.y74{bottom:288.360003px;}
.y114{bottom:290.519984px;}
.y75{bottom:295.920021px;}
.y1cf{bottom:296.039882px;}
.yb4{bottom:296.099985px;}
.ydb{bottom:298.079996px;}
.yf9{bottom:302.219988px;}
.y92{bottom:304.740000px;}
.y4f{bottom:306.539996px;}
.y20{bottom:308.339992px;}
.y1ce{bottom:309.719876px;}
.y113{bottom:309.959994px;}
.y93{bottom:312.300018px;}
.yb3{bottom:315.539996px;}
.y112{bottom:315.900032px;}
.y181{bottom:317.699999px;}
.y1cd{bottom:323.219871px;}
.yf8{bottom:325.799989px;}
.y4e{bottom:326.159999px;}
.yda{bottom:330.659999px;}
.y4d{bottom:332.100014px;}
.y153{bottom:333.719988px;}
.y1cc{bottom:336.719865px;}
.y91{bottom:337.320002px;}
.y1f{bottom:340.740001px;}
.y154{bottom:341.280030px;}
.y134{bottom:349.740000px;}
.y180{bottom:350.099985px;}
.y1cb{bottom:350.399860px;}
.yd9{bottom:354.059985px;}
.y4c{bottom:354.599985px;}
.y152{bottom:357.119997px;}
.yf7{bottom:358.379991px;}
.y4b{bottom:360.540024px;}
.y90{bottom:360.899981px;}
.y1ca{bottom:363.899854px;}
.y133{bottom:373.139987px;}
.y1e{bottom:373.140010px;}
.y1c9{bottom:377.579849px;}
.yd8{bottom:377.639987px;}
.y151{bottom:380.519984px;}
.y17f{bottom:383.759990px;}
.y8f{bottom:384.299989px;}
.y1c8{bottom:391.079844px;}
.yf6{bottom:393.119997px;}
.ybf{bottom:393.711050px;}
.y132{bottom:396.539995px;}
.y111{bottom:397.079973px;}
.yd7{bottom:401.039995px;}
.y150{bottom:403.919970px;}
.y1c7{bottom:404.579838px;}
.y1d{bottom:405.539974px;}
.y8e{bottom:407.699998px;}
.y4a{bottom:408.600007px;}
.y1c6{bottom:418.259833px;}
.y131{bottom:419.940004px;}
.y110{bottom:420.659974px;}
.y167{bottom:422.999972px;}
.yd6{bottom:424.440004px;}
.yf5{bottom:427.680010px;}
.y8d{bottom:431.100007px;}
.y1c5{bottom:431.759827px;}
.y49{bottom:431.999972px;}
.y14f{bottom:436.319979px;}
.y1c{bottom:437.939983px;}
.y130{bottom:443.339969px;}
.y10f{bottom:444.059985px;}
.y1c4{bottom:445.439822px;}
.y166{bottom:446.399981px;}
.yd5{bottom:448.020006px;}
.y17e{bottom:451.260012px;}
.y48{bottom:455.399981px;}
.y1c3{bottom:458.939816px;}
.y14e{bottom:459.719988px;}
.yf4{bottom:462.419970px;}
.y12f{bottom:466.739978px;}
.y165{bottom:469.799989px;}
.y1b{bottom:470.339992px;}
.y1c2{bottom:470.459812px;}
.y1c0{bottom:473.340600px;}
.y17d{bottom:474.659974px;}
.y10e{bottom:476.819979px;}
.y1bf{bottom:477.839809px;}
.y46{bottom:478.799989px;}
.y14d{bottom:483.119997px;}
.y8c{bottom:484.020006px;}
.y47{bottom:486.360031px;}
.y12e{bottom:490.139986px;}
.y164{bottom:493.199998px;}
.y1be{bottom:498.899800px;}
.y10d{bottom:500.579973px;}
.y45{bottom:502.199998px;}
.y1a{bottom:502.740001px;}
.yd4{bottom:503.999972px;}
.y14c{bottom:506.699998px;}
.y17c{bottom:507.059985px;}
.y12d{bottom:513.539995px;}
.y163{bottom:516.780002px;}
.y1bd{bottom:517.979793px;}
.yf3{bottom:527.399980px;}
.y142{bottom:529.919970px;}
.y14b{bottom:530.100007px;}
.y1bc{bottom:531.479787px;}
.y44{bottom:534.780002px;}
.y19{bottom:535.139966px;}
.y12c{bottom:536.940004px;}
.yd3{bottom:538.739978px;}
.y8a{bottom:539.280016px;}
.y17b{bottom:539.459994px;}
.y1ab{bottom:539.759784px;}
.y162{bottom:540.180010px;}
.y1bb{bottom:545.159782px;}
.yf2{bottom:550.799989px;}
.y141{bottom:553.319979px;}
.y14a{bottom:553.499972px;}
.yb2{bottom:556.559985px;}
.y43{bottom:558.180010px;}
.y1ba{bottom:558.659777px;}
.y1aa{bottom:558.839776px;}
.y12b{bottom:560.339969px;}
.y17a{bottom:562.860003px;}
.y161{bottom:563.579973px;}
.y10c{bottom:565.559985px;}
.y18{bottom:567.719967px;}
.y1b9{bottom:572.159771px;}
.y1a9{bottom:572.339771px;}
.yd2{bottom:573.299989px;}
.yf1{bottom:574.379991px;}
.y140{bottom:576.899980px;}
.yb1{bottom:579.959994px;}
.y42{bottom:581.579973px;}
.y88{bottom:583.920015px;}
.y1b8{bottom:585.839766px;}
.y1a8{bottom:586.019766px;}
.y179{bottom:586.259966px;}
.y10b{bottom:588.959994px;}
.y12a{bottom:592.739978px;}
.y160{bottom:595.979982px;}
.yf0{bottom:597.780002px;}
.y1b7{bottom:599.339760px;}
.y1a7{bottom:599.519760px;}
.y17{bottom:600.119976px;}
.y149{bottom:600.299989px;}
.y41{bottom:604.979982px;}
.yd1{bottom:608.039995px;}
.yb0{bottom:612.539995px;}
.y1a6{bottom:613.019755px;}
.y129{bottom:616.139986px;}
.y178{bottom:618.659974px;}
.y15f{bottom:619.379991px;}
.y10a{bottom:620.100036px;}
.yef{bottom:621.179964px;}
.y148{bottom:623.699998px;}
.y1b6{bottom:626.519749px;}
.y1a5{bottom:626.699749px;}
.y40{bottom:628.379991px;}
.y86{bottom:628.740014px;}
.y13e{bottom:629.639986px;}
.yaf{bottom:635.940004px;}
.y13f{bottom:637.200027px;}
.y128{bottom:639.539995px;}
.y1b5{bottom:640.019744px;}
.y1a4{bottom:640.199744px;}
.y177{bottom:642.059985px;}
.yd0{bottom:642.600007px;}
.y15e{bottom:642.780002px;}
.yee{bottom:644.579973px;}
.y147{bottom:647.100007px;}
.y3f{bottom:651.780002px;}
.y1b4{bottom:653.699739px;}
.y1a3{bottom:653.879738px;}
.y108{bottom:659.339969px;}
.y127{bottom:663.119997px;}
.y4{bottom:663.945000px;}
.y176{bottom:665.459994px;}
.y15d{bottom:666.179964px;}
.y109{bottom:666.900009px;}
.y1b3{bottom:667.199733px;}
.y1a2{bottom:667.379733px;}
.yed{bottom:667.979982px;}
.yae{bottom:668.339969px;}
.y6e{bottom:668.879991px;}
.y84{bottom:673.380013px;}
.ycf{bottom:677.339969px;}
.y1a1{bottom:680.879728px;}
.y107{bottom:682.739978px;}
.y3d{bottom:684.179964px;}
.y126{bottom:686.879991px;}
.yec{bottom:691.379991px;}
.yad{bottom:691.739978px;}
.y3e{bottom:691.740006px;}
.y6d{bottom:692.280002px;}
.y1b2{bottom:694.379722px;}
.y1a0{bottom:694.559722px;}
.y175{bottom:697.860003px;}
.y15c{bottom:698.579973px;}
.y146{bottom:700.020006px;}
.y3{bottom:702.105000px;}
.y106{bottom:706.139986px;}
.y3c{bottom:707.579973px;}
.y1b1{bottom:707.879717px;}
.y19f{bottom:708.059717px;}
.yce{bottom:711.899980px;}
.yeb{bottom:714.780002px;}
.yac{bottom:715.139986px;}
.y6c{bottom:715.679964px;}
.y82{bottom:721.080012px;}
.y174{bottom:721.259966px;}
.y1b0{bottom:721.559711px;}
.y19e{bottom:721.739711px;}
.y15b{bottom:721.979982px;}
.y3b{bottom:730.979982px;}
.y1af{bottom:735.059706px;}
.y19d{bottom:735.239706px;}
.ycd{bottom:735.479982px;}
.yea{bottom:738.360003px;}
.yab{bottom:738.539995px;}
.y6b{bottom:739.259966px;}
.y2{bottom:740.265000px;}
.y173{bottom:744.659974px;}
.y15a{bottom:745.379991px;}
.y1ae{bottom:746.759701px;}
.y19c{bottom:746.939701px;}
.y125{bottom:751.860003px;}
.y1ad{bottom:754.139698px;}
.y19b{bottom:754.319698px;}
.y3a{bottom:754.379991px;}
.y13a{bottom:757.979982px;}
.yaa{bottom:761.940004px;}
.y6a{bottom:762.659974px;}
.y13b{bottom:765.540024px;}
.y1ac{bottom:766.200600px;}
.y199{bottom:766.380600px;}
.y159{bottom:768.780001px;}
.ye9{bottom:770.940004px;}
.y124{bottom:775.260012px;}
.y15{bottom:777.240023px;}
.y39{bottom:777.780001px;}
.y172{bottom:778.499972px;}
.y139{bottom:778.679964px;}
.y198{bottom:782.939687px;}
.ya9{bottom:785.339968px;}
.y69{bottom:786.059939px;}
.ye8{bottom:794.339968px;}
.y197{bottom:796.619681px;}
.y123{bottom:798.839968px;}
.ycc{bottom:800.459994px;}
.yba{bottom:801.179964px;}
.y105{bottom:808.740023px;}
.y68{bottom:809.459994px;}
.y196{bottom:810.119676px;}
.y38{bottom:810.179964px;}
.ya8{bottom:817.740023px;}
.y122{bottom:822.240023px;}
.ycb{bottom:823.859957px;}
.y195{bottom:824.159670px;}
.y73{bottom:824.580020px;}
.y104{bottom:832.139986px;}
.y81{bottom:832.859957px;}
.y37{bottom:833.580020px;}
.y194{bottom:839.459664px;}
.ya7{bottom:841.139986px;}
.y67{bottom:841.859957px;}
.y121{bottom:845.639986px;}
.yca{bottom:847.260012px;}
.y72{bottom:847.979982px;}
.y157{bottom:849.420044px;}
.y193{bottom:852.959659px;}
.y103{bottom:855.719942px;}
.y36{bottom:856.979982px;}
.y171{bottom:860.219942px;}
.ya6{bottom:864.539949px;}
.y66{bottom:865.260012px;}
.y192{bottom:866.639653px;}
.y71{bottom:871.379946px;}
.y190{bottom:877.080600px;}
.y120{bottom:878.039949px;}
.yc9{bottom:879.659974px;}
.y35{bottom:880.379946px;}
.y170{bottom:883.619997px;}
.ya5{bottom:887.940004px;}
.y102{bottom:888.299990px;}
.y65{bottom:888.659974px;}
.y18f{bottom:893.999642px;}
.y70{bottom:894.959994px;}
.y80{bottom:897.659974px;}
.y11f{bottom:901.619997px;}
.yc8{bottom:903.059939px;}
.y34{bottom:903.959994px;}
.y16f{bottom:907.199954px;}
.ya4{bottom:911.339968px;}
.y101{bottom:911.699954px;}
.y64{bottom:912.059939px;}
.y18e{bottom:918.119633px;}
.y14{bottom:921.059939px;}
.y11e{bottom:925.379946px;}
.yc7{bottom:926.459994px;}
.y33{bottom:927.359957px;}
.ya2{bottom:934.740023px;}
.y100{bottom:935.100007px;}
.y16e{bottom:939.780001px;}
.yd{bottom:941.940004px;}
.ya3{bottom:942.300018px;}
.y18d{bottom:942.419623px;}
.y63{bottom:944.459994px;}
.y11d{bottom:948.959994px;}
.yc6{bottom:949.859957px;}
.y31{bottom:950.760012px;}
.y13{bottom:951.479982px;}
.y18b{bottom:954.120600px;}
.y18a{bottom:957.539617px;}
.ye7{bottom:958.139986px;}
.ya1{bottom:958.319979px;}
.y32{bottom:958.320007px;}
.yff{bottom:958.499972px;}
.y16d{bottom:963.179964px;}
.y62{bottom:967.859957px;}
.y11c{bottom:972.719942px;}
.y30{bottom:974.159974px;}
.yc{bottom:974.339968px;}
.y189{bottom:975.539610px;}
.ye6{bottom:981.719942px;}
.y12{bottom:982.080020px;}
.yc5{bottom:982.260012px;}
.y16c{bottom:986.760012px;}
.ya0{bottom:990.899936px;}
.y61{bottom:991.260012px;}
.y188{bottom:994.079602px;}
.y11b{bottom:996.299990px;}
.y2f{bottom:997.559939px;}
.y7f{bottom:1000.260012px;}
.ye5{bottom:1005.119997px;}
.yc4{bottom:1005.659974px;}
.y158{bottom:1006.559939px;}
.yb{bottom:1006.740023px;}
.y11{bottom:1012.679964px;}
.y9f{bottom:1014.299990px;}
.y60{bottom:1014.659974px;}
.y16b{bottom:1019.339968px;}
.y13d{bottom:1020.959994px;}
.y187{bottom:1021.079592px;}
.y7e{bottom:1023.659974px;}
.yc3{bottom:1029.059939px;}
.y2e{bottom:1029.959994px;}
.y184{bottom:1035.660600px;}
.y6f{bottom:1037.519990px;}
.y9e{bottom:1037.699953px;}
.y5f{bottom:1038.059939px;}
.y186{bottom:1039.079584px;}
.ya{bottom:1039.319979px;}
.y16a{bottom:1042.739931px;}
.y10{bottom:1043.100007px;}
.y7d{bottom:1047.059939px;}
.yc2{bottom:1052.459994px;}
.y2d{bottom:1053.359956px;}
.y9c{bottom:1061.280001px;}
.y5e{bottom:1061.459994px;}
.y183{bottom:1066.259573px;}
.y169{bottom:1066.319979px;}
.y9d{bottom:1068.839997px;}
.y7c{bottom:1070.459994px;}
.y9{bottom:1071.719942px;}
.yf{bottom:1073.699953px;}
.yc1{bottom:1075.859956px;}
.y2c{bottom:1076.760012px;}
.yb9{bottom:1084.320007px;}
.ye4{bottom:1084.679964px;}
.y145{bottom:1084.859956px;}
.y5c{bottom:1093.859956px;}
.y2b{bottom:1100.159974px;}
.y182{bottom:1100.279560px;}
.y168{bottom:1100.339968px;}
.y5d{bottom:1101.420044px;}
.y8{bottom:1104.119997px;}
.ye{bottom:1104.299989px;}
.y144{bottom:1108.440004px;}
.y5b{bottom:1117.440004px;}
.y1{bottom:1119.030000px;}
.ye3{bottom:1125.000000px;}
.y2a{bottom:1135.260012px;}
.y7{bottom:1137.959994px;}
.y5a{bottom:1140.839968px;}
.h1c{height:12.977995px;}
.h19{height:13.500000px;}
.h1e{height:13.680000px;}
.h18{height:15.120000px;}
.h1f{height:16.560000px;}
.ha{height:31.716000px;}
.hf{height:32.399999px;}
.he{height:32.400000px;}
.h1a{height:34.781026px;}
.h9{height:36.790560px;}
.hd{height:37.458720px;}
.h1b{height:38.933984px;}
.h17{height:41.145797px;}
.h16{height:44.333982px;}
.h2{height:44.440312px;}
.h1d{height:51.911979px;}
.hb{height:52.648560px;}
.h6{height:63.432000px;}
.h11{height:63.873749px;}
.hc{height:64.584000px;}
.h13{height:66.691406px;}
.h20{height:70.664034px;}
.h4{height:70.678080px;}
.h14{height:74.215440px;}
.h5{height:75.563280px;}
.h15{height:77.867969px;}
.h12{height:81.889421px;}
.h8{height:85.896720px;}
.h10{height:432.179991px;}
.h7{height:615.959986px;}
.h3{height:1262.879971px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:6.120000px;}
.wd{width:6.480000px;}
.wb{width:7.560000px;}
.we{width:9.720000px;}
.w3{width:93.239997px;}
.wa{width:126.900000px;}
.w9{width:269.640000px;}
.w6{width:285.839992px;}
.w5{width:370.799993px;}
.w7{width:607.679987px;}
.w4{width:612.359987px;}
.w8{width:892.500000px;}
.w2{width:892.979981px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.099994px;}
.x16{left:10.079996px;}
.x3{left:98.099999px;}
.x2{left:106.199993px;}
.x33{left:109.259994px;}
.x32{left:112.140003px;}
.xb{left:114.120003px;}
.xe{left:116.100003px;}
.x3f{left:117.359953px;}
.xc{left:119.520000px;}
.x2b{left:121.139993px;}
.x2c{left:124.199993px;}
.x30{left:126.540001px;}
.x15{left:127.619997px;}
.x1{left:129.276000px;}
.x24{left:133.199993px;}
.x8{left:134.819995px;}
.x1d{left:167.399997px;}
.x1e{left:178.199993px;}
.x5{left:191.339995px;}
.x2d{left:194.759994px;}
.x21{left:198.000000px;}
.x11{left:214.379997px;}
.x18{left:219.419998px;}
.x22{left:258.319284px;}
.x23{left:262.637781px;}
.x40{left:267.839854px;}
.x3e{left:306.540000px;}
.x3b{left:314.099874px;}
.x13{left:315.719994px;}
.x14{left:321.120003px;}
.x2e{left:328.500000px;}
.x3a{left:386.639845px;}
.xd{left:417.779984px;}
.x3d{left:462.420000px;}
.x34{left:467.639969px;}
.x35{left:482.219970px;}
.x17{left:500.039990px;}
.x38{left:509.399796px;}
.x1f{left:541.979965px;}
.x2f{left:552.779984px;}
.x20{left:559.259994px;}
.xf{left:638.279984px;}
.x6{left:643.320007px;}
.x10{left:647.459976px;}
.x7{left:648.719970px;}
.x39{left:664.199734px;}
.x29{left:671.219970px;}
.x12{left:672.660003px;}
.x3c{left:680.940000px;}
.x2a{left:682.019990px;}
.x27{left:710.819961px;}
.x25{left:714.419999px;}
.x28{left:721.619980px;}
.x26{left:725.219970px;}
.x9{left:726.299973px;}
.xa{left:735.839997px;}
.x19{left:745.740006px;}
.x1a{left:751.139969px;}
.x31{left:755.459976px;}
.x36{left:769.140015px;}
.x1b{left:777.419952px;}
.x37{left:779.939941px;}
.x1c{left:782.820007px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls5{letter-spacing:1.748377pt;}
.ls4{letter-spacing:63.416819pt;}
.ls2{letter-spacing:67.949510pt;}
.ws26{word-spacing:-15.316371pt;}
.ws2{word-spacing:-15.125760pt;}
.ws4{word-spacing:-13.568000pt;}
.ws25{word-spacing:-13.567995pt;}
.ws1b{word-spacing:-12.928000pt;}
.ws6{word-spacing:-11.527040pt;}
.ws23{word-spacing:-11.261440pt;}
.ws8{word-spacing:-7.869440pt;}
.ws22{word-spacing:-7.498240pt;}
.ws9{word-spacing:-6.784000pt;}
.wsa{word-spacing:-0.069792pt;}
.ws1{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:0.046756pt;}
.ws5{word-spacing:0.117358pt;}
.ws1c{word-spacing:0.872332pt;}
.ws15{word-spacing:0.935265pt;}
.ws12{word-spacing:1.067070pt;}
.ws1e{word-spacing:3.611674pt;}
.wsf{word-spacing:3.703723pt;}
.ws10{word-spacing:4.075175pt;}
.ws1d{word-spacing:4.199354pt;}
.ws14{word-spacing:5.996521pt;}
.wsc{word-spacing:6.263546pt;}
.wsb{word-spacing:6.634193pt;}
.ws11{word-spacing:6.942159pt;}
.ws17{word-spacing:7.161940pt;}
.ws21{word-spacing:7.334178pt;}
.ws1f{word-spacing:7.459740pt;}
.wsd{word-spacing:7.519939pt;}
.wse{word-spacing:7.794687pt;}
.ws18{word-spacing:8.375388pt;}
.ws20{word-spacing:8.690074pt;}
.ws19{word-spacing:9.194997pt;}
.ws1a{word-spacing:9.254909pt;}
.ws7{word-spacing:9.787476pt;}
.ws16{word-spacing:12.221012pt;}
.ws13{word-spacing:12.568965pt;}
.ws3{word-spacing:81.334081pt;}
._28{margin-left:-513.024220pt;}
._2a{margin-left:-137.040698pt;}
._29{margin-left:-18.367225pt;}
._1e{margin-left:-5.184000pt;}
._1d{margin-left:-3.008000pt;}
._1{margin-left:-1.497600pt;}
._3{width:1.213916pt;}
._7{width:2.884015pt;}
._17{width:3.973943pt;}
._4{width:4.979461pt;}
._9{width:6.208000pt;}
._6{width:7.690977pt;}
._5{width:8.648239pt;}
._8{width:10.244420pt;}
._15{width:11.749251pt;}
._0{width:12.641475pt;}
._1f{width:13.718332pt;}
._11{width:14.777164pt;}
._f{width:15.872000pt;}
._c{width:16.801258pt;}
._e{width:17.914005pt;}
._b{width:19.196064pt;}
._a{width:20.538550pt;}
._d{width:21.949309pt;}
._18{width:23.221503pt;}
._19{width:24.211682pt;}
._14{width:25.952013pt;}
._13{width:27.346925pt;}
._20{width:28.388621pt;}
._10{width:29.291548pt;}
._12{width:30.209564pt;}
._1c{width:31.432131pt;}
._25{width:33.752091pt;}
._22{width:34.642339pt;}
._1b{width:35.827022pt;}
._21{width:39.519927pt;}
._1a{width:42.481815pt;}
._16{width:50.729496pt;}
._24{width:51.736722pt;}
._23{width:65.706452pt;}
._2{width:95.030081pt;}
._26{width:97.661323pt;}
._27{width:104.521893pt;}
.fsd{font-size:15.999994pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fsc{font-size:42.879983pt;}
.fsa{font-size:47.999981pt;}
.fsb{font-size:50.726827pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:54.437552pt;}
.fs0{font-size:58.880000pt;}
.fse{font-size:63.999974pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:69.791733pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs9{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000025pt;}
.y191{bottom:2.719154pt;}
.y19a{bottom:2.719193pt;}
.y1d5{bottom:2.719386pt;}
.y185{bottom:3.039097pt;}
.y18c{bottom:3.039126pt;}
.y1c1{bottom:3.999297pt;}
.y8b{bottom:14.719983pt;}
.y89{bottom:14.719996pt;}
.y29{bottom:14.719999pt;}
.y83{bottom:14.720003pt;}
.y87{bottom:14.720004pt;}
.y85{bottom:14.720017pt;}
.yc0{bottom:21.944788pt;}
.y28{bottom:43.519996pt;}
.y6{bottom:66.719996pt;}
.y27{bottom:72.479997pt;}
.y9b{bottom:100.479996pt;}
.y26{bottom:101.280005pt;}
.y59{bottom:108.479996pt;}
.ye2{bottom:110.880000pt;}
.y7b{bottom:113.760020pt;}
.y9a{bottom:117.759995pt;}
.y58{bottom:125.759995pt;}
.y16{bottom:127.520023pt;}
.y25{bottom:130.079993pt;}
.y1db{bottom:130.666881pt;}
.y57{bottom:131.040019pt;}
.ye1{bottom:131.840001pt;}
.y7a{bottom:133.759995pt;}
.y99{bottom:135.199997pt;}
.y79{bottom:139.040019pt;}
.yb8{bottom:143.199997pt;}
.y11a{bottom:143.679997pt;}
.y13c{bottom:148.480021pt;}
.y1da{bottom:148.746607pt;}
.y1d9{bottom:149.066607pt;}
.y119{bottom:150.400024pt;}
.y56{bottom:151.199997pt;}
.y98{bottom:152.479996pt;}
.ye0{bottom:152.799993pt;}
.y97{bottom:157.760020pt;}
.y24{bottom:158.880001pt;}
.yb7{bottom:160.479996pt;}
.yfe{bottom:164.640000pt;}
.yb6{bottom:165.760020pt;}
.y1d8{bottom:166.026600pt;}
.y55{bottom:168.479996pt;}
.ybb{bottom:170.239996pt;}
.y118{bottom:171.519995pt;}
.ydf{bottom:173.599991pt;}
.y143{bottom:173.760005pt;}
.y96{bottom:177.760005pt;}
.y1d7{bottom:178.186595pt;}
.y95{bottom:183.040019pt;}
.ybe{bottom:184.210291pt;}
.yfd{bottom:185.439997pt;}
.y54{bottom:185.760005pt;}
.y23{bottom:187.679989pt;}
.y77{bottom:188.479996pt;}
.y117{bottom:188.800003pt;}
.y1d6{bottom:190.506590pt;}
.y138{bottom:190.719987pt;}
.y156{bottom:195.199987pt;}
.y78{bottom:195.200012pt;}
.y1d4{bottom:199.947200pt;}
.ybd{bottom:200.262375pt;}
.y155{bottom:200.480021pt;}
.yde{bottom:202.399999pt;}
.y53{bottom:203.199987pt;}
.yfc{bottom:206.239985pt;}
.ybc{bottom:206.400020pt;}
.y76{bottom:209.280004pt;}
.y137{bottom:211.519995pt;}
.y1d3{bottom:214.986581pt;}
.y22{bottom:216.479977pt;}
.y52{bottom:220.479996pt;}
.ydd{bottom:223.199987pt;}
.y116{bottom:223.519995pt;}
.y1d2{bottom:226.986576pt;}
.yfb{bottom:227.039993pt;}
.y136{bottom:232.320003pt;}
.y51{bottom:237.919999pt;}
.y1d1{bottom:238.986571pt;}
.y115{bottom:240.800003pt;}
.yb5{bottom:243.200012pt;}
.ydc{bottom:243.999995pt;}
.y21{bottom:245.279985pt;}
.yfa{bottom:247.840001pt;}
.y94{bottom:250.079992pt;}
.y1d0{bottom:251.146566pt;}
.y135{bottom:253.280004pt;}
.y50{bottom:255.199987pt;}
.y74{bottom:256.320003pt;}
.y114{bottom:258.239985pt;}
.y75{bottom:263.040019pt;}
.y1cf{bottom:263.146561pt;}
.yb4{bottom:263.199987pt;}
.ydb{bottom:264.959996pt;}
.yf9{bottom:268.639989pt;}
.y92{bottom:270.880000pt;}
.y4f{bottom:272.479996pt;}
.y20{bottom:274.079993pt;}
.y1ce{bottom:275.306557pt;}
.y113{bottom:275.519995pt;}
.y93{bottom:277.600016pt;}
.yb3{bottom:280.479996pt;}
.y112{bottom:280.800028pt;}
.y181{bottom:282.399999pt;}
.y1cd{bottom:287.306552pt;}
.yf8{bottom:289.599991pt;}
.y4e{bottom:289.919999pt;}
.yda{bottom:293.919999pt;}
.y4d{bottom:295.200012pt;}
.y153{bottom:296.639989pt;}
.y1cc{bottom:299.306547pt;}
.y91{bottom:299.840001pt;}
.y1f{bottom:302.880001pt;}
.y154{bottom:303.360027pt;}
.y134{bottom:310.880000pt;}
.y180{bottom:311.199987pt;}
.y1cb{bottom:311.466542pt;}
.yd9{bottom:314.719987pt;}
.y4c{bottom:315.199987pt;}
.y152{bottom:317.439997pt;}
.yf7{bottom:318.559992pt;}
.y4b{bottom:320.480021pt;}
.y90{bottom:320.799983pt;}
.y1ca{bottom:323.466537pt;}
.y133{bottom:331.679988pt;}
.y1e{bottom:331.680009pt;}
.y1c9{bottom:335.626532pt;}
.yd8{bottom:335.679988pt;}
.y151{bottom:338.239985pt;}
.y17f{bottom:341.119991pt;}
.y8f{bottom:341.599991pt;}
.y1c8{bottom:347.626528pt;}
.yf6{bottom:349.439997pt;}
.ybf{bottom:349.965377pt;}
.y132{bottom:352.479996pt;}
.y111{bottom:352.959976pt;}
.yd7{bottom:356.479996pt;}
.y150{bottom:359.039973pt;}
.y1c7{bottom:359.626523pt;}
.y1d{bottom:360.479977pt;}
.y8e{bottom:362.399999pt;}
.y4a{bottom:363.200007pt;}
.y1c6{bottom:371.786518pt;}
.y131{bottom:373.280004pt;}
.y110{bottom:373.919977pt;}
.y167{bottom:375.999975pt;}
.yd6{bottom:377.280004pt;}
.yf5{bottom:380.160009pt;}
.y8d{bottom:383.200007pt;}
.y1c5{bottom:383.786513pt;}
.y49{bottom:383.999975pt;}
.y14f{bottom:387.839981pt;}
.y1c{bottom:389.279985pt;}
.y130{bottom:394.079972pt;}
.y10f{bottom:394.719987pt;}
.y1c4{bottom:395.946508pt;}
.y166{bottom:396.799983pt;}
.yd5{bottom:398.240005pt;}
.y17e{bottom:401.120011pt;}
.y48{bottom:404.799983pt;}
.y1c3{bottom:407.946503pt;}
.y14e{bottom:408.639989pt;}
.yf4{bottom:411.039973pt;}
.y12f{bottom:414.879980pt;}
.y165{bottom:417.599991pt;}
.y1b{bottom:418.079993pt;}
.y1c2{bottom:418.186499pt;}
.y1c0{bottom:420.747200pt;}
.y17d{bottom:421.919977pt;}
.y10e{bottom:423.839981pt;}
.y1bf{bottom:424.746497pt;}
.y46{bottom:425.599991pt;}
.y14d{bottom:429.439997pt;}
.y8c{bottom:430.240005pt;}
.y47{bottom:432.320028pt;}
.y12e{bottom:435.679988pt;}
.y164{bottom:438.399999pt;}
.y1be{bottom:443.466489pt;}
.y10d{bottom:444.959976pt;}
.y45{bottom:446.399999pt;}
.y1a{bottom:446.880001pt;}
.yd4{bottom:447.999975pt;}
.y14c{bottom:450.399999pt;}
.y17c{bottom:450.719987pt;}
.y12d{bottom:456.479996pt;}
.y163{bottom:459.360001pt;}
.y1bd{bottom:460.426482pt;}
.yf3{bottom:468.799983pt;}
.y142{bottom:471.039973pt;}
.y14b{bottom:471.200007pt;}
.y1bc{bottom:472.426478pt;}
.y44{bottom:475.360001pt;}
.y19{bottom:475.679969pt;}
.y12c{bottom:477.280004pt;}
.yd3{bottom:478.879980pt;}
.y8a{bottom:479.360015pt;}
.y17b{bottom:479.519995pt;}
.y1ab{bottom:479.786475pt;}
.y162{bottom:480.160009pt;}
.y1bb{bottom:484.586473pt;}
.yf2{bottom:489.599991pt;}
.y141{bottom:491.839981pt;}
.y14a{bottom:491.999975pt;}
.yb2{bottom:494.719987pt;}
.y43{bottom:496.160009pt;}
.y1ba{bottom:496.586468pt;}
.y1aa{bottom:496.746468pt;}
.y12b{bottom:498.079972pt;}
.y17a{bottom:500.320003pt;}
.y161{bottom:500.959976pt;}
.y10c{bottom:502.719987pt;}
.y18{bottom:504.639971pt;}
.y1b9{bottom:508.586463pt;}
.y1a9{bottom:508.746463pt;}
.yd2{bottom:509.599991pt;}
.yf1{bottom:510.559992pt;}
.y140{bottom:512.799983pt;}
.yb1{bottom:515.519995pt;}
.y42{bottom:516.959976pt;}
.y88{bottom:519.040013pt;}
.y1b8{bottom:520.746458pt;}
.y1a8{bottom:520.906458pt;}
.y179{bottom:521.119969pt;}
.y10b{bottom:523.519995pt;}
.y12a{bottom:526.879980pt;}
.y160{bottom:529.759984pt;}
.yf0{bottom:531.360001pt;}
.y1b7{bottom:532.746454pt;}
.y1a7{bottom:532.906454pt;}
.y17{bottom:533.439979pt;}
.y149{bottom:533.599991pt;}
.y41{bottom:537.759984pt;}
.yd1{bottom:540.479996pt;}
.yb0{bottom:544.479996pt;}
.y1a6{bottom:544.906449pt;}
.y129{bottom:547.679988pt;}
.y178{bottom:549.919977pt;}
.y15f{bottom:550.559992pt;}
.y10a{bottom:551.200032pt;}
.yef{bottom:552.159968pt;}
.y148{bottom:554.399999pt;}
.y1b6{bottom:556.906444pt;}
.y1a5{bottom:557.066444pt;}
.y40{bottom:558.559992pt;}
.y86{bottom:558.880012pt;}
.y13e{bottom:559.679988pt;}
.yaf{bottom:565.280004pt;}
.y13f{bottom:566.400024pt;}
.y128{bottom:568.479996pt;}
.y1b5{bottom:568.906439pt;}
.y1a4{bottom:569.066439pt;}
.y177{bottom:570.719987pt;}
.yd0{bottom:571.200007pt;}
.y15e{bottom:571.360001pt;}
.yee{bottom:572.959976pt;}
.y147{bottom:575.200007pt;}
.y3f{bottom:579.360001pt;}
.y1b4{bottom:581.066434pt;}
.y1a3{bottom:581.226434pt;}
.y108{bottom:586.079972pt;}
.y127{bottom:589.439997pt;}
.y4{bottom:590.173333pt;}
.y176{bottom:591.519995pt;}
.y15d{bottom:592.159968pt;}
.y109{bottom:592.800008pt;}
.y1b3{bottom:593.066429pt;}
.y1a2{bottom:593.226429pt;}
.yed{bottom:593.759984pt;}
.yae{bottom:594.079972pt;}
.y6e{bottom:594.559992pt;}
.y84{bottom:598.560012pt;}
.ycf{bottom:602.079972pt;}
.y1a1{bottom:605.226425pt;}
.y107{bottom:606.879980pt;}
.y3d{bottom:608.159968pt;}
.y126{bottom:610.559992pt;}
.yec{bottom:614.559992pt;}
.yad{bottom:614.879980pt;}
.y3e{bottom:614.880005pt;}
.y6d{bottom:615.360001pt;}
.y1b2{bottom:617.226420pt;}
.y1a0{bottom:617.386420pt;}
.y175{bottom:620.320003pt;}
.y15c{bottom:620.959976pt;}
.y146{bottom:622.240005pt;}
.y3{bottom:624.093333pt;}
.y106{bottom:627.679988pt;}
.y3c{bottom:628.959976pt;}
.y1b1{bottom:629.226415pt;}
.y19f{bottom:629.386415pt;}
.yce{bottom:632.799983pt;}
.yeb{bottom:635.360001pt;}
.yac{bottom:635.679988pt;}
.y6c{bottom:636.159968pt;}
.y82{bottom:640.960011pt;}
.y174{bottom:641.119969pt;}
.y1b0{bottom:641.386410pt;}
.y19e{bottom:641.546410pt;}
.y15b{bottom:641.759984pt;}
.y3b{bottom:649.759984pt;}
.y1af{bottom:653.386405pt;}
.y19d{bottom:653.546405pt;}
.ycd{bottom:653.759984pt;}
.yea{bottom:656.320003pt;}
.yab{bottom:656.479996pt;}
.y6b{bottom:657.119969pt;}
.y2{bottom:658.013333pt;}
.y173{bottom:661.919977pt;}
.y15a{bottom:662.559992pt;}
.y1ae{bottom:663.786401pt;}
.y19c{bottom:663.946401pt;}
.y125{bottom:668.320003pt;}
.y1ad{bottom:670.346399pt;}
.y19b{bottom:670.506398pt;}
.y3a{bottom:670.559992pt;}
.y13a{bottom:673.759984pt;}
.yaa{bottom:677.280004pt;}
.y6a{bottom:677.919977pt;}
.y13b{bottom:680.480021pt;}
.y1ac{bottom:681.067200pt;}
.y199{bottom:681.227200pt;}
.y159{bottom:683.360001pt;}
.ye9{bottom:685.280004pt;}
.y124{bottom:689.120011pt;}
.y15{bottom:690.880020pt;}
.y39{bottom:691.360001pt;}
.y172{bottom:691.999975pt;}
.y139{bottom:692.159968pt;}
.y198{bottom:695.946388pt;}
.ya9{bottom:698.079972pt;}
.y69{bottom:698.719945pt;}
.ye8{bottom:706.079972pt;}
.y197{bottom:708.106383pt;}
.y123{bottom:710.079972pt;}
.ycc{bottom:711.519995pt;}
.yba{bottom:712.159968pt;}
.y105{bottom:718.880020pt;}
.y68{bottom:719.519995pt;}
.y196{bottom:720.106379pt;}
.y38{bottom:720.159968pt;}
.ya8{bottom:726.880020pt;}
.y122{bottom:730.880020pt;}
.ycb{bottom:732.319961pt;}
.y195{bottom:732.586374pt;}
.y73{bottom:732.960017pt;}
.y104{bottom:739.679988pt;}
.y81{bottom:740.319961pt;}
.y37{bottom:740.960017pt;}
.y194{bottom:746.186368pt;}
.ya7{bottom:747.679988pt;}
.y67{bottom:748.319961pt;}
.y121{bottom:751.679988pt;}
.yca{bottom:753.120011pt;}
.y72{bottom:753.759984pt;}
.y157{bottom:755.040039pt;}
.y193{bottom:758.186363pt;}
.y103{bottom:760.639948pt;}
.y36{bottom:761.759984pt;}
.y171{bottom:764.639948pt;}
.ya6{bottom:768.479955pt;}
.y66{bottom:769.120011pt;}
.y192{bottom:770.346359pt;}
.y71{bottom:774.559952pt;}
.y190{bottom:779.627200pt;}
.y120{bottom:780.479955pt;}
.yc9{bottom:781.919977pt;}
.y35{bottom:782.559952pt;}
.y170{bottom:785.439997pt;}
.ya5{bottom:789.280004pt;}
.y102{bottom:789.599991pt;}
.y65{bottom:789.919977pt;}
.y18f{bottom:794.666349pt;}
.y70{bottom:795.519995pt;}
.y80{bottom:797.919977pt;}
.y11f{bottom:801.439997pt;}
.yc8{bottom:802.719945pt;}
.y34{bottom:803.519995pt;}
.y16f{bottom:806.399959pt;}
.ya4{bottom:810.079972pt;}
.y101{bottom:810.399959pt;}
.y64{bottom:810.719945pt;}
.y18e{bottom:816.106340pt;}
.y14{bottom:818.719945pt;}
.y11e{bottom:822.559952pt;}
.yc7{bottom:823.519995pt;}
.y33{bottom:824.319961pt;}
.ya2{bottom:830.880020pt;}
.y100{bottom:831.200007pt;}
.y16e{bottom:835.360001pt;}
.yd{bottom:837.280004pt;}
.ya3{bottom:837.600016pt;}
.y18d{bottom:837.706332pt;}
.y63{bottom:839.519995pt;}
.y11d{bottom:843.519995pt;}
.yc6{bottom:844.319961pt;}
.y31{bottom:845.120011pt;}
.y13{bottom:845.759984pt;}
.y18b{bottom:848.107200pt;}
.y18a{bottom:851.146326pt;}
.ye7{bottom:851.679988pt;}
.ya1{bottom:851.839981pt;}
.y32{bottom:851.840007pt;}
.yff{bottom:851.999975pt;}
.y16d{bottom:856.159968pt;}
.y62{bottom:860.319961pt;}
.y11c{bottom:864.639948pt;}
.y30{bottom:865.919977pt;}
.yc{bottom:866.079972pt;}
.y189{bottom:867.146320pt;}
.ye6{bottom:872.639948pt;}
.y12{bottom:872.960017pt;}
.yc5{bottom:873.120011pt;}
.y16c{bottom:877.120011pt;}
.ya0{bottom:880.799943pt;}
.y61{bottom:881.120011pt;}
.y188{bottom:883.626313pt;}
.y11b{bottom:885.599991pt;}
.y2f{bottom:886.719945pt;}
.y7f{bottom:889.120011pt;}
.ye5{bottom:893.439997pt;}
.yc4{bottom:893.919977pt;}
.y158{bottom:894.719945pt;}
.yb{bottom:894.880020pt;}
.y11{bottom:900.159968pt;}
.y9f{bottom:901.599991pt;}
.y60{bottom:901.919977pt;}
.y16b{bottom:906.079972pt;}
.y13d{bottom:907.519995pt;}
.y187{bottom:907.626304pt;}
.y7e{bottom:909.919977pt;}
.yc3{bottom:914.719945pt;}
.y2e{bottom:915.519995pt;}
.y184{bottom:920.587200pt;}
.y6f{bottom:922.239991pt;}
.y9e{bottom:922.399959pt;}
.y5f{bottom:922.719945pt;}
.y186{bottom:923.626297pt;}
.ya{bottom:923.839981pt;}
.y16a{bottom:926.879939pt;}
.y10{bottom:927.200007pt;}
.y7d{bottom:930.719945pt;}
.yc2{bottom:935.519995pt;}
.y2d{bottom:936.319961pt;}
.y9c{bottom:943.360001pt;}
.y5e{bottom:943.519995pt;}
.y183{bottom:947.786288pt;}
.y169{bottom:947.839981pt;}
.y9d{bottom:950.079997pt;}
.y7c{bottom:951.519995pt;}
.y9{bottom:952.639948pt;}
.yf{bottom:954.399959pt;}
.yc1{bottom:956.319961pt;}
.y2c{bottom:957.120011pt;}
.yb9{bottom:963.840007pt;}
.ye4{bottom:964.159968pt;}
.y145{bottom:964.319961pt;}
.y5c{bottom:972.319961pt;}
.y2b{bottom:977.919977pt;}
.y182{bottom:978.026275pt;}
.y168{bottom:978.079972pt;}
.y5d{bottom:979.040039pt;}
.y8{bottom:981.439997pt;}
.ye{bottom:981.599991pt;}
.y144{bottom:985.280004pt;}
.y5b{bottom:993.280004pt;}
.y1{bottom:994.693333pt;}
.ye3{bottom:1000.000000pt;}
.y2a{bottom:1009.120011pt;}
.y7{bottom:1011.519995pt;}
.y5a{bottom:1014.079972pt;}
.h1c{height:11.535995pt;}
.h19{height:12.000000pt;}
.h1e{height:12.160000pt;}
.h18{height:13.440000pt;}
.h1f{height:14.720000pt;}
.ha{height:28.192000pt;}
.hf{height:28.799999pt;}
.he{height:28.800000pt;}
.h1a{height:30.916468pt;}
.h9{height:32.702720pt;}
.hd{height:33.296640pt;}
.h1b{height:34.607986pt;}
.h17{height:36.574042pt;}
.h16{height:39.407984pt;}
.h2{height:39.502500pt;}
.h1d{height:46.143982pt;}
.hb{height:46.798720pt;}
.h6{height:56.384000pt;}
.h11{height:56.776666pt;}
.hc{height:57.408000pt;}
.h13{height:59.281250pt;}
.h20{height:62.812475pt;}
.h4{height:62.824960pt;}
.h14{height:65.969280pt;}
.h5{height:67.167360pt;}
.h15{height:69.215972pt;}
.h12{height:72.790597pt;}
.h8{height:76.352640pt;}
.h10{height:384.159992pt;}
.h7{height:547.519988pt;}
.h3{height:1122.559975pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:5.440000pt;}
.wd{width:5.760000pt;}
.wb{width:6.720000pt;}
.we{width:8.640000pt;}
.w3{width:82.879997pt;}
.wa{width:112.800000pt;}
.w9{width:239.680000pt;}
.w6{width:254.079993pt;}
.w5{width:329.599993pt;}
.w7{width:540.159988pt;}
.w4{width:544.319988pt;}
.w8{width:793.333333pt;}
.w2{width:793.759983pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.199995pt;}
.x16{left:8.959996pt;}
.x3{left:87.199999pt;}
.x2{left:94.399993pt;}
.x33{left:97.119995pt;}
.x32{left:99.680003pt;}
.xb{left:101.440003pt;}
.xe{left:103.200003pt;}
.x3f{left:104.319958pt;}
.xc{left:106.240000pt;}
.x2b{left:107.679993pt;}
.x2c{left:110.399993pt;}
.x30{left:112.480001pt;}
.x15{left:113.439997pt;}
.x1{left:114.912000pt;}
.x24{left:118.399993pt;}
.x8{left:119.839996pt;}
.x1d{left:148.799997pt;}
.x1e{left:158.399993pt;}
.x5{left:170.079996pt;}
.x2d{left:173.119995pt;}
.x21{left:176.000000pt;}
.x11{left:190.559997pt;}
.x18{left:195.039999pt;}
.x22{left:229.617141pt;}
.x23{left:233.455805pt;}
.x40{left:238.079870pt;}
.x3e{left:272.480000pt;}
.x3b{left:279.199888pt;}
.x13{left:280.639995pt;}
.x14{left:285.440003pt;}
.x2e{left:292.000000pt;}
.x3a{left:343.679863pt;}
.xd{left:371.359985pt;}
.x3d{left:411.040000pt;}
.x34{left:415.679972pt;}
.x35{left:428.639973pt;}
.x17{left:444.479991pt;}
.x38{left:452.799819pt;}
.x1f{left:481.759969pt;}
.x2f{left:491.359985pt;}
.x20{left:497.119995pt;}
.xf{left:567.359985pt;}
.x6{left:571.840007pt;}
.x10{left:575.519979pt;}
.x7{left:576.639973pt;}
.x39{left:590.399764pt;}
.x29{left:596.639973pt;}
.x12{left:597.920003pt;}
.x3c{left:605.280000pt;}
.x2a{left:606.239991pt;}
.x27{left:631.839965pt;}
.x25{left:635.039999pt;}
.x28{left:641.439983pt;}
.x26{left:644.639973pt;}
.x9{left:645.599976pt;}
.xa{left:654.079997pt;}
.x19{left:662.880005pt;}
.x1a{left:667.679972pt;}
.x31{left:671.519979pt;}
.x36{left:683.680013pt;}
.x1b{left:691.039957pt;}
.x37{left:693.279948pt;}
.x1c{left:695.840007pt;}
}




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