
    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_4fe7af6a121efc373bad3444.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e4629ef5fd47d1e3d401943.woff')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_3c3effedf2f099cd177290e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_87730d120f47f8b7609364f5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_e42ecb22b32342a800efada2.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0fa3bab4461014ef900ebfae.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01f499901db50a67c8892067.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_53b4643126d9853e59ba0440.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8024c39e32aab7fead1ea9f4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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_f7b3daa266a95d0d9797516f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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_93d816d91310ca94d0106c2c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_672940f82739cea70958b472.woff')format("woff");}.ffc{font-family:ffc;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_310a658a3490a30dc2f84ad5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.867676;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-79.920000px;}
.v1{vertical-align:-40.320000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.223800px;}
.ls19{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.181200px;}
.ls20{letter-spacing:-0.175800px;}
.ls9{letter-spacing:-0.166200px;}
.lsf{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.078600px;}
.ls10{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.054720px;}
.ls8{letter-spacing:-0.027360px;}
.ls21{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.027360px;}
.lse{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.ls1d{letter-spacing:0.864000px;}
.ls15{letter-spacing:5.760000px;}
.ls1c{letter-spacing:7.920000px;}
.ls1a{letter-spacing:15.840000px;}
.ls13{letter-spacing:41.040000px;}
.ls1e{letter-spacing:1495.200000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.900080px;}
.wsf{word-spacing:-18.792000px;}
.ws16{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.648000px;}
.ws14{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.ws15{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws8{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.247360px;}
.ws6{word-spacing:-14.220000px;}
.wsa{word-spacing:-14.192640px;}
.wsb{word-spacing:-14.053800px;}
.ws9{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.427160px;}
.ws3{word-spacing:-13.229520px;}
.ws17{word-spacing:-12.186000px;}
.wsc{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.836200px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-14.400000px;}
._43{margin-left:-12.881280px;}
._36{margin-left:-11.090640px;}
._2f{margin-left:-9.492000px;}
._42{margin-left:-7.872000px;}
._15{margin-left:-5.112000px;}
._16{margin-left:-3.744000px;}
._f{margin-left:-2.599920px;}
._5{margin-left:-1.132560px;}
._0{width:1.051200px;}
._4{width:2.594160px;}
._d{width:3.902160px;}
._e{width:5.631120px;}
._2{width:7.315200px;}
._3{width:8.904240px;}
._8{width:10.208160px;}
._a{width:12.036240px;}
._10{width:13.196160px;}
._17{width:14.688000px;}
._9{width:16.314480px;}
._50{width:17.756640px;}
._6{width:19.864800px;}
._1d{width:20.884800px;}
._1f{width:22.022400px;}
._29{width:23.054400px;}
._34{width:24.206400px;}
._13{width:25.704000px;}
._14{width:27.040800px;}
._2a{width:28.303440px;}
._1{width:29.700720px;}
._7{width:31.214160px;}
._3b{width:32.252160px;}
._1e{width:33.297360px;}
._40{width:34.315920px;}
._1b{width:35.524560px;}
._30{width:38.136000px;}
._11{width:39.201360px;}
._4c{width:40.322880px;}
._1c{width:41.483760px;}
._b{width:43.220400px;}
._c{width:44.363040px;}
._4d{width:45.792000px;}
._4e{width:46.920000px;}
._4a{width:48.288000px;}
._4f{width:50.208000px;}
._3d{width:52.176000px;}
._45{width:53.352000px;}
._27{width:54.669360px;}
._26{width:56.676000px;}
._32{width:58.821360px;}
._35{width:59.858160px;}
._37{width:62.700000px;}
._3a{width:70.500000px;}
._2c{width:72.004560px;}
._31{width:74.796000px;}
._38{width:76.701360px;}
._23{width:82.245360px;}
._2b{width:91.113360px;}
._3c{width:92.460000px;}
._49{width:100.797360px;}
._18{width:104.232000px;}
._4b{width:112.965360px;}
._3e{width:119.532720px;}
._48{width:127.482720px;}
._21{width:130.152000px;}
._24{width:132.348000px;}
._3f{width:137.664000px;}
._2e{width:140.160000px;}
._39{width:142.176000px;}
._33{width:146.613360px;}
._28{width:150.501360px;}
._46{width:156.396000px;}
._2d{width:170.292000px;}
._44{width:174.660000px;}
._25{width:176.901360px;}
._12{width:180.144000px;}
._19{width:182.289360px;}
._41{width:186.168000px;}
._47{width:188.700000px;}
._20{width:194.524800px;}
._22{width:198.144000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y1a0{bottom:-105.156000px;}
.y2f{bottom:-83.745000px;}
.y22{bottom:-72.945000px;}
.y19f{bottom:-68.796000px;}
.y2e{bottom:-56.565000px;}
.y21{bottom:-36.585000px;}
.y2d{bottom:-33.705000px;}
.y19e{bottom:-32.976000px;}
.y19d{bottom:-16.380000px;}
.y2c{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:2.880000px;}
.yde{bottom:3.060000px;}
.y9{bottom:3.780000px;}
.y16a{bottom:6.660000px;}
.yb{bottom:7.560000px;}
.y8{bottom:9.540000px;}
.y2b{bottom:11.880000px;}
.y19c{bottom:17.820000px;}
.y1f{bottom:18.000000px;}
.y7{bottom:18.180000px;}
.y26{bottom:22.755000px;}
.y2a{bottom:34.740000px;}
.y1e{bottom:36.360000px;}
.yf{bottom:36.900000px;}
.y19b{bottom:41.400000px;}
.ye{bottom:43.560000px;}
.y6{bottom:50.580000px;}
.y24{bottom:53.100000px;}
.y1d{bottom:54.720000px;}
.y29{bottom:57.420000px;}
.y19a{bottom:65.154000px;}
.y15f{bottom:69.300000px;}
.y13d{bottom:72.000000px;}
.y1c{bottom:73.080000px;}
.y6c{bottom:73.440000px;}
.y6b{bottom:77.940000px;}
.y199{bottom:79.734000px;}
.y28{bottom:80.280000px;}
.ya5{bottom:80.640000px;}
.ye8{bottom:87.156000px;}
.y15e{bottom:90.036000px;}
.y84{bottom:91.116000px;}
.y13c{bottom:92.736000px;}
.y6a{bottom:93.276000px;}
.yb8{bottom:95.076000px;}
.y105{bottom:95.616000px;}
.yc9{bottom:97.056000px;}
.y69{bottom:97.776000px;}
.y169{bottom:100.836000px;}
.y198{bottom:103.314000px;}
.y17f{bottom:107.316000px;}
.y1b{bottom:109.260000px;}
.y150{bottom:110.736000px;}
.ya4{bottom:111.816000px;}
.y68{bottom:113.076000px;}
.y11d{bottom:114.516000px;}
.y67{bottom:117.576000px;}
.ye7{bottom:118.296000px;}
.y83{bottom:122.076000px;}
.yb7{bottom:126.216000px;}
.y104{bottom:126.756000px;}
.y197{bottom:127.074000px;}
.y1a{bottom:127.620000px;}
.yc8{bottom:128.016000px;}
.y15d{bottom:128.736000px;}
.y13b{bottom:131.436000px;}
.y66{bottom:132.876000px;}
.y11c{bottom:135.216000px;}
.y65{bottom:137.376000px;}
.ya3{bottom:138.636000px;}
.y168{bottom:139.536000px;}
.y19{bottom:145.980000px;}
.ye6{bottom:149.256000px;}
.y15c{bottom:149.436000px;}
.y196{bottom:150.654000px;}
.y13a{bottom:152.130000px;}
.y64{bottom:152.670000px;}
.y82{bottom:153.210000px;}
.y11b{bottom:155.910000px;}
.yd{bottom:156.090000px;}
.y63{bottom:157.170000px;}
.y103{bottom:157.710000px;}
.yc7{bottom:159.150000px;}
.y18{bottom:164.160000px;}
.ya2{bottom:165.630000px;}
.ye5{bottom:168.510000px;}
.y62{bottom:173.910000px;}
.y195{bottom:174.414000px;}
.y167{bottom:178.230000px;}
.ye4{bottom:180.570000px;}
.y17{bottom:182.520000px;}
.y81{bottom:184.170000px;}
.y15b{bottom:188.130000px;}
.yb6{bottom:188.310000px;}
.y102{bottom:188.850000px;}
.y194{bottom:188.994000px;}
.yc6{bottom:190.110000px;}
.y139{bottom:190.830000px;}
.ya1{bottom:192.450000px;}
.y11a{bottom:194.610000px;}
.ye3{bottom:196.050000px;}
.y61{bottom:206.490000px;}
.y15a{bottom:208.830000px;}
.ye2{bottom:211.530000px;}
.y193{bottom:212.574000px;}
.y80{bottom:215.310000px;}
.y166{bottom:216.930000px;}
.y16{bottom:218.880000px;}
.yb5{bottom:219.270000px;}
.y101{bottom:219.810000px;}
.yc5{bottom:221.250000px;}
.ya0{bottom:223.590000px;}
.ye1{bottom:227.190000px;}
.y60{bottom:231.870000px;}
.y14f{bottom:232.230000px;}
.y192{bottom:236.334000px;}
.y15{bottom:237.240000px;}
.ye0{bottom:242.670000px;}
.y7f{bottom:246.270000px;}
.y159{bottom:247.530000px;}
.y5f{bottom:248.250000px;}
.yb4{bottom:250.230000px;}
.y100{bottom:250.950000px;}
.y191{bottom:250.959000px;}
.yc4{bottom:252.210000px;}
.y9f{bottom:254.550000px;}
.y14{bottom:255.450000px;}
.y165{bottom:255.630000px;}
.ydf{bottom:258.150000px;}
.y5e{bottom:264.630000px;}
.y158{bottom:268.230000px;}
.y138{bottom:270.930000px;}
.ydd{bottom:273.630000px;}
.y13{bottom:273.810000px;}
.y190{bottom:274.899000px;}
.y7e{bottom:277.230000px;}
.y5d{bottom:281.010000px;}
.yb3{bottom:281.370000px;}
.yff{bottom:281.910000px;}
.yc3{bottom:283.350000px;}
.y9e{bottom:285.510000px;}
.y157{bottom:288.930000px;}
.ydc{bottom:289.290000px;}
.y14e{bottom:291.630000px;}
.y164{bottom:294.330000px;}
.y5c{bottom:297.390000px;}
.ydb{bottom:304.770000px;}
.y7d{bottom:308.370000px;}
.y18f{bottom:309.099000px;}
.y137{bottom:309.630000px;}
.yb2{bottom:312.330000px;}
.yfe{bottom:313.050000px;}
.y5b{bottom:313.770000px;}
.yc2{bottom:314.310000px;}
.y9d{bottom:316.650000px;}
.yda{bottom:320.250000px;}
.y18e{bottom:323.679000px;}
.y156{bottom:327.630000px;}
.y5a{bottom:330.150000px;}
.y136{bottom:330.330000px;}
.y163{bottom:333.030000px;}
.yd8{bottom:336.630000px;}
.y7c{bottom:339.330000px;}
.yb1{bottom:343.470000px;}
.yfd{bottom:344.010000px;}
.yc1{bottom:345.495000px;}
.y59{bottom:346.575000px;}
.y18d{bottom:347.439000px;}
.y9c{bottom:347.655000px;}
.y155{bottom:348.375000px;}
.y14d{bottom:351.075000px;}
.yd7{bottom:356.835000px;}
.y27{bottom:360.255000px;}
.y58{bottom:362.955000px;}
.y135{bottom:369.075000px;}
.y7b{bottom:370.515000px;}
.y18c{bottom:371.019000px;}
.y162{bottom:371.775000px;}
.yb0{bottom:374.475000px;}
.yfc{bottom:375.195000px;}
.y17e{bottom:375.735000px;}
.yc0{bottom:376.455000px;}
.yd6{bottom:377.535000px;}
.y9b{bottom:378.795000px;}
.y57{bottom:379.335000px;}
.y134{bottom:389.775000px;}
.y18b{bottom:394.779000px;}
.y56{bottom:395.715000px;}
.y7a{bottom:401.475000px;}
.yaf{bottom:405.615000px;}
.yfb{bottom:406.155000px;}
.ybf{bottom:407.595000px;}
.y154{bottom:407.775000px;}
.yd5{bottom:408.495000px;}
.y9a{bottom:409.755000px;}
.y14c{bottom:410.475000px;}
.y55{bottom:412.275000px;}
.y18a{bottom:418.359000px;}
.y17d{bottom:426.855000px;}
.y133{bottom:428.475000px;}
.y54{bottom:428.655000px;}
.y79{bottom:432.615000px;}
.y189{bottom:432.939000px;}
.yae{bottom:436.575000px;}
.yfa{bottom:437.295000px;}
.ybe{bottom:438.555000px;}
.yd4{bottom:439.635000px;}
.y99{bottom:440.895000px;}
.y53{bottom:445.035000px;}
.y132{bottom:449.175000px;}
.y188{bottom:456.699000px;}
.y17c{bottom:462.675000px;}
.y78{bottom:463.575000px;}
.y23{bottom:465.915000px;}
.y25{bottom:466.020000px;}
.y153{bottom:467.175000px;}
.yad{bottom:467.715000px;}
.yf9{bottom:468.255000px;}
.ybd{bottom:469.515000px;}
.y14b{bottom:469.875000px;}
.y52{bottom:470.415000px;}
.yd3{bottom:470.595000px;}
.y98{bottom:471.855000px;}
.y187{bottom:480.639000px;}
.yc{bottom:486.615000px;}
.y131{bottom:487.875000px;}
.y51{bottom:488.055000px;}
.y77{bottom:494.715000px;}
.yac{bottom:498.675000px;}
.yf8{bottom:499.395000px;}
.ybc{bottom:500.655000px;}
.yd2{bottom:501.735000px;}
.y17b{bottom:502.815000px;}
.y97{bottom:502.995000px;}
.y130{bottom:508.575000px;}
.y50{bottom:510.555000px;}
.y186{bottom:514.869000px;}
.ybb{bottom:519.915000px;}
.y76{bottom:525.675000px;}
.y152{bottom:526.575000px;}
.y14a{bottom:529.275000px;}
.yab{bottom:529.815000px;}
.yf7{bottom:530.355000px;}
.yba{bottom:531.255000px;}
.yd1{bottom:532.695000px;}
.y17a{bottom:533.775000px;}
.y96{bottom:533.955000px;}
.y4f{bottom:535.935000px;}
.y185{bottom:539.169000px;}
.y12f{bottom:547.275000px;}
.y4e{bottom:552.315000px;}
.y75{bottom:556.815000px;}
.yaa{bottom:560.775000px;}
.yf6{bottom:561.495000px;}
.yd0{bottom:563.835000px;}
.y179{bottom:564.915000px;}
.y95{bottom:565.095000px;}
.y12e{bottom:567.975000px;}
.y4d{bottom:568.695000px;}
.y184{bottom:574.989000px;}
.ycf{bottom:584.535000px;}
.y4c{bottom:585.075000px;}
.y151{bottom:585.975000px;}
.y74{bottom:587.775000px;}
.y149{bottom:588.675000px;}
.y10{bottom:589.245000px;}
.ya9{bottom:591.915000px;}
.yf5{bottom:592.455000px;}
.y178{bottom:595.875000px;}
.y94{bottom:596.055000px;}
.y4b{bottom:601.455000px;}
.yce{bottom:605.235000px;}
.y12d{bottom:606.675000px;}
.y148{bottom:609.405000px;}
.y183{bottom:609.909000px;}
.yf4{bottom:611.745000px;}
.ya{bottom:616.425000px;}
.y4a{bottom:617.865000px;}
.y73{bottom:618.945000px;}
.y16b{bottom:619.665000px;}
.ya8{bottom:622.905000px;}
.y119{bottom:623.625000px;}
.yf3{bottom:623.805000px;}
.ycd{bottom:624.345000px;}
.y177{bottom:627.045000px;}
.y93{bottom:627.225000px;}
.y12c{bottom:627.405000px;}
.y49{bottom:634.245000px;}
.ycc{bottom:636.405000px;}
.yf2{bottom:639.285000px;}
.y30{bottom:644.685000px;}
.y182{bottom:646.269000px;}
.y147{bottom:648.105000px;}
.y72{bottom:649.905000px;}
.y48{bottom:650.625000px;}
.y118{bottom:654.585000px;}
.yf1{bottom:654.765000px;}
.y176{bottom:658.005000px;}
.y92{bottom:658.185000px;}
.ycb{bottom:658.545000px;}
.yca{bottom:659.985000px;}
.ya7{bottom:663.045000px;}
.y12b{bottom:666.105000px;}
.y47{bottom:667.005000px;}
.y146{bottom:668.805000px;}
.yf0{bottom:670.425000px;}
.y71{bottom:681.045000px;}
.y181{bottom:682.089000px;}
.y46{bottom:683.385000px;}
.y117{bottom:685.725000px;}
.yef{bottom:685.905000px;}
.y12a{bottom:686.805000px;}
.y175{bottom:689.145000px;}
.y91{bottom:689.325000px;}
.y45{bottom:699.945000px;}
.yee{bottom:701.385000px;}
.ya6{bottom:703.005000px;}
.y145{bottom:707.505000px;}
.y70{bottom:712.005000px;}
.y44{bottom:716.325000px;}
.y116{bottom:716.685000px;}
.yed{bottom:716.865000px;}
.y180{bottom:718.269000px;}
.y174{bottom:720.105000px;}
.y90{bottom:720.285000px;}
.y129{bottom:725.505000px;}
.y144{bottom:728.205000px;}
.yec{bottom:732.525000px;}
.y43{bottom:732.705000px;}
.y6f{bottom:743.145000px;}
.y128{bottom:746.205000px;}
.y115{bottom:747.825000px;}
.yeb{bottom:748.005000px;}
.y42{bottom:749.085000px;}
.y173{bottom:751.245000px;}
.y8f{bottom:751.425000px;}
.yea{bottom:764.205000px;}
.y41{bottom:765.465000px;}
.y143{bottom:766.905000px;}
.y6e{bottom:774.105000px;}
.y114{bottom:778.785000px;}
.y40{bottom:781.845000px;}
.y172{bottom:782.205000px;}
.y8e{bottom:782.385000px;}
.ye9{bottom:784.545000px;}
.y127{bottom:784.905000px;}
.y142{bottom:787.605000px;}
.y6d{bottom:805.245000px;}
.y126{bottom:805.605000px;}
.y3f{bottom:806.325000px;}
.y113{bottom:809.925000px;}
.y171{bottom:813.345000px;}
.y8d{bottom:813.525000px;}
.y141{bottom:826.305000px;}
.y3e{bottom:836.205000px;}
.y112{bottom:840.885000px;}
.y125{bottom:844.305000px;}
.y8c{bottom:844.485000px;}
.y140{bottom:847.005000px;}
.y124{bottom:865.005000px;}
.y3c{bottom:867.345000px;}
.y111{bottom:872.070000px;}
.y3d{bottom:874.230000px;}
.y170{bottom:875.490000px;}
.y8b{bottom:875.670000px;}
.y13f{bottom:885.750000px;}
.y12{bottom:888.450000px;}
.y110{bottom:891.330000px;}
.y3a{bottom:898.350000px;}
.y10f{bottom:903.210000px;}
.y123{bottom:903.750000px;}
.y3b{bottom:905.190000px;}
.y13e{bottom:906.450000px;}
.y8a{bottom:906.630000px;}
.y1a1{bottom:912.210000px;}
.y10e{bottom:918.870000px;}
.y122{bottom:924.450000px;}
.y38{bottom:929.490000px;}
.y10d{bottom:934.350000px;}
.y39{bottom:936.330000px;}
.y16f{bottom:937.590000px;}
.y89{bottom:937.770000px;}
.y121{bottom:945.150000px;}
.y10c{bottom:949.830000px;}
.y36{bottom:960.450000px;}
.y10b{bottom:965.310000px;}
.y120{bottom:965.850000px;}
.y37{bottom:967.290000px;}
.y16e{bottom:968.550000px;}
.y88{bottom:968.730000px;}
.y10a{bottom:980.970000px;}
.y161{bottom:983.850000px;}
.y34{bottom:991.590000px;}
.y109{bottom:996.450000px;}
.y35{bottom:998.430000px;}
.y87{bottom:999.870000px;}
.y11f{bottom:1004.550000px;}
.y16d{bottom:1007.250000px;}
.y108{bottom:1011.930000px;}
.y33{bottom:1022.550000px;}
.y11e{bottom:1025.250000px;}
.y107{bottom:1027.410000px;}
.y86{bottom:1030.830000px;}
.y160{bottom:1043.250000px;}
.y106{bottom:1043.790000px;}
.y16c{bottom:1045.950000px;}
.y32{bottom:1053.690000px;}
.y85{bottom:1057.830000px;}
.yb9{bottom:1063.950000px;}
.y31{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.140000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h1e{height:5.653125px;}
.h22{height:15.480000px;}
.h20{height:15.516000px;}
.h23{height:15.660000px;}
.h5{height:24.120000px;}
.h3{height:28.440000px;}
.h19{height:29.678906px;}
.h28{height:34.625391px;}
.h18{height:35.314453px;}
.h29{height:37.546875px;}
.h4{height:38.759766px;}
.h1f{height:40.985156px;}
.h2{height:42.894141px;}
.h15{height:47.321367px;}
.h1a{height:47.344922px;}
.h11{height:47.545312px;}
.h10{height:50.312812px;}
.h1b{height:52.998047px;}
.h27{height:54.067500px;}
.h21{height:54.421875px;}
.h17{height:55.824609px;}
.h6{height:56.611406px;}
.h16{height:57.324375px;}
.h8{height:57.959925px;}
.ha{height:58.651172px;}
.h24{height:64.546875px;}
.hd{height:65.273906px;}
.h1d{height:66.757500px;}
.h14{height:70.628906px;}
.h1c{height:70.664062px;}
.h13{height:72.562500px;}
.hf{height:100.620000px;}
.h7{height:170.490000px;}
.h12{height:173.700000px;}
.he{height:181.620000px;}
.hc{height:181.650000px;}
.h2a{height:189.000000px;}
.hb{height:306.210000px;}
.h26{height:754.815000px;}
.h9{height:1188.900000px;}
.h25{height:1249.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.996000px;}
.w17{width:63.720000px;}
.w14{width:63.756000px;}
.w16{width:63.936000px;}
.w13{width:65.700000px;}
.w15{width:74.340000px;}
.w6{width:88.590000px;}
.w12{width:127.440000px;}
.w10{width:129.456000px;}
.w11{width:138.276000px;}
.wd{width:198.210000px;}
.w19{width:213.330000px;}
.wf{width:285.510000px;}
.wc{width:320.835000px;}
.wb{width:320.940000px;}
.wa{width:321.015000px;}
.w18{width:325.875000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.515000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.we{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:4.860000px;}
.x6{left:8.640000px;}
.xc{left:10.800000px;}
.x37{left:14.220000px;}
.x39{left:16.740000px;}
.x38{left:18.540000px;}
.x3a{left:20.010000px;}
.x41{left:21.090000px;}
.xe{left:22.320000px;}
.x34{left:25.050000px;}
.x3c{left:26.100000px;}
.x32{left:27.900000px;}
.x3b{left:30.420000px;}
.x40{left:31.680000px;}
.xd{left:33.120000px;}
.x2e{left:34.380000px;}
.x15{left:37.620000px;}
.x2d{left:45.894000px;}
.x30{left:46.980000px;}
.x4{left:64.439987px;}
.x24{left:68.219987px;}
.x5{left:73.080000px;}
.x2b{left:75.059987px;}
.x16{left:82.830000px;}
.x29{left:91.619987px;}
.x17{left:113.430000px;}
.x25{left:117.575987px;}
.x2c{left:121.716000px;}
.x13{left:133.125000px;}
.x8{left:137.370000px;}
.x1a{left:152.669987px;}
.x12{left:160.410000px;}
.x10{left:163.110000px;}
.x18{left:187.230000px;}
.x19{left:192.089987px;}
.x43{left:202.530000px;}
.x27{left:221.969987px;}
.x3f{left:226.469987px;}
.x3e{left:229.169987px;}
.x3d{left:230.429987px;}
.x26{left:246.269987px;}
.x23{left:280.469987px;}
.x3{left:388.694987px;}
.x11{left:406.155000px;}
.xf{left:408.135000px;}
.x14{left:411.915000px;}
.x1b{left:441.974987px;}
.x42{left:456.195000px;}
.x1{left:461.774987px;}
.x7{left:470.595000px;}
.x33{left:472.935000px;}
.x1f{left:534.524987px;}
.x2f{left:536.685000px;}
.x21{left:575.204987px;}
.x20{left:588.524987px;}
.x22{left:593.924987px;}
.x35{left:611.025000px;}
.x1c{left:672.629987px;}
.x31{left:674.970000px;}
.x36{left:738.690000px;}
.x2{left:782.249987px;}
.x28{left:784.049987px;}
.xb{left:803.850000px;}
.x2a{left:807.089987px;}
.x1d{left:813.569973px;}
.x1e{left:819.689987px;}
.x9{left:838.590000px;}
@media print{
.v2{vertical-align:-71.040000pt;}
.v1{vertical-align:-35.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls20{letter-spacing:-0.156267pt;}
.ls9{letter-spacing:-0.147733pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.069867pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.048640pt;}
.ls8{letter-spacing:-0.024320pt;}
.ls21{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024320pt;}
.lse{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls15{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:14.080000pt;}
.ls13{letter-spacing:36.480000pt;}
.ls1e{letter-spacing:1329.066667pt;}
.ws12{word-spacing:-64.000000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws0{word-spacing:-17.688960pt;}
.wsf{word-spacing:-16.704000pt;}
.ws16{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.576000pt;}
.ws14{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws15{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.664320pt;}
.ws6{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.615680pt;}
.wsb{word-spacing:-12.492267pt;}
.ws9{word-spacing:-12.320000pt;}
.ws1{word-spacing:-11.935253pt;}
.ws3{word-spacing:-11.759573pt;}
.ws17{word-spacing:-10.832000pt;}
.wsc{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.521067pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-12.800000pt;}
._43{margin-left:-11.450027pt;}
._36{margin-left:-9.858347pt;}
._2f{margin-left:-8.437333pt;}
._42{margin-left:-6.997333pt;}
._15{margin-left:-4.544000pt;}
._16{margin-left:-3.328000pt;}
._f{margin-left:-2.311040pt;}
._5{margin-left:-1.006720pt;}
._0{width:0.934400pt;}
._4{width:2.305920pt;}
._d{width:3.468587pt;}
._e{width:5.005440pt;}
._2{width:6.502400pt;}
._3{width:7.914880pt;}
._8{width:9.073920pt;}
._a{width:10.698880pt;}
._10{width:11.729920pt;}
._17{width:13.056000pt;}
._9{width:14.501760pt;}
._50{width:15.783680pt;}
._6{width:17.657600pt;}
._1d{width:18.564267pt;}
._1f{width:19.575467pt;}
._29{width:20.492800pt;}
._34{width:21.516800pt;}
._13{width:22.848000pt;}
._14{width:24.036267pt;}
._2a{width:25.158613pt;}
._1{width:26.400640pt;}
._7{width:27.745920pt;}
._3b{width:28.668587pt;}
._1e{width:29.597653pt;}
._40{width:30.503040pt;}
._1b{width:31.577387pt;}
._30{width:33.898667pt;}
._11{width:34.845653pt;}
._4c{width:35.842560pt;}
._1c{width:36.874453pt;}
._b{width:38.418133pt;}
._c{width:39.433813pt;}
._4d{width:40.704000pt;}
._4e{width:41.706667pt;}
._4a{width:42.922667pt;}
._4f{width:44.629333pt;}
._3d{width:46.378667pt;}
._45{width:47.424000pt;}
._27{width:48.594987pt;}
._26{width:50.378667pt;}
._32{width:52.285653pt;}
._35{width:53.207253pt;}
._37{width:55.733333pt;}
._3a{width:62.666667pt;}
._2c{width:64.004053pt;}
._31{width:66.485333pt;}
._38{width:68.178987pt;}
._23{width:73.106987pt;}
._2b{width:80.989653pt;}
._3c{width:82.186667pt;}
._49{width:89.597653pt;}
._18{width:92.650667pt;}
._4b{width:100.413653pt;}
._3e{width:106.251307pt;}
._48{width:113.317973pt;}
._21{width:115.690667pt;}
._24{width:117.642667pt;}
._3f{width:122.368000pt;}
._2e{width:124.586667pt;}
._39{width:126.378667pt;}
._33{width:130.322987pt;}
._28{width:133.778987pt;}
._46{width:139.018667pt;}
._2d{width:151.370667pt;}
._44{width:155.253333pt;}
._25{width:157.245653pt;}
._12{width:160.128000pt;}
._19{width:162.034987pt;}
._41{width:165.482667pt;}
._47{width:167.733333pt;}
._20{width:172.910933pt;}
._22{width:176.128000pt;}
.fsa{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y1a0{bottom:-93.472000pt;}
.y2f{bottom:-74.440000pt;}
.y22{bottom:-64.840000pt;}
.y19f{bottom:-61.152000pt;}
.y2e{bottom:-50.280000pt;}
.y21{bottom:-32.520000pt;}
.y2d{bottom:-29.960000pt;}
.y19e{bottom:-29.312000pt;}
.y19d{bottom:-14.560000pt;}
.y2c{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.560000pt;}
.yde{bottom:2.720000pt;}
.y9{bottom:3.360000pt;}
.y16a{bottom:5.920000pt;}
.yb{bottom:6.720000pt;}
.y8{bottom:8.480000pt;}
.y2b{bottom:10.560000pt;}
.y19c{bottom:15.840000pt;}
.y1f{bottom:16.000000pt;}
.y7{bottom:16.160000pt;}
.y26{bottom:20.226667pt;}
.y2a{bottom:30.880000pt;}
.y1e{bottom:32.320000pt;}
.yf{bottom:32.800000pt;}
.y19b{bottom:36.800000pt;}
.ye{bottom:38.720000pt;}
.y6{bottom:44.960000pt;}
.y24{bottom:47.200000pt;}
.y1d{bottom:48.640000pt;}
.y29{bottom:51.040000pt;}
.y19a{bottom:57.914667pt;}
.y15f{bottom:61.600000pt;}
.y13d{bottom:64.000000pt;}
.y1c{bottom:64.960000pt;}
.y6c{bottom:65.280000pt;}
.y6b{bottom:69.280000pt;}
.y199{bottom:70.874667pt;}
.y28{bottom:71.360000pt;}
.ya5{bottom:71.680000pt;}
.ye8{bottom:77.472000pt;}
.y15e{bottom:80.032000pt;}
.y84{bottom:80.992000pt;}
.y13c{bottom:82.432000pt;}
.y6a{bottom:82.912000pt;}
.yb8{bottom:84.512000pt;}
.y105{bottom:84.992000pt;}
.yc9{bottom:86.272000pt;}
.y69{bottom:86.912000pt;}
.y169{bottom:89.632000pt;}
.y198{bottom:91.834667pt;}
.y17f{bottom:95.392000pt;}
.y1b{bottom:97.120000pt;}
.y150{bottom:98.432000pt;}
.ya4{bottom:99.392000pt;}
.y68{bottom:100.512000pt;}
.y11d{bottom:101.792000pt;}
.y67{bottom:104.512000pt;}
.ye7{bottom:105.152000pt;}
.y83{bottom:108.512000pt;}
.yb7{bottom:112.192000pt;}
.y104{bottom:112.672000pt;}
.y197{bottom:112.954667pt;}
.y1a{bottom:113.440000pt;}
.yc8{bottom:113.792000pt;}
.y15d{bottom:114.432000pt;}
.y13b{bottom:116.832000pt;}
.y66{bottom:118.112000pt;}
.y11c{bottom:120.192000pt;}
.y65{bottom:122.112000pt;}
.ya3{bottom:123.232000pt;}
.y168{bottom:124.032000pt;}
.y19{bottom:129.760000pt;}
.ye6{bottom:132.672000pt;}
.y15c{bottom:132.832000pt;}
.y196{bottom:133.914667pt;}
.y13a{bottom:135.226667pt;}
.y64{bottom:135.706667pt;}
.y82{bottom:136.186667pt;}
.y11b{bottom:138.586667pt;}
.yd{bottom:138.746667pt;}
.y63{bottom:139.706667pt;}
.y103{bottom:140.186667pt;}
.yc7{bottom:141.466667pt;}
.y18{bottom:145.920000pt;}
.ya2{bottom:147.226667pt;}
.ye5{bottom:149.786667pt;}
.y62{bottom:154.586667pt;}
.y195{bottom:155.034667pt;}
.y167{bottom:158.426667pt;}
.ye4{bottom:160.506667pt;}
.y17{bottom:162.240000pt;}
.y81{bottom:163.706667pt;}
.y15b{bottom:167.226667pt;}
.yb6{bottom:167.386667pt;}
.y102{bottom:167.866667pt;}
.y194{bottom:167.994667pt;}
.yc6{bottom:168.986667pt;}
.y139{bottom:169.626667pt;}
.ya1{bottom:171.066667pt;}
.y11a{bottom:172.986667pt;}
.ye3{bottom:174.266667pt;}
.y61{bottom:183.546667pt;}
.y15a{bottom:185.626667pt;}
.ye2{bottom:188.026667pt;}
.y193{bottom:188.954667pt;}
.y80{bottom:191.386667pt;}
.y166{bottom:192.826667pt;}
.y16{bottom:194.560000pt;}
.yb5{bottom:194.906667pt;}
.y101{bottom:195.386667pt;}
.yc5{bottom:196.666667pt;}
.ya0{bottom:198.746667pt;}
.ye1{bottom:201.946667pt;}
.y60{bottom:206.106667pt;}
.y14f{bottom:206.426667pt;}
.y192{bottom:210.074667pt;}
.y15{bottom:210.880000pt;}
.ye0{bottom:215.706667pt;}
.y7f{bottom:218.906667pt;}
.y159{bottom:220.026667pt;}
.y5f{bottom:220.666667pt;}
.yb4{bottom:222.426667pt;}
.y100{bottom:223.066667pt;}
.y191{bottom:223.074667pt;}
.yc4{bottom:224.186667pt;}
.y9f{bottom:226.266667pt;}
.y14{bottom:227.066667pt;}
.y165{bottom:227.226667pt;}
.ydf{bottom:229.466667pt;}
.y5e{bottom:235.226667pt;}
.y158{bottom:238.426667pt;}
.y138{bottom:240.826667pt;}
.ydd{bottom:243.226667pt;}
.y13{bottom:243.386667pt;}
.y190{bottom:244.354667pt;}
.y7e{bottom:246.426667pt;}
.y5d{bottom:249.786667pt;}
.yb3{bottom:250.106667pt;}
.yff{bottom:250.586667pt;}
.yc3{bottom:251.866667pt;}
.y9e{bottom:253.786667pt;}
.y157{bottom:256.826667pt;}
.ydc{bottom:257.146667pt;}
.y14e{bottom:259.226667pt;}
.y164{bottom:261.626667pt;}
.y5c{bottom:264.346667pt;}
.ydb{bottom:270.906667pt;}
.y7d{bottom:274.106667pt;}
.y18f{bottom:274.754667pt;}
.y137{bottom:275.226667pt;}
.yb2{bottom:277.626667pt;}
.yfe{bottom:278.266667pt;}
.y5b{bottom:278.906667pt;}
.yc2{bottom:279.386667pt;}
.y9d{bottom:281.466667pt;}
.yda{bottom:284.666667pt;}
.y18e{bottom:287.714667pt;}
.y156{bottom:291.226667pt;}
.y5a{bottom:293.466667pt;}
.y136{bottom:293.626667pt;}
.y163{bottom:296.026667pt;}
.yd8{bottom:299.226667pt;}
.y7c{bottom:301.626667pt;}
.yb1{bottom:305.306667pt;}
.yfd{bottom:305.786667pt;}
.yc1{bottom:307.106667pt;}
.y59{bottom:308.066667pt;}
.y18d{bottom:308.834667pt;}
.y9c{bottom:309.026667pt;}
.y155{bottom:309.666667pt;}
.y14d{bottom:312.066667pt;}
.yd7{bottom:317.186667pt;}
.y27{bottom:320.226667pt;}
.y58{bottom:322.626667pt;}
.y135{bottom:328.066667pt;}
.y7b{bottom:329.346667pt;}
.y18c{bottom:329.794667pt;}
.y162{bottom:330.466667pt;}
.yb0{bottom:332.866667pt;}
.yfc{bottom:333.506667pt;}
.y17e{bottom:333.986667pt;}
.yc0{bottom:334.626667pt;}
.yd6{bottom:335.586667pt;}
.y9b{bottom:336.706667pt;}
.y57{bottom:337.186667pt;}
.y134{bottom:346.466667pt;}
.y18b{bottom:350.914667pt;}
.y56{bottom:351.746667pt;}
.y7a{bottom:356.866667pt;}
.yaf{bottom:360.546667pt;}
.yfb{bottom:361.026667pt;}
.ybf{bottom:362.306667pt;}
.y154{bottom:362.466667pt;}
.yd5{bottom:363.106667pt;}
.y9a{bottom:364.226667pt;}
.y14c{bottom:364.866667pt;}
.y55{bottom:366.466667pt;}
.y18a{bottom:371.874667pt;}
.y17d{bottom:379.426667pt;}
.y133{bottom:380.866667pt;}
.y54{bottom:381.026667pt;}
.y79{bottom:384.546667pt;}
.y189{bottom:384.834667pt;}
.yae{bottom:388.066667pt;}
.yfa{bottom:388.706667pt;}
.ybe{bottom:389.826667pt;}
.yd4{bottom:390.786667pt;}
.y99{bottom:391.906667pt;}
.y53{bottom:395.586667pt;}
.y132{bottom:399.266667pt;}
.y188{bottom:405.954667pt;}
.y17c{bottom:411.266667pt;}
.y78{bottom:412.066667pt;}
.y23{bottom:414.146667pt;}
.y25{bottom:414.240000pt;}
.y153{bottom:415.266667pt;}
.yad{bottom:415.746667pt;}
.yf9{bottom:416.226667pt;}
.ybd{bottom:417.346667pt;}
.y14b{bottom:417.666667pt;}
.y52{bottom:418.146667pt;}
.yd3{bottom:418.306667pt;}
.y98{bottom:419.426667pt;}
.y187{bottom:427.234667pt;}
.yc{bottom:432.546667pt;}
.y131{bottom:433.666667pt;}
.y51{bottom:433.826667pt;}
.y77{bottom:439.746667pt;}
.yac{bottom:443.266667pt;}
.yf8{bottom:443.906667pt;}
.ybc{bottom:445.026667pt;}
.yd2{bottom:445.986667pt;}
.y17b{bottom:446.946667pt;}
.y97{bottom:447.106667pt;}
.y130{bottom:452.066667pt;}
.y50{bottom:453.826667pt;}
.y186{bottom:457.661333pt;}
.ybb{bottom:462.146667pt;}
.y76{bottom:467.266667pt;}
.y152{bottom:468.066667pt;}
.y14a{bottom:470.466667pt;}
.yab{bottom:470.946667pt;}
.yf7{bottom:471.426667pt;}
.yba{bottom:472.226667pt;}
.yd1{bottom:473.506667pt;}
.y17a{bottom:474.466667pt;}
.y96{bottom:474.626667pt;}
.y4f{bottom:476.386667pt;}
.y185{bottom:479.261333pt;}
.y12f{bottom:486.466667pt;}
.y4e{bottom:490.946667pt;}
.y75{bottom:494.946667pt;}
.yaa{bottom:498.466667pt;}
.yf6{bottom:499.106667pt;}
.yd0{bottom:501.186667pt;}
.y179{bottom:502.146667pt;}
.y95{bottom:502.306667pt;}
.y12e{bottom:504.866667pt;}
.y4d{bottom:505.506667pt;}
.y184{bottom:511.101333pt;}
.ycf{bottom:519.586667pt;}
.y4c{bottom:520.066667pt;}
.y151{bottom:520.866667pt;}
.y74{bottom:522.466667pt;}
.y149{bottom:523.266667pt;}
.y10{bottom:523.773333pt;}
.ya9{bottom:526.146667pt;}
.yf5{bottom:526.626667pt;}
.y178{bottom:529.666667pt;}
.y94{bottom:529.826667pt;}
.y4b{bottom:534.626667pt;}
.yce{bottom:537.986667pt;}
.y12d{bottom:539.266667pt;}
.y148{bottom:541.693333pt;}
.y183{bottom:542.141333pt;}
.yf4{bottom:543.773333pt;}
.ya{bottom:547.933333pt;}
.y4a{bottom:549.213333pt;}
.y73{bottom:550.173333pt;}
.y16b{bottom:550.813333pt;}
.ya8{bottom:553.693333pt;}
.y119{bottom:554.333333pt;}
.yf3{bottom:554.493333pt;}
.ycd{bottom:554.973333pt;}
.y177{bottom:557.373333pt;}
.y93{bottom:557.533333pt;}
.y12c{bottom:557.693333pt;}
.y49{bottom:563.773333pt;}
.ycc{bottom:565.693333pt;}
.yf2{bottom:568.253333pt;}
.y30{bottom:573.053333pt;}
.y182{bottom:574.461333pt;}
.y147{bottom:576.093333pt;}
.y72{bottom:577.693333pt;}
.y48{bottom:578.333333pt;}
.y118{bottom:581.853333pt;}
.yf1{bottom:582.013333pt;}
.y176{bottom:584.893333pt;}
.y92{bottom:585.053333pt;}
.ycb{bottom:585.373333pt;}
.yca{bottom:586.653333pt;}
.ya7{bottom:589.373333pt;}
.y12b{bottom:592.093333pt;}
.y47{bottom:592.893333pt;}
.y146{bottom:594.493333pt;}
.yf0{bottom:595.933333pt;}
.y71{bottom:605.373333pt;}
.y181{bottom:606.301333pt;}
.y46{bottom:607.453333pt;}
.y117{bottom:609.533333pt;}
.yef{bottom:609.693333pt;}
.y12a{bottom:610.493333pt;}
.y175{bottom:612.573333pt;}
.y91{bottom:612.733333pt;}
.y45{bottom:622.173333pt;}
.yee{bottom:623.453333pt;}
.ya6{bottom:624.893333pt;}
.y145{bottom:628.893333pt;}
.y70{bottom:632.893333pt;}
.y44{bottom:636.733333pt;}
.y116{bottom:637.053333pt;}
.yed{bottom:637.213333pt;}
.y180{bottom:638.461333pt;}
.y174{bottom:640.093333pt;}
.y90{bottom:640.253333pt;}
.y129{bottom:644.893333pt;}
.y144{bottom:647.293333pt;}
.yec{bottom:651.133333pt;}
.y43{bottom:651.293333pt;}
.y6f{bottom:660.573333pt;}
.y128{bottom:663.293333pt;}
.y115{bottom:664.733333pt;}
.yeb{bottom:664.893333pt;}
.y42{bottom:665.853333pt;}
.y173{bottom:667.773333pt;}
.y8f{bottom:667.933333pt;}
.yea{bottom:679.293333pt;}
.y41{bottom:680.413333pt;}
.y143{bottom:681.693333pt;}
.y6e{bottom:688.093333pt;}
.y114{bottom:692.253333pt;}
.y40{bottom:694.973333pt;}
.y172{bottom:695.293333pt;}
.y8e{bottom:695.453333pt;}
.ye9{bottom:697.373333pt;}
.y127{bottom:697.693333pt;}
.y142{bottom:700.093333pt;}
.y6d{bottom:715.773333pt;}
.y126{bottom:716.093333pt;}
.y3f{bottom:716.733333pt;}
.y113{bottom:719.933333pt;}
.y171{bottom:722.973333pt;}
.y8d{bottom:723.133333pt;}
.y141{bottom:734.493333pt;}
.y3e{bottom:743.293333pt;}
.y112{bottom:747.453333pt;}
.y125{bottom:750.493333pt;}
.y8c{bottom:750.653333pt;}
.y140{bottom:752.893333pt;}
.y124{bottom:768.893333pt;}
.y3c{bottom:770.973333pt;}
.y111{bottom:775.173333pt;}
.y3d{bottom:777.093333pt;}
.y170{bottom:778.213333pt;}
.y8b{bottom:778.373333pt;}
.y13f{bottom:787.333333pt;}
.y12{bottom:789.733333pt;}
.y110{bottom:792.293333pt;}
.y3a{bottom:798.533333pt;}
.y10f{bottom:802.853333pt;}
.y123{bottom:803.333333pt;}
.y3b{bottom:804.613333pt;}
.y13e{bottom:805.733333pt;}
.y8a{bottom:805.893333pt;}
.y1a1{bottom:810.853333pt;}
.y10e{bottom:816.773333pt;}
.y122{bottom:821.733333pt;}
.y38{bottom:826.213333pt;}
.y10d{bottom:830.533333pt;}
.y39{bottom:832.293333pt;}
.y16f{bottom:833.413333pt;}
.y89{bottom:833.573333pt;}
.y121{bottom:840.133333pt;}
.y10c{bottom:844.293333pt;}
.y36{bottom:853.733333pt;}
.y10b{bottom:858.053333pt;}
.y120{bottom:858.533333pt;}
.y37{bottom:859.813333pt;}
.y16e{bottom:860.933333pt;}
.y88{bottom:861.093333pt;}
.y10a{bottom:871.973333pt;}
.y161{bottom:874.533333pt;}
.y34{bottom:881.413333pt;}
.y109{bottom:885.733333pt;}
.y35{bottom:887.493333pt;}
.y87{bottom:888.773333pt;}
.y11f{bottom:892.933333pt;}
.y16d{bottom:895.333333pt;}
.y108{bottom:899.493333pt;}
.y33{bottom:908.933333pt;}
.y11e{bottom:911.333333pt;}
.y107{bottom:913.253333pt;}
.y86{bottom:916.293333pt;}
.y160{bottom:927.333333pt;}
.y106{bottom:927.813333pt;}
.y16c{bottom:929.733333pt;}
.y32{bottom:936.613333pt;}
.y85{bottom:940.293333pt;}
.yb9{bottom:945.733333pt;}
.y31{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.680000pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h1e{height:5.025000pt;}
.h22{height:13.760000pt;}
.h20{height:13.792000pt;}
.h23{height:13.920000pt;}
.h5{height:21.440000pt;}
.h3{height:25.280000pt;}
.h19{height:26.381250pt;}
.h28{height:30.778125pt;}
.h18{height:31.390625pt;}
.h29{height:33.375000pt;}
.h4{height:34.453125pt;}
.h1f{height:36.431250pt;}
.h2{height:38.128125pt;}
.h15{height:42.063437pt;}
.h1a{height:42.084375pt;}
.h11{height:42.262500pt;}
.h10{height:44.722500pt;}
.h1b{height:47.109375pt;}
.h27{height:48.060000pt;}
.h21{height:48.375000pt;}
.h17{height:49.621875pt;}
.h6{height:50.321250pt;}
.h16{height:50.955000pt;}
.h8{height:51.519933pt;}
.ha{height:52.134375pt;}
.h24{height:57.375000pt;}
.hd{height:58.021250pt;}
.h1d{height:59.340000pt;}
.h14{height:62.781250pt;}
.h1c{height:62.812500pt;}
.h13{height:64.500000pt;}
.hf{height:89.440000pt;}
.h7{height:151.546667pt;}
.h12{height:154.400000pt;}
.he{height:161.440000pt;}
.hc{height:161.466667pt;}
.h2a{height:168.000000pt;}
.hb{height:272.186667pt;}
.h26{height:670.946667pt;}
.h9{height:1056.800000pt;}
.h25{height:1111.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.552000pt;}
.w17{width:56.640000pt;}
.w14{width:56.672000pt;}
.w16{width:56.832000pt;}
.w13{width:58.400000pt;}
.w15{width:66.080000pt;}
.w6{width:78.746667pt;}
.w12{width:113.280000pt;}
.w10{width:115.072000pt;}
.w11{width:122.912000pt;}
.wd{width:176.186667pt;}
.w19{width:189.626667pt;}
.wf{width:253.786667pt;}
.wc{width:285.186667pt;}
.wb{width:285.280000pt;}
.wa{width:285.346667pt;}
.w18{width:289.666667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.346667pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.we{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:4.320000pt;}
.x6{left:7.680000pt;}
.xc{left:9.600000pt;}
.x37{left:12.640000pt;}
.x39{left:14.880000pt;}
.x38{left:16.480000pt;}
.x3a{left:17.786667pt;}
.x41{left:18.746667pt;}
.xe{left:19.840000pt;}
.x34{left:22.266667pt;}
.x3c{left:23.200000pt;}
.x32{left:24.800000pt;}
.x3b{left:27.040000pt;}
.x40{left:28.160000pt;}
.xd{left:29.440000pt;}
.x2e{left:30.560000pt;}
.x15{left:33.440000pt;}
.x2d{left:40.794667pt;}
.x30{left:41.760000pt;}
.x4{left:57.279988pt;}
.x24{left:60.639988pt;}
.x5{left:64.960000pt;}
.x2b{left:66.719988pt;}
.x16{left:73.626667pt;}
.x29{left:81.439988pt;}
.x17{left:100.826667pt;}
.x25{left:104.511988pt;}
.x2c{left:108.192000pt;}
.x13{left:118.333333pt;}
.x8{left:122.106667pt;}
.x1a{left:135.706655pt;}
.x12{left:142.586667pt;}
.x10{left:144.986667pt;}
.x18{left:166.426667pt;}
.x19{left:170.746655pt;}
.x43{left:180.026667pt;}
.x27{left:197.306655pt;}
.x3f{left:201.306655pt;}
.x3e{left:203.706655pt;}
.x3d{left:204.826655pt;}
.x26{left:218.906655pt;}
.x23{left:249.306655pt;}
.x3{left:345.506655pt;}
.x11{left:361.026667pt;}
.xf{left:362.786667pt;}
.x14{left:366.146667pt;}
.x1b{left:392.866655pt;}
.x42{left:405.506667pt;}
.x1{left:410.466655pt;}
.x7{left:418.306667pt;}
.x33{left:420.386667pt;}
.x1f{left:475.133322pt;}
.x2f{left:477.053333pt;}
.x21{left:511.293322pt;}
.x20{left:523.133322pt;}
.x22{left:527.933322pt;}
.x35{left:543.133333pt;}
.x1c{left:597.893322pt;}
.x31{left:599.973333pt;}
.x36{left:656.613333pt;}
.x2{left:695.333322pt;}
.x28{left:696.933322pt;}
.xb{left:714.533333pt;}
.x2a{left:717.413322pt;}
.x1d{left:723.173310pt;}
.x1e{left:728.613322pt;}
.x9{left:745.413333pt;}
}




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