
    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_827e82eebb066a4a521cbb8e.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_544ae6e9872a248ddfb3c47d.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_bb3a2b230b1900f132865c7d.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_0193f94ce54541df31e73db3.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_664569bdd7b0e587c4a1b9c3.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_d24469261606b51d3f85e2e0.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_c1dc82d0f8c962d4fbaaabf2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5b0d2a30456038391b94615b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_beda00e9ef08a36ceac74476.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c3394ba65c37ae2ec3e5c57a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.891113;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_b96ae3e56342d6ea34fae54b.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9c16a91899c951c994029527.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9b5dcee454b047e6ef568ffc.woff')format("woff");}.ffe{font-family:ffe;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);}
.v1{vertical-align:-82.800000px;}
.v4{vertical-align:-79.920000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls15{letter-spacing:-2.520000px;}
.ls20{letter-spacing:-1.260000px;}
.ls5{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.414600px;}
.ls21{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.181200px;}
.ls29{letter-spacing:-0.175800px;}
.lsd{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.078600px;}
.ls2a{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.109200px;}
.ls1a{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.126000px;}
.ls25{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.305280px;}
.ls6{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.366000px;}
.ls13{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls19{letter-spacing:2.160000px;}
.ls1d{letter-spacing:5.040000px;}
.ls12{letter-spacing:6.480000px;}
.ls24{letter-spacing:14.400000px;}
.ls26{letter-spacing:15.120000px;}
.ls23{letter-spacing:23.040000px;}
.ls1e{letter-spacing:25.920000px;}
.lse{letter-spacing:40.986720px;}
.ls18{letter-spacing:805.800000px;}
.ls27{letter-spacing:1492.140000px;}
.ls28{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;}
}
.ws10{word-spacing:-59.760000px;}
.ws2{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.900080px;}
.ws16{word-spacing:-18.576000px;}
.ws12{word-spacing:-18.288000px;}
.wse{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.450800px;}
.wsb{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.145400px;}
.ws6{word-spacing:-15.840000px;}
.ws11{word-spacing:-14.940000px;}
.ws14{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.427160px;}
.ws3{word-spacing:-13.229520px;}
.ws19{word-spacing:-12.420000px;}
.ws1d{word-spacing:-12.186000px;}
.ws18{word-spacing:-12.060000px;}
.ws13{word-spacing:-10.980000px;}
.ws17{word-spacing:-9.000000px;}
.ws1a{word-spacing:-8.280000px;}
.ws1b{word-spacing:-7.560000px;}
.ws1c{word-spacing:-6.840000px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-9.201600px;}
._25{margin-left:-8.035200px;}
._27{margin-left:-6.120000px;}
._19{margin-left:-4.778880px;}
._10{margin-left:-3.340320px;}
._e{margin-left:-2.313360px;}
._5{margin-left:-1.132560px;}
._0{width:1.051200px;}
._4{width:2.594160px;}
._f{width:3.854880px;}
._16{width:5.184000px;}
._1c{width:6.292800px;}
._2{width:7.315200px;}
._3{width:8.904240px;}
._8{width:10.208160px;}
._a{width:12.036240px;}
._11{width:13.243680px;}
._15{width:15.178080px;}
._9{width:16.314480px;}
._14{width:17.668080px;}
._26{width:18.824400px;}
._6{width:19.864800px;}
._d{width:20.902320px;}
._17{width:22.059360px;}
._1d{width:23.561280px;}
._1a{width:24.984000px;}
._12{width:26.164800px;}
._13{width:27.370080px;}
._1e{width:28.393200px;}
._1{width:29.700720px;}
._7{width:31.214160px;}
._18{width:32.496480px;}
._29{width:33.694560px;}
._23{width:35.064000px;}
._24{width:36.072000px;}
._1f{width:41.400000px;}
._b{width:43.220400px;}
._c{width:44.363040px;}
._21{width:47.592000px;}
._28{width:48.672000px;}
._20{width:53.856000px;}
._22{width:55.080000px;}
.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);}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.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;}
.y171{bottom:-105.156000px;}
.y2f{bottom:-83.745000px;}
.y22{bottom:-72.945000px;}
.y170{bottom:-68.796000px;}
.y2e{bottom:-56.565000px;}
.y21{bottom:-36.585000px;}
.y2d{bottom:-33.705000px;}
.y16f{bottom:-32.976000px;}
.y16e{bottom:-16.380000px;}
.y2c{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:2.880000px;}
.y9c{bottom:3.060000px;}
.y9{bottom:3.780000px;}
.y14a{bottom:6.660000px;}
.yb{bottom:7.560000px;}
.y8{bottom:9.540000px;}
.y2b{bottom:11.880000px;}
.y16d{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;}
.y16c{bottom:41.400000px;}
.ye{bottom:43.560000px;}
.y6{bottom:50.580000px;}
.yec{bottom:51.660000px;}
.ye5{bottom:51.690000px;}
.y24{bottom:53.100000px;}
.y1d{bottom:54.720000px;}
.y29{bottom:57.420000px;}
.y16b{bottom:65.154000px;}
.ye2{bottom:72.540000px;}
.y1c{bottom:73.080000px;}
.y67{bottom:73.620000px;}
.y127{bottom:76.500000px;}
.y66{bottom:78.120000px;}
.y16a{bottom:79.734000px;}
.y28{bottom:80.280000px;}
.y112{bottom:83.196000px;}
.y7e{bottom:91.116000px;}
.yb6{bottom:94.176000px;}
.y65{bottom:95.256000px;}
.y149{bottom:96.336000px;}
.y126{bottom:97.236000px;}
.y64{bottom:99.756000px;}
.y169{bottom:103.314000px;}
.ye1{bottom:103.716000px;}
.y150{bottom:107.316000px;}
.y1b{bottom:109.260000px;}
.yfc{bottom:109.296000px;}
.y99{bottom:113.616000px;}
.y111{bottom:114.336000px;}
.y63{bottom:116.856000px;}
.y148{bottom:117.036000px;}
.y62{bottom:121.356000px;}
.y7d{bottom:122.076000px;}
.yb5{bottom:125.316000px;}
.y168{bottom:127.074000px;}
.y1a{bottom:127.620000px;}
.ye0{bottom:134.676000px;}
.y125{bottom:135.936000px;}
.y61{bottom:138.276000px;}
.yfb{bottom:140.256000px;}
.y60{bottom:142.776000px;}
.y98{bottom:144.756000px;}
.y110{bottom:145.296000px;}
.y19{bottom:145.980000px;}
.y167{bottom:150.654000px;}
.y7c{bottom:153.210000px;}
.y147{bottom:155.730000px;}
.yd{bottom:156.090000px;}
.yb4{bottom:156.270000px;}
.y124{bottom:156.630000px;}
.y5f{bottom:159.870000px;}
.y18{bottom:164.160000px;}
.y5e{bottom:164.370000px;}
.ydf{bottom:165.810000px;}
.yfa{bottom:171.390000px;}
.y166{bottom:174.414000px;}
.y97{bottom:175.710000px;}
.y10f{bottom:176.430000px;}
.y17{bottom:182.520000px;}
.y5d{bottom:182.550000px;}
.y7b{bottom:184.170000px;}
.yb3{bottom:187.410000px;}
.y165{bottom:188.994000px;}
.y123{bottom:195.330000px;}
.yde{bottom:196.770000px;}
.yf9{bottom:202.350000px;}
.y96{bottom:206.850000px;}
.y10e{bottom:207.390000px;}
.y146{bottom:212.250000px;}
.y164{bottom:212.574000px;}
.y5c{bottom:212.610000px;}
.y7a{bottom:215.310000px;}
.y122{bottom:216.030000px;}
.ydd{bottom:217.470000px;}
.yb2{bottom:218.370000px;}
.y16{bottom:218.880000px;}
.y145{bottom:232.950000px;}
.yf8{bottom:233.490000px;}
.y163{bottom:236.334000px;}
.ydc{bottom:236.730000px;}
.y15{bottom:237.240000px;}
.y95{bottom:237.810000px;}
.y10d{bottom:238.530000px;}
.y5b{bottom:240.510000px;}
.y79{bottom:246.270000px;}
.yb1{bottom:249.330000px;}
.ydb{bottom:250.590000px;}
.y162{bottom:250.959000px;}
.y121{bottom:254.730000px;}
.y14{bottom:255.450000px;}
.y5a{bottom:259.590000px;}
.yda{bottom:264.270000px;}
.yf7{bottom:264.450000px;}
.y144{bottom:268.590000px;}
.y94{bottom:268.950000px;}
.y10c{bottom:269.490000px;}
.y13{bottom:273.810000px;}
.y161{bottom:274.899000px;}
.y120{bottom:275.430000px;}
.y78{bottom:277.230000px;}
.yd9{bottom:278.130000px;}
.y59{bottom:278.670000px;}
.yb0{bottom:280.470000px;}
.y143{bottom:289.290000px;}
.yd8{bottom:290.190000px;}
.yf6{bottom:295.590000px;}
.y58{bottom:297.570000px;}
.y93{bottom:299.910000px;}
.y10b{bottom:300.630000px;}
.yd7{bottom:306.390000px;}
.y77{bottom:308.370000px;}
.y160{bottom:309.099000px;}
.y142{bottom:309.990000px;}
.yaf{bottom:311.430000px;}
.y11f{bottom:314.130000px;}
.y57{bottom:316.650000px;}
.yd6{bottom:322.770000px;}
.y15f{bottom:323.679000px;}
.yf5{bottom:326.550000px;}
.y92{bottom:328.890000px;}
.y10a{bottom:331.590000px;}
.y11e{bottom:334.830000px;}
.y56{bottom:335.550000px;}
.yd5{bottom:338.970000px;}
.y76{bottom:339.330000px;}
.yae{bottom:342.570000px;}
.y141{bottom:345.675000px;}
.y91{bottom:346.215000px;}
.y15e{bottom:347.439000px;}
.y55{bottom:354.495000px;}
.yd4{bottom:355.215000px;}
.yf4{bottom:357.735000px;}
.y27{bottom:360.255000px;}
.y109{bottom:362.775000px;}
.y90{bottom:363.495000px;}
.y140{bottom:366.375000px;}
.y75{bottom:370.515000px;}
.y15d{bottom:371.019000px;}
.yd3{bottom:371.595000px;}
.y54{bottom:373.575000px;}
.yf3{bottom:378.435000px;}
.y8f{bottom:380.775000px;}
.yd2{bottom:387.795000px;}
.y53{bottom:392.475000px;}
.y108{bottom:393.735000px;}
.y11d{bottom:394.275000px;}
.y15c{bottom:394.779000px;}
.y8e{bottom:398.055000px;}
.y74{bottom:401.475000px;}
.y13f{bottom:402.195000px;}
.yad{bottom:404.715000px;}
.yf2{bottom:406.695000px;}
.yd1{bottom:408.135000px;}
.y52{bottom:411.555000px;}
.y8d{bottom:415.155000px;}
.y15b{bottom:418.359000px;}
.yf1{bottom:420.375000px;}
.y13e{bottom:422.895000px;}
.y107{bottom:424.695000px;}
.yd0{bottom:428.835000px;}
.y14f{bottom:429.735000px;}
.y51{bottom:430.455000px;}
.y73{bottom:432.615000px;}
.y15a{bottom:432.939000px;}
.y11c{bottom:432.975000px;}
.yf0{bottom:434.235000px;}
.yac{bottom:435.675000px;}
.y8c{bottom:441.435000px;}
.yeb{bottom:446.295000px;}
.y11b{bottom:453.675000px;}
.y106{bottom:455.835000px;}
.y159{bottom:456.699000px;}
.y50{bottom:458.355000px;}
.y13d{bottom:458.535000px;}
.y8b{bottom:458.715000px;}
.ycf{bottom:459.795000px;}
.yef{bottom:462.495000px;}
.y72{bottom:463.575000px;}
.y23{bottom:465.915000px;}
.y25{bottom:466.020000px;}
.yab{bottom:466.815000px;}
.y8a{bottom:475.995000px;}
.y4f{bottom:478.155000px;}
.yee{bottom:478.875000px;}
.y13c{bottom:479.235000px;}
.y158{bottom:480.639000px;}
.y14e{bottom:480.855000px;}
.yc{bottom:486.615000px;}
.y105{bottom:486.795000px;}
.yce{bottom:490.935000px;}
.y11a{bottom:492.375000px;}
.y89{bottom:493.275000px;}
.y71{bottom:494.715000px;}
.yed{bottom:495.075000px;}
.yaa{bottom:497.775000px;}
.y4e{bottom:501.015000px;}
.y88{bottom:510.555000px;}
.yea{bottom:511.275000px;}
.y119{bottom:513.075000px;}
.y157{bottom:514.869000px;}
.y13b{bottom:514.875000px;}
.y14d{bottom:516.675000px;}
.y104{bottom:517.935000px;}
.y4d{bottom:520.275000px;}
.ycd{bottom:521.895000px;}
.y70{bottom:525.675000px;}
.y87{bottom:527.655000px;}
.ya9{bottom:528.915000px;}
.y118{bottom:533.775000px;}
.y13a{bottom:535.575000px;}
.y156{bottom:539.169000px;}
.ye9{bottom:543.855000px;}
.y86{bottom:544.935000px;}
.y4c{bottom:548.175000px;}
.y103{bottom:548.895000px;}
.ycc{bottom:553.035000px;}
.y139{bottom:556.275000px;}
.y6f{bottom:556.815000px;}
.ya8{bottom:559.875000px;}
.ye4{bottom:560.235000px;}
.y85{bottom:562.215000px;}
.y4b{bottom:567.255000px;}
.y117{bottom:572.475000px;}
.y155{bottom:574.989000px;}
.ye8{bottom:576.435000px;}
.y84{bottom:579.495000px;}
.y102{bottom:580.035000px;}
.ycb{bottom:583.995000px;}
.y4a{bottom:586.155000px;}
.y6e{bottom:587.775000px;}
.y10{bottom:589.245000px;}
.ya7{bottom:591.015000px;}
.y138{bottom:592.095000px;}
.ye7{bottom:592.815000px;}
.y116{bottom:593.175000px;}
.y49{bottom:605.055000px;}
.y83{bottom:605.595000px;}
.ye6{bottom:609.045000px;}
.y154{bottom:609.909000px;}
.y101{bottom:611.025000px;}
.y137{bottom:612.825000px;}
.yca{bottom:615.165000px;}
.ya{bottom:616.425000px;}
.y6d{bottom:618.945000px;}
.y14b{bottom:619.665000px;}
.ya6{bottom:622.005000px;}
.y82{bottom:622.905000px;}
.y48{bottom:624.165000px;}
.ye3{bottom:629.205000px;}
.y100{bottom:630.285000px;}
.y115{bottom:631.905000px;}
.y81{bottom:640.185000px;}
.y47{bottom:643.065000px;}
.yff{bottom:644.145000px;}
.y30{bottom:644.685000px;}
.yc9{bottom:646.125000px;}
.y153{bottom:646.269000px;}
.y136{bottom:648.465000px;}
.y6c{bottom:649.905000px;}
.y114{bottom:652.605000px;}
.ya5{bottom:653.145000px;}
.yfe{bottom:655.485000px;}
.y80{bottom:657.465000px;}
.y46{bottom:662.145000px;}
.y135{bottom:669.165000px;}
.y7f{bottom:674.745000px;}
.yc8{bottom:677.265000px;}
.y45{bottom:681.045000px;}
.y152{bottom:682.089000px;}
.ya4{bottom:684.105000px;}
.y134{bottom:689.865000px;}
.y113{bottom:691.305000px;}
.y44{bottom:699.945000px;}
.yc7{bottom:708.225000px;}
.y6b{bottom:712.005000px;}
.ya3{bottom:715.245000px;}
.y151{bottom:718.269000px;}
.y43{bottom:719.025000px;}
.y133{bottom:725.505000px;}
.y42{bottom:737.925000px;}
.yc6{bottom:739.365000px;}
.y6a{bottom:743.145000px;}
.ya2{bottom:746.205000px;}
.y41{bottom:757.005000px;}
.yc5{bottom:758.625000px;}
.ya1{bottom:765.465000px;}
.yc4{bottom:772.305000px;}
.y69{bottom:774.105000px;}
.y40{bottom:775.905000px;}
.ya0{bottom:777.525000px;}
.y132{bottom:782.025000px;}
.yc3{bottom:786.165000px;}
.y9f{bottom:793.725000px;}
.yc2{bottom:798.225000px;}
.y131{bottom:802.725000px;}
.y3f{bottom:804.165000px;}
.y68{bottom:805.245000px;}
.y9d{bottom:810.105000px;}
.yc1{bottom:814.425000px;}
.y9b{bottom:826.305000px;}
.yc0{bottom:830.625000px;}
.y3e{bottom:836.205000px;}
.y130{bottom:838.365000px;}
.y9a{bottom:846.645000px;}
.ybf{bottom:847.005000px;}
.y12f{bottom:859.065000px;}
.ybe{bottom:863.205000px;}
.y3c{bottom:867.345000px;}
.y3d{bottom:874.230000px;}
.yfd{bottom:877.650000px;}
.ybd{bottom:879.630000px;}
.y12{bottom:888.450000px;}
.y12e{bottom:894.750000px;}
.ybc{bottom:895.830000px;}
.y3a{bottom:898.350000px;}
.y3b{bottom:905.190000px;}
.ybb{bottom:912.210000px;}
.y12d{bottom:915.450000px;}
.yba{bottom:928.410000px;}
.y38{bottom:929.490000px;}
.y39{bottom:936.330000px;}
.yb9{bottom:944.610000px;}
.y12c{bottom:951.090000px;}
.y36{bottom:960.450000px;}
.yb8{bottom:960.990000px;}
.y37{bottom:967.290000px;}
.y12b{bottom:971.790000px;}
.yb7{bottom:981.150000px;}
.y34{bottom:991.590000px;}
.y35{bottom:998.430000px;}
.y12a{bottom:1007.610000px;}
.y33{bottom:1022.550000px;}
.y129{bottom:1028.310000px;}
.y14c{bottom:1043.250000px;}
.y32{bottom:1053.690000px;}
.y128{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;}
.h21{height:15.480000px;}
.h27{height:15.516000px;}
.h1f{height:15.660000px;}
.h24{height:15.696000px;}
.h5{height:24.120000px;}
.h3{height:28.440000px;}
.h30{height:34.625391px;}
.h18{height:35.314453px;}
.h19{height:35.332031px;}
.h31{height:37.546875px;}
.h4{height:38.759766px;}
.h2{height:42.894141px;}
.h26{height:43.246406px;}
.h15{height:47.321367px;}
.h22{height:47.344922px;}
.h11{height:47.545312px;}
.h2c{height:47.678906px;}
.h10{height:50.312812px;}
.h29{height:52.971680px;}
.h1a{height:52.998047px;}
.h2b{height:53.314453px;}
.h23{height:53.332031px;}
.h25{height:53.512031px;}
.h1e{height:53.573906px;}
.h2f{height:54.067500px;}
.h20{height:54.421875px;}
.h6{height:56.611406px;}
.h8{height:57.959925px;}
.ha{height:58.651172px;}
.h1d{height:60.226875px;}
.h2a{height:64.260000px;}
.h28{height:64.296000px;}
.h1b{height:64.546875px;}
.h17{height:65.010937px;}
.hd{height:65.273906px;}
.h16{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;}
.h32{height:189.000000px;}
.hb{height:306.210000px;}
.h2e{height:754.815000px;}
.h9{height:1188.900000px;}
.h2d{height:1249.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.996000px;}
.w1c{width:40.860000px;}
.w1b{width:56.340000px;}
.w19{width:56.520000px;}
.w17{width:61.740000px;}
.w1a{width:62.100000px;}
.w15{width:62.280000px;}
.w18{width:62.316000px;}
.w16{width:62.640000px;}
.w14{width:72.936000px;}
.w22{width:73.440000px;}
.w21{width:84.276000px;}
.w6{width:88.590000px;}
.w1d{width:94.500000px;}
.w1f{width:94.860000px;}
.w20{width:95.076000px;}
.w1e{width:105.876000px;}
.w13{width:115.560000px;}
.w23{width:127.080000px;}
.wf{width:147.960000px;}
.w12{width:158.070000px;}
.w10{width:169.770000px;}
.w27{width:184.350000px;}
.w26{width:188.130000px;}
.wd{width:198.210000px;}
.w25{width:209.550000px;}
.w29{width:213.330000px;}
.w11{width:233.310000px;}
.wc{width:320.835000px;}
.wb{width:320.940000px;}
.wa{width:321.015000px;}
.w28{width:325.875000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.515000px;}
.w24{width:583.485000px;}
.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;}
.x2c{left:3.780000px;}
.xa{left:4.860000px;}
.x6{left:8.640000px;}
.x49{left:9.720000px;}
.xc{left:10.800000px;}
.x47{left:12.240000px;}
.x41{left:13.680000px;}
.x46{left:14.760000px;}
.x32{left:16.920000px;}
.x48{left:19.290000px;}
.x45{left:20.340000px;}
.xe{left:22.320000px;}
.x3d{left:24.840000px;}
.x5b{left:25.920000px;}
.x31{left:27.000000px;}
.x44{left:28.260000px;}
.x42{left:29.700000px;}
.x43{left:31.140000px;}
.xd{left:33.120000px;}
.x55{left:35.280000px;}
.x59{left:36.540000px;}
.x15{left:37.620000px;}
.x58{left:38.700000px;}
.x53{left:40.680000px;}
.x5a{left:42.660000px;}
.x30{left:43.785000px;}
.x4f{left:46.080000px;}
.x56{left:48.060000px;}
.x57{left:49.500000px;}
.x4d{left:51.480000px;}
.x2e{left:53.685000px;}
.x6a{left:55.305000px;}
.x6b{left:62.325000px;}
.x4{left:64.439987px;}
.x69{left:66.825000px;}
.x24{left:68.939987px;}
.x62{left:70.785000px;}
.x5{left:73.080000px;}
.x33{left:74.565000px;}
.x65{left:76.005000px;}
.x68{left:77.790000px;}
.x64{left:79.950000px;}
.x2f{left:81.390000px;}
.x16{left:82.830000px;}
.x67{left:86.265000px;}
.x63{left:88.785000px;}
.x66{left:89.850000px;}
.x36{left:100.656000px;}
.x34{left:102.090000px;}
.x19{left:104.255987px;}
.x29{left:106.416000px;}
.x1a{left:112.355987px;}
.x17{left:113.430000px;}
.x25{left:117.575987px;}
.x5e{left:120.275987px;}
.x13{left:133.125000px;}
.x8{left:137.370000px;}
.x5c{left:138.995987px;}
.x5d{left:140.975987px;}
.x12{left:160.410000px;}
.x10{left:163.110000px;}
.x18{left:187.230000px;}
.x6c{left:193.169987px;}
.x28{left:203.069987px;}
.x26{left:213.329987px;}
.x37{left:216.930000px;}
.x35{left:222.869987px;}
.x4c{left:233.490000px;}
.x5f{left:240.165000px;}
.x27{left:245.189987px;}
.x2a{left:255.090000px;}
.x4b{left:257.609987px;}
.x23{left:280.469987px;}
.x4a{left:283.709987px;}
.x38{left:290.595000px;}
.x4e{left:340.095000px;}
.x39{left:353.595000px;}
.x3{left:388.694987px;}
.x11{left:406.155000px;}
.xf{left:408.135000px;}
.x14{left:411.915000px;}
.x3a{left:416.955000px;}
.x2b{left:425.595000px;}
.x50{left:435.675000px;}
.x1b{left:441.974987px;}
.x60{left:444.675000px;}
.x6e{left:456.195000px;}
.x1{left:461.774987px;}
.x7{left:470.595000px;}
.x3b{left:479.415000px;}
.x51{left:531.645000px;}
.x3c{left:542.445000px;}
.x1f{left:564.944987px;}
.x1c{left:585.464987px;}
.x20{left:595.544987px;}
.x3e{left:599.685000px;}
.x52{left:627.225000px;}
.x22{left:630.104987px;}
.x61{left:633.525000px;}
.x2d{left:659.625000px;}
.x3f{left:662.505000px;}
.x21{left:702.509987px;}
.x54{left:712.410000px;}
.x40{left:725.550000px;}
.x2{left:782.249987px;}
.x6d{left:784.049987px;}
.xb{left:803.850000px;}
.x1d{left:813.569973px;}
.x1e{left:819.689987px;}
.x9{left:838.590000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v4{vertical-align:-71.040000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls15{letter-spacing:-2.240000pt;}
.ls20{letter-spacing:-1.120000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls21{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls29{letter-spacing:-0.156267pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.069867pt;}
.ls2a{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.097067pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.112000pt;}
.ls25{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.271360pt;}
.ls6{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.325333pt;}
.ls13{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls19{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls12{letter-spacing:5.760000pt;}
.ls24{letter-spacing:12.800000pt;}
.ls26{letter-spacing:13.440000pt;}
.ls23{letter-spacing:20.480000pt;}
.ls1e{letter-spacing:23.040000pt;}
.lse{letter-spacing:36.432640pt;}
.ls18{letter-spacing:716.266667pt;}
.ls27{letter-spacing:1326.346667pt;}
.ls28{letter-spacing:1329.066667pt;}
.ws10{word-spacing:-53.120000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws0{word-spacing:-17.688960pt;}
.ws16{word-spacing:-16.512000pt;}
.ws12{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.622933pt;}
.wsb{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.351467pt;}
.ws6{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.280000pt;}
.ws14{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.935253pt;}
.ws3{word-spacing:-11.759573pt;}
.ws19{word-spacing:-11.040000pt;}
.ws1d{word-spacing:-10.832000pt;}
.ws18{word-spacing:-10.720000pt;}
.ws13{word-spacing:-9.760000pt;}
.ws17{word-spacing:-8.000000pt;}
.ws1a{word-spacing:-7.360000pt;}
.ws1b{word-spacing:-6.720000pt;}
.ws1c{word-spacing:-6.080000pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-8.179200pt;}
._25{margin-left:-7.142400pt;}
._27{margin-left:-5.440000pt;}
._19{margin-left:-4.247893pt;}
._10{margin-left:-2.969173pt;}
._e{margin-left:-2.056320pt;}
._5{margin-left:-1.006720pt;}
._0{width:0.934400pt;}
._4{width:2.305920pt;}
._f{width:3.426560pt;}
._16{width:4.608000pt;}
._1c{width:5.593600pt;}
._2{width:6.502400pt;}
._3{width:7.914880pt;}
._8{width:9.073920pt;}
._a{width:10.698880pt;}
._11{width:11.772160pt;}
._15{width:13.491627pt;}
._9{width:14.501760pt;}
._14{width:15.704960pt;}
._26{width:16.732800pt;}
._6{width:17.657600pt;}
._d{width:18.579840pt;}
._17{width:19.608320pt;}
._1d{width:20.943360pt;}
._1a{width:22.208000pt;}
._12{width:23.257600pt;}
._13{width:24.328960pt;}
._1e{width:25.238400pt;}
._1{width:26.400640pt;}
._7{width:27.745920pt;}
._18{width:28.885760pt;}
._29{width:29.950720pt;}
._23{width:31.168000pt;}
._24{width:32.064000pt;}
._1f{width:36.800000pt;}
._b{width:38.418133pt;}
._c{width:39.433813pt;}
._21{width:42.304000pt;}
._28{width:43.264000pt;}
._20{width:47.872000pt;}
._22{width:48.960000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.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;}
.y171{bottom:-93.472000pt;}
.y2f{bottom:-74.440000pt;}
.y22{bottom:-64.840000pt;}
.y170{bottom:-61.152000pt;}
.y2e{bottom:-50.280000pt;}
.y21{bottom:-32.520000pt;}
.y2d{bottom:-29.960000pt;}
.y16f{bottom:-29.312000pt;}
.y16e{bottom:-14.560000pt;}
.y2c{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.560000pt;}
.y9c{bottom:2.720000pt;}
.y9{bottom:3.360000pt;}
.y14a{bottom:5.920000pt;}
.yb{bottom:6.720000pt;}
.y8{bottom:8.480000pt;}
.y2b{bottom:10.560000pt;}
.y16d{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;}
.y16c{bottom:36.800000pt;}
.ye{bottom:38.720000pt;}
.y6{bottom:44.960000pt;}
.yec{bottom:45.920000pt;}
.ye5{bottom:45.946667pt;}
.y24{bottom:47.200000pt;}
.y1d{bottom:48.640000pt;}
.y29{bottom:51.040000pt;}
.y16b{bottom:57.914667pt;}
.ye2{bottom:64.480000pt;}
.y1c{bottom:64.960000pt;}
.y67{bottom:65.440000pt;}
.y127{bottom:68.000000pt;}
.y66{bottom:69.440000pt;}
.y16a{bottom:70.874667pt;}
.y28{bottom:71.360000pt;}
.y112{bottom:73.952000pt;}
.y7e{bottom:80.992000pt;}
.yb6{bottom:83.712000pt;}
.y65{bottom:84.672000pt;}
.y149{bottom:85.632000pt;}
.y126{bottom:86.432000pt;}
.y64{bottom:88.672000pt;}
.y169{bottom:91.834667pt;}
.ye1{bottom:92.192000pt;}
.y150{bottom:95.392000pt;}
.y1b{bottom:97.120000pt;}
.yfc{bottom:97.152000pt;}
.y99{bottom:100.992000pt;}
.y111{bottom:101.632000pt;}
.y63{bottom:103.872000pt;}
.y148{bottom:104.032000pt;}
.y62{bottom:107.872000pt;}
.y7d{bottom:108.512000pt;}
.yb5{bottom:111.392000pt;}
.y168{bottom:112.954667pt;}
.y1a{bottom:113.440000pt;}
.ye0{bottom:119.712000pt;}
.y125{bottom:120.832000pt;}
.y61{bottom:122.912000pt;}
.yfb{bottom:124.672000pt;}
.y60{bottom:126.912000pt;}
.y98{bottom:128.672000pt;}
.y110{bottom:129.152000pt;}
.y19{bottom:129.760000pt;}
.y167{bottom:133.914667pt;}
.y7c{bottom:136.186667pt;}
.y147{bottom:138.426667pt;}
.yd{bottom:138.746667pt;}
.yb4{bottom:138.906667pt;}
.y124{bottom:139.226667pt;}
.y5f{bottom:142.106667pt;}
.y18{bottom:145.920000pt;}
.y5e{bottom:146.106667pt;}
.ydf{bottom:147.386667pt;}
.yfa{bottom:152.346667pt;}
.y166{bottom:155.034667pt;}
.y97{bottom:156.186667pt;}
.y10f{bottom:156.826667pt;}
.y17{bottom:162.240000pt;}
.y5d{bottom:162.266667pt;}
.y7b{bottom:163.706667pt;}
.yb3{bottom:166.586667pt;}
.y165{bottom:167.994667pt;}
.y123{bottom:173.626667pt;}
.yde{bottom:174.906667pt;}
.yf9{bottom:179.866667pt;}
.y96{bottom:183.866667pt;}
.y10e{bottom:184.346667pt;}
.y146{bottom:188.666667pt;}
.y164{bottom:188.954667pt;}
.y5c{bottom:188.986667pt;}
.y7a{bottom:191.386667pt;}
.y122{bottom:192.026667pt;}
.ydd{bottom:193.306667pt;}
.yb2{bottom:194.106667pt;}
.y16{bottom:194.560000pt;}
.y145{bottom:207.066667pt;}
.yf8{bottom:207.546667pt;}
.y163{bottom:210.074667pt;}
.ydc{bottom:210.426667pt;}
.y15{bottom:210.880000pt;}
.y95{bottom:211.386667pt;}
.y10d{bottom:212.026667pt;}
.y5b{bottom:213.786667pt;}
.y79{bottom:218.906667pt;}
.yb1{bottom:221.626667pt;}
.ydb{bottom:222.746667pt;}
.y162{bottom:223.074667pt;}
.y121{bottom:226.426667pt;}
.y14{bottom:227.066667pt;}
.y5a{bottom:230.746667pt;}
.yda{bottom:234.906667pt;}
.yf7{bottom:235.066667pt;}
.y144{bottom:238.746667pt;}
.y94{bottom:239.066667pt;}
.y10c{bottom:239.546667pt;}
.y13{bottom:243.386667pt;}
.y161{bottom:244.354667pt;}
.y120{bottom:244.826667pt;}
.y78{bottom:246.426667pt;}
.yd9{bottom:247.226667pt;}
.y59{bottom:247.706667pt;}
.yb0{bottom:249.306667pt;}
.y143{bottom:257.146667pt;}
.yd8{bottom:257.946667pt;}
.yf6{bottom:262.746667pt;}
.y58{bottom:264.506667pt;}
.y93{bottom:266.586667pt;}
.y10b{bottom:267.226667pt;}
.yd7{bottom:272.346667pt;}
.y77{bottom:274.106667pt;}
.y160{bottom:274.754667pt;}
.y142{bottom:275.546667pt;}
.yaf{bottom:276.826667pt;}
.y11f{bottom:279.226667pt;}
.y57{bottom:281.466667pt;}
.yd6{bottom:286.906667pt;}
.y15f{bottom:287.714667pt;}
.yf5{bottom:290.266667pt;}
.y92{bottom:292.346667pt;}
.y10a{bottom:294.746667pt;}
.y11e{bottom:297.626667pt;}
.y56{bottom:298.266667pt;}
.yd5{bottom:301.306667pt;}
.y76{bottom:301.626667pt;}
.yae{bottom:304.506667pt;}
.y141{bottom:307.266667pt;}
.y91{bottom:307.746667pt;}
.y15e{bottom:308.834667pt;}
.y55{bottom:315.106667pt;}
.yd4{bottom:315.746667pt;}
.yf4{bottom:317.986667pt;}
.y27{bottom:320.226667pt;}
.y109{bottom:322.466667pt;}
.y90{bottom:323.106667pt;}
.y140{bottom:325.666667pt;}
.y75{bottom:329.346667pt;}
.y15d{bottom:329.794667pt;}
.yd3{bottom:330.306667pt;}
.y54{bottom:332.066667pt;}
.yf3{bottom:336.386667pt;}
.y8f{bottom:338.466667pt;}
.yd2{bottom:344.706667pt;}
.y53{bottom:348.866667pt;}
.y108{bottom:349.986667pt;}
.y11d{bottom:350.466667pt;}
.y15c{bottom:350.914667pt;}
.y8e{bottom:353.826667pt;}
.y74{bottom:356.866667pt;}
.y13f{bottom:357.506667pt;}
.yad{bottom:359.746667pt;}
.yf2{bottom:361.506667pt;}
.yd1{bottom:362.786667pt;}
.y52{bottom:365.826667pt;}
.y8d{bottom:369.026667pt;}
.y15b{bottom:371.874667pt;}
.yf1{bottom:373.666667pt;}
.y13e{bottom:375.906667pt;}
.y107{bottom:377.506667pt;}
.yd0{bottom:381.186667pt;}
.y14f{bottom:381.986667pt;}
.y51{bottom:382.626667pt;}
.y73{bottom:384.546667pt;}
.y15a{bottom:384.834667pt;}
.y11c{bottom:384.866667pt;}
.yf0{bottom:385.986667pt;}
.yac{bottom:387.266667pt;}
.y8c{bottom:392.386667pt;}
.yeb{bottom:396.706667pt;}
.y11b{bottom:403.266667pt;}
.y106{bottom:405.186667pt;}
.y159{bottom:405.954667pt;}
.y50{bottom:407.426667pt;}
.y13d{bottom:407.586667pt;}
.y8b{bottom:407.746667pt;}
.ycf{bottom:408.706667pt;}
.yef{bottom:411.106667pt;}
.y72{bottom:412.066667pt;}
.y23{bottom:414.146667pt;}
.y25{bottom:414.240000pt;}
.yab{bottom:414.946667pt;}
.y8a{bottom:423.106667pt;}
.y4f{bottom:425.026667pt;}
.yee{bottom:425.666667pt;}
.y13c{bottom:425.986667pt;}
.y158{bottom:427.234667pt;}
.y14e{bottom:427.426667pt;}
.yc{bottom:432.546667pt;}
.y105{bottom:432.706667pt;}
.yce{bottom:436.386667pt;}
.y11a{bottom:437.666667pt;}
.y89{bottom:438.466667pt;}
.y71{bottom:439.746667pt;}
.yed{bottom:440.066667pt;}
.yaa{bottom:442.466667pt;}
.y4e{bottom:445.346667pt;}
.y88{bottom:453.826667pt;}
.yea{bottom:454.466667pt;}
.y119{bottom:456.066667pt;}
.y157{bottom:457.661333pt;}
.y13b{bottom:457.666667pt;}
.y14d{bottom:459.266667pt;}
.y104{bottom:460.386667pt;}
.y4d{bottom:462.466667pt;}
.ycd{bottom:463.906667pt;}
.y70{bottom:467.266667pt;}
.y87{bottom:469.026667pt;}
.ya9{bottom:470.146667pt;}
.y118{bottom:474.466667pt;}
.y13a{bottom:476.066667pt;}
.y156{bottom:479.261333pt;}
.ye9{bottom:483.426667pt;}
.y86{bottom:484.386667pt;}
.y4c{bottom:487.266667pt;}
.y103{bottom:487.906667pt;}
.ycc{bottom:491.586667pt;}
.y139{bottom:494.466667pt;}
.y6f{bottom:494.946667pt;}
.ya8{bottom:497.666667pt;}
.ye4{bottom:497.986667pt;}
.y85{bottom:499.746667pt;}
.y4b{bottom:504.226667pt;}
.y117{bottom:508.866667pt;}
.y155{bottom:511.101333pt;}
.ye8{bottom:512.386667pt;}
.y84{bottom:515.106667pt;}
.y102{bottom:515.586667pt;}
.ycb{bottom:519.106667pt;}
.y4a{bottom:521.026667pt;}
.y6e{bottom:522.466667pt;}
.y10{bottom:523.773333pt;}
.ya7{bottom:525.346667pt;}
.y138{bottom:526.306667pt;}
.ye7{bottom:526.946667pt;}
.y116{bottom:527.266667pt;}
.y49{bottom:537.826667pt;}
.y83{bottom:538.306667pt;}
.ye6{bottom:541.373333pt;}
.y154{bottom:542.141333pt;}
.y101{bottom:543.133333pt;}
.y137{bottom:544.733333pt;}
.yca{bottom:546.813333pt;}
.ya{bottom:547.933333pt;}
.y6d{bottom:550.173333pt;}
.y14b{bottom:550.813333pt;}
.ya6{bottom:552.893333pt;}
.y82{bottom:553.693333pt;}
.y48{bottom:554.813333pt;}
.ye3{bottom:559.293333pt;}
.y100{bottom:560.253333pt;}
.y115{bottom:561.693333pt;}
.y81{bottom:569.053333pt;}
.y47{bottom:571.613333pt;}
.yff{bottom:572.573333pt;}
.y30{bottom:573.053333pt;}
.yc9{bottom:574.333333pt;}
.y153{bottom:574.461333pt;}
.y136{bottom:576.413333pt;}
.y6c{bottom:577.693333pt;}
.y114{bottom:580.093333pt;}
.ya5{bottom:580.573333pt;}
.yfe{bottom:582.653333pt;}
.y80{bottom:584.413333pt;}
.y46{bottom:588.573333pt;}
.y135{bottom:594.813333pt;}
.y7f{bottom:599.773333pt;}
.yc8{bottom:602.013333pt;}
.y45{bottom:605.373333pt;}
.y152{bottom:606.301333pt;}
.ya4{bottom:608.093333pt;}
.y134{bottom:613.213333pt;}
.y113{bottom:614.493333pt;}
.y44{bottom:622.173333pt;}
.yc7{bottom:629.533333pt;}
.y6b{bottom:632.893333pt;}
.ya3{bottom:635.773333pt;}
.y151{bottom:638.461333pt;}
.y43{bottom:639.133333pt;}
.y133{bottom:644.893333pt;}
.y42{bottom:655.933333pt;}
.yc6{bottom:657.213333pt;}
.y6a{bottom:660.573333pt;}
.ya2{bottom:663.293333pt;}
.y41{bottom:672.893333pt;}
.yc5{bottom:674.333333pt;}
.ya1{bottom:680.413333pt;}
.yc4{bottom:686.493333pt;}
.y69{bottom:688.093333pt;}
.y40{bottom:689.693333pt;}
.ya0{bottom:691.133333pt;}
.y132{bottom:695.133333pt;}
.yc3{bottom:698.813333pt;}
.y9f{bottom:705.533333pt;}
.yc2{bottom:709.533333pt;}
.y131{bottom:713.533333pt;}
.y3f{bottom:714.813333pt;}
.y68{bottom:715.773333pt;}
.y9d{bottom:720.093333pt;}
.yc1{bottom:723.933333pt;}
.y9b{bottom:734.493333pt;}
.yc0{bottom:738.333333pt;}
.y3e{bottom:743.293333pt;}
.y130{bottom:745.213333pt;}
.y9a{bottom:752.573333pt;}
.ybf{bottom:752.893333pt;}
.y12f{bottom:763.613333pt;}
.ybe{bottom:767.293333pt;}
.y3c{bottom:770.973333pt;}
.y3d{bottom:777.093333pt;}
.yfd{bottom:780.133333pt;}
.ybd{bottom:781.893333pt;}
.y12{bottom:789.733333pt;}
.y12e{bottom:795.333333pt;}
.ybc{bottom:796.293333pt;}
.y3a{bottom:798.533333pt;}
.y3b{bottom:804.613333pt;}
.ybb{bottom:810.853333pt;}
.y12d{bottom:813.733333pt;}
.yba{bottom:825.253333pt;}
.y38{bottom:826.213333pt;}
.y39{bottom:832.293333pt;}
.yb9{bottom:839.653333pt;}
.y12c{bottom:845.413333pt;}
.y36{bottom:853.733333pt;}
.yb8{bottom:854.213333pt;}
.y37{bottom:859.813333pt;}
.y12b{bottom:863.813333pt;}
.yb7{bottom:872.133333pt;}
.y34{bottom:881.413333pt;}
.y35{bottom:887.493333pt;}
.y12a{bottom:895.653333pt;}
.y33{bottom:908.933333pt;}
.y129{bottom:914.053333pt;}
.y14c{bottom:927.333333pt;}
.y32{bottom:936.613333pt;}
.y128{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;}
.h21{height:13.760000pt;}
.h27{height:13.792000pt;}
.h1f{height:13.920000pt;}
.h24{height:13.952000pt;}
.h5{height:21.440000pt;}
.h3{height:25.280000pt;}
.h30{height:30.778125pt;}
.h18{height:31.390625pt;}
.h19{height:31.406250pt;}
.h31{height:33.375000pt;}
.h4{height:34.453125pt;}
.h2{height:38.128125pt;}
.h26{height:38.441250pt;}
.h15{height:42.063437pt;}
.h22{height:42.084375pt;}
.h11{height:42.262500pt;}
.h2c{height:42.381250pt;}
.h10{height:44.722500pt;}
.h29{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h2b{height:47.390625pt;}
.h23{height:47.406250pt;}
.h25{height:47.566250pt;}
.h1e{height:47.621250pt;}
.h2f{height:48.060000pt;}
.h20{height:48.375000pt;}
.h6{height:50.321250pt;}
.h8{height:51.519933pt;}
.ha{height:52.134375pt;}
.h1d{height:53.535000pt;}
.h2a{height:57.120000pt;}
.h28{height:57.152000pt;}
.h1b{height:57.375000pt;}
.h17{height:57.787500pt;}
.hd{height:58.021250pt;}
.h16{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;}
.h32{height:168.000000pt;}
.hb{height:272.186667pt;}
.h2e{height:670.946667pt;}
.h9{height:1056.800000pt;}
.h2d{height:1111.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.552000pt;}
.w1c{width:36.320000pt;}
.w1b{width:50.080000pt;}
.w19{width:50.240000pt;}
.w17{width:54.880000pt;}
.w1a{width:55.200000pt;}
.w15{width:55.360000pt;}
.w18{width:55.392000pt;}
.w16{width:55.680000pt;}
.w14{width:64.832000pt;}
.w22{width:65.280000pt;}
.w21{width:74.912000pt;}
.w6{width:78.746667pt;}
.w1d{width:84.000000pt;}
.w1f{width:84.320000pt;}
.w20{width:84.512000pt;}
.w1e{width:94.112000pt;}
.w13{width:102.720000pt;}
.w23{width:112.960000pt;}
.wf{width:131.520000pt;}
.w12{width:140.506667pt;}
.w10{width:150.906667pt;}
.w27{width:163.866667pt;}
.w26{width:167.226667pt;}
.wd{width:176.186667pt;}
.w25{width:186.266667pt;}
.w29{width:189.626667pt;}
.w11{width:207.386667pt;}
.wc{width:285.186667pt;}
.wb{width:285.280000pt;}
.wa{width:285.346667pt;}
.w28{width:289.666667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.346667pt;}
.w24{width:518.653333pt;}
.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;}
.x2c{left:3.360000pt;}
.xa{left:4.320000pt;}
.x6{left:7.680000pt;}
.x49{left:8.640000pt;}
.xc{left:9.600000pt;}
.x47{left:10.880000pt;}
.x41{left:12.160000pt;}
.x46{left:13.120000pt;}
.x32{left:15.040000pt;}
.x48{left:17.146667pt;}
.x45{left:18.080000pt;}
.xe{left:19.840000pt;}
.x3d{left:22.080000pt;}
.x5b{left:23.040000pt;}
.x31{left:24.000000pt;}
.x44{left:25.120000pt;}
.x42{left:26.400000pt;}
.x43{left:27.680000pt;}
.xd{left:29.440000pt;}
.x55{left:31.360000pt;}
.x59{left:32.480000pt;}
.x15{left:33.440000pt;}
.x58{left:34.400000pt;}
.x53{left:36.160000pt;}
.x5a{left:37.920000pt;}
.x30{left:38.920000pt;}
.x4f{left:40.960000pt;}
.x56{left:42.720000pt;}
.x57{left:44.000000pt;}
.x4d{left:45.760000pt;}
.x2e{left:47.720000pt;}
.x6a{left:49.160000pt;}
.x6b{left:55.400000pt;}
.x4{left:57.279988pt;}
.x69{left:59.400000pt;}
.x24{left:61.279988pt;}
.x62{left:62.920000pt;}
.x5{left:64.960000pt;}
.x33{left:66.280000pt;}
.x65{left:67.560000pt;}
.x68{left:69.146667pt;}
.x64{left:71.066667pt;}
.x2f{left:72.346667pt;}
.x16{left:73.626667pt;}
.x67{left:76.680000pt;}
.x63{left:78.920000pt;}
.x66{left:79.866667pt;}
.x36{left:89.472000pt;}
.x34{left:90.746667pt;}
.x19{left:92.671988pt;}
.x29{left:94.592000pt;}
.x1a{left:99.871988pt;}
.x17{left:100.826667pt;}
.x25{left:104.511988pt;}
.x5e{left:106.911988pt;}
.x13{left:118.333333pt;}
.x8{left:122.106667pt;}
.x5c{left:123.551988pt;}
.x5d{left:125.311988pt;}
.x12{left:142.586667pt;}
.x10{left:144.986667pt;}
.x18{left:166.426667pt;}
.x6c{left:171.706655pt;}
.x28{left:180.506655pt;}
.x26{left:189.626655pt;}
.x37{left:192.826667pt;}
.x35{left:198.106655pt;}
.x4c{left:207.546667pt;}
.x5f{left:213.480000pt;}
.x27{left:217.946655pt;}
.x2a{left:226.746667pt;}
.x4b{left:228.986655pt;}
.x23{left:249.306655pt;}
.x4a{left:252.186655pt;}
.x38{left:258.306667pt;}
.x4e{left:302.306667pt;}
.x39{left:314.306667pt;}
.x3{left:345.506655pt;}
.x11{left:361.026667pt;}
.xf{left:362.786667pt;}
.x14{left:366.146667pt;}
.x3a{left:370.626667pt;}
.x2b{left:378.306667pt;}
.x50{left:387.266667pt;}
.x1b{left:392.866655pt;}
.x60{left:395.266667pt;}
.x6e{left:405.506667pt;}
.x1{left:410.466655pt;}
.x7{left:418.306667pt;}
.x3b{left:426.146667pt;}
.x51{left:472.573333pt;}
.x3c{left:482.173333pt;}
.x1f{left:502.173322pt;}
.x1c{left:520.413322pt;}
.x20{left:529.373322pt;}
.x3e{left:533.053333pt;}
.x52{left:557.533333pt;}
.x22{left:560.093322pt;}
.x61{left:563.133333pt;}
.x2d{left:586.333333pt;}
.x3f{left:588.893333pt;}
.x21{left:624.453322pt;}
.x54{left:633.253333pt;}
.x40{left:644.933333pt;}
.x2{left:695.333322pt;}
.x6d{left:696.933322pt;}
.xb{left:714.533333pt;}
.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; }
  