
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_aa920fd5d844b6dbdf802905.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_91602ca51c8db55ca87aa7d0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_e3695819d1c12805d1b0f07f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_59c517336c79b347652981a6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9d16a6f12ab4b3ad9d248d66.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_5d123772bb4c8abe91c34807.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_3512029054d15446aa1dc533.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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);}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.ls10{letter-spacing:-0.413400px;}
.ls9{letter-spacing:-0.346800px;}
.ls8{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.153600px;}
.ls13{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.018720px;}
.lse{letter-spacing:-0.009360px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.009360px;}
.lsc{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:16.406640px;}
.ls5{letter-spacing:36.926640px;}
.ls4{letter-spacing:41.148000px;}
.lsa{letter-spacing:46.286640px;}
.lsd{letter-spacing:63.566640px;}
.ls2{letter-spacing:753.330000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-60.120000px;}
.ws9{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.wsc{word-spacing:-14.876400px;}
.ws8{word-spacing:-14.683200px;}
.ws4{word-spacing:-14.220000px;}
.ws5{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.150000px;}
.wsd{word-spacing:-11.979360px;}
.ws1{word-spacing:-11.970000px;}
.wsb{word-spacing:-11.960640px;}
.wse{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.037880px;}
._e{width:2.938920px;}
._f{width:4.721040px;}
._a{width:5.858640px;}
._b{width:6.882480px;}
._7{width:8.588880px;}
._6{width:10.010880px;}
._9{width:11.319120px;}
._5{width:13.025520px;}
._26{width:14.029920px;}
._d{width:15.585120px;}
._10{width:16.688880px;}
._12{width:18.041760px;}
._c{width:19.168560px;}
._8{width:20.363040px;}
._16{width:21.438000px;}
._18{width:22.990680px;}
._1c{width:24.048000px;}
._20{width:25.430760px;}
._2c{width:26.452800px;}
._17{width:27.474840px;}
._22{width:29.338560px;}
._14{width:30.360600px;}
._1d{width:32.224320px;}
._19{width:33.366600px;}
._15{width:34.412040px;}
._13{width:35.910000px;}
._33{width:37.193400px;}
._27{width:38.476800px;}
._29{width:39.619080px;}
._28{width:40.881600px;}
._21{width:42.084000px;}
._11{width:44.046000px;}
._2a{width:45.412560px;}
._25{width:46.893600px;}
._2b{width:48.096000px;}
._34{width:49.238280px;}
._35{width:50.291280px;}
._2d{width:51.643080px;}
._2f{width:53.326440px;}
._2e{width:54.348480px;}
._31{width:56.572920px;}
._32{width:57.895560px;}
._30{width:59.158080px;}
._24{width:61.202160px;}
._23{width:62.344440px;}
._1b{width:64.508760px;}
._36{width:66.252240px;}
._1e{width:70.701120px;}
._1f{width:71.903520px;}
._1a{width:100.580760px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
._4{width:1006.375920px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fsa{font-size:24.120000px;}
.fs3{font-size:29.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:2.610000px;}
.y233{bottom:2.640000px;}
.y6{bottom:2.700000px;}
.y47{bottom:2.970000px;}
.y221{bottom:3.060000px;}
.y34{bottom:3.150000px;}
.y16{bottom:3.240000px;}
.y2a6{bottom:4.590000px;}
.y183{bottom:4.680000px;}
.y2ab{bottom:4.770000px;}
.y3f{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y1f2{bottom:9.900000px;}
.y231{bottom:9.930000px;}
.yea{bottom:13.590000px;}
.y9{bottom:14.040000px;}
.y130{bottom:16.380000px;}
.y1bd{bottom:16.410000px;}
.y5{bottom:16.470000px;}
.y12e{bottom:16.830000px;}
.y1bb{bottom:17.190000px;}
.y46{bottom:18.450000px;}
.y180{bottom:18.810000px;}
.y3d{bottom:19.350000px;}
.y33{bottom:19.530000px;}
.y1f1{bottom:23.670000px;}
.y230{bottom:23.700000px;}
.y272{bottom:30.150000px;}
.y1f4{bottom:30.240000px;}
.y220{bottom:30.600000px;}
.y270{bottom:30.960000px;}
.y1ba{bottom:30.990000px;}
.y182{bottom:32.220000px;}
.y17f{bottom:32.670000px;}
.y45{bottom:34.020000px;}
.y7{bottom:35.550000px;}
.y3c{bottom:35.820000px;}
.y32{bottom:35.910000px;}
.y1f0{bottom:37.530000px;}
.y2b1{bottom:44.010000px;}
.y26f{bottom:44.730000px;}
.y251{bottom:44.850000px;}
.y44{bottom:49.500000px;}
.y3b{bottom:51.300000px;}
.y31{bottom:52.290000px;}
.y2b0{bottom:57.780000px;}
.y3{bottom:58.140000px;}
.y43{bottom:65.070000px;}
.y3a{bottom:66.870000px;}
.y30{bottom:68.670000px;}
.y42{bottom:80.550000px;}
.y39{bottom:82.380000px;}
.y2f{bottom:85.050000px;}
.y49{bottom:86.940000px;}
.y41{bottom:96.120000px;}
.y38{bottom:97.860000px;}
.y2e{bottom:101.430000px;}
.y2ad{bottom:111.600000px;}
.y4c{bottom:112.950000px;}
.y37{bottom:113.430000px;}
.yb3{bottom:115.380000px;}
.y1f8{bottom:116.550000px;}
.y107{bottom:116.820000px;}
.y2d{bottom:117.810000px;}
.ye4{bottom:119.700000px;}
.y24f{bottom:120.150000px;}
.y84{bottom:124.020000px;}
.y229{bottom:124.110000px;}
.y147{bottom:126.000000px;}
.y2ac{bottom:126.090000px;}
.y15b{bottom:126.900000px;}
.y36{bottom:128.910000px;}
.y4b{bottom:130.230000px;}
.y1f7{bottom:131.130000px;}
.yb2{bottom:132.660000px;}
.y106{bottom:134.010000px;}
.y2c{bottom:134.190000px;}
.y24e{bottom:134.550000px;}
.y129{bottom:136.260000px;}
.ye3{bottom:136.890000px;}
.y18d{bottom:137.700000px;}
.y2aa{bottom:140.670000px;}
.y83{bottom:141.210000px;}
.y146{bottom:143.280000px;}
.y228{bottom:144.630000px;}
.y1f6{bottom:145.710000px;}
.y128{bottom:147.420000px;}
.y4a{bottom:147.510000px;}
.yb1{bottom:149.850000px;}
.y2b{bottom:150.570000px;}
.y105{bottom:151.290000px;}
.y24d{bottom:151.830000px;}
.ye2{bottom:154.170000px;}
.y18c{bottom:154.890000px;}
.y82{bottom:158.520000px;}
.y227{bottom:159.240000px;}
.y2a9{bottom:159.420000px;}
.y1f5{bottom:160.230000px;}
.y145{bottom:160.500000px;}
.y17{bottom:162.210000px;}
.y2a{bottom:166.950000px;}
.yb0{bottom:167.160000px;}
.y104{bottom:168.510000px;}
.y24c{bottom:169.050000px;}
.ye1{bottom:171.480000px;}
.y18b{bottom:172.200000px;}
.y226{bottom:173.820000px;}
.y2a8{bottom:174.000000px;}
.y1ef{bottom:174.810000px;}
.y144{bottom:175.260000px;}
.y81{bottom:175.800000px;}
.y287{bottom:177.780000px;}
.y2af{bottom:179.130000px;}
.y29{bottom:183.330000px;}
.yaf{bottom:184.350000px;}
.y103{bottom:185.790000px;}
.y24b{bottom:186.330000px;}
.y225{bottom:188.310000px;}
.y2a7{bottom:188.580000px;}
.ye0{bottom:188.670000px;}
.y18a{bottom:188.850000px;}
.y1f3{bottom:189.390000px;}
.y143{bottom:189.840000px;}
.y48{bottom:190.170000px;}
.y80{bottom:192.990000px;}
.y286{bottom:195.060000px;}
.y28{bottom:199.710000px;}
.yae{bottom:201.630000px;}
.y189{bottom:202.620000px;}
.y224{bottom:202.890000px;}
.y102{bottom:203.070000px;}
.y24a{bottom:203.610000px;}
.y142{bottom:204.420000px;}
.ydf{bottom:205.950000px;}
.y7f{bottom:210.270000px;}
.y285{bottom:212.250000px;}
.y188{bottom:214.590000px;}
.y27{bottom:216.090000px;}
.y223{bottom:217.380000px;}
.yad{bottom:218.910000px;}
.y101{bottom:219.720000px;}
.y249{bottom:220.800000px;}
.y2a5{bottom:223.050000px;}
.yde{bottom:223.230000px;}
.y7e{bottom:227.460000px;}
.y187{bottom:229.080000px;}
.y284{bottom:229.530000px;}
.y100{bottom:231.600000px;}
.y21f{bottom:231.960000px;}
.y26{bottom:232.560000px;}
.y2a4{bottom:232.770000px;}
.y1ee{bottom:233.130000px;}
.y141{bottom:233.490000px;}
.yac{bottom:236.100000px;}
.y248{bottom:238.080000px;}
.ydd{bottom:240.420000px;}
.y1ed{bottom:242.760000px;}
.y186{bottom:243.660000px;}
.y7d{bottom:244.740000px;}
.yff{bottom:246.180000px;}
.y222{bottom:246.540000px;}
.y283{bottom:246.810000px;}
.y140{bottom:248.070000px;}
.y2ae{bottom:248.880000px;}
.y25{bottom:248.940000px;}
.y1a3{bottom:250.410000px;}
.yab{bottom:253.380000px;}
.y247{bottom:255.270000px;}
.y1ec{bottom:256.530000px;}
.y1cf{bottom:257.070000px;}
.ydc{bottom:257.700000px;}
.y185{bottom:258.240000px;}
.y2a3{bottom:259.950000px;}
.yfe{bottom:260.670000px;}
.y7c{bottom:262.020000px;}
.y13e{bottom:262.560000px;}
.y282{bottom:264.000000px;}
.y24{bottom:265.320000px;}
.y1a2{bottom:267.690000px;}
.yaa{bottom:270.660000px;}
.y1eb{bottom:270.930000px;}
.y2a2{bottom:272.370000px;}
.y246{bottom:272.550000px;}
.y184{bottom:272.730000px;}
.y1ce{bottom:274.350000px;}
.ydb{bottom:274.980000px;}
.yfd{bottom:275.250000px;}
.y21e{bottom:276.510000px;}
.y13f{bottom:277.140000px;}
.y7b{bottom:279.210000px;}
.y281{bottom:281.280000px;}
.y23{bottom:281.700000px;}
.y1a1{bottom:284.880000px;}
.y21d{bottom:286.140000px;}
.y2a1{bottom:286.230000px;}
.y17e{bottom:287.310000px;}
.ya9{bottom:287.850000px;}
.y1ea{bottom:288.210000px;}
.y245{bottom:289.830000px;}
.yfc{bottom:291.450000px;}
.y1cd{bottom:291.630000px;}
.yda{bottom:292.170000px;}
.y7a{bottom:296.490000px;}
.y2a0{bottom:297.390000px;}
.y22{bottom:298.080000px;}
.y280{bottom:298.560000px;}
.y21c{bottom:300.540000px;}
.y15a{bottom:300.720000px;}
.yfb{bottom:301.080000px;}
.y181{bottom:301.890000px;}
.y1a0{bottom:302.160000px;}
.ya8{bottom:305.130000px;}
.y1e9{bottom:305.490000px;}
.y244{bottom:307.020000px;}
.y13d{bottom:307.110000px;}
.y1cc{bottom:308.820000px;}
.yd9{bottom:309.450000px;}
.y127{bottom:311.520000px;}
.y79{bottom:313.770000px;}
.y21{bottom:314.460000px;}
.yfa{bottom:315.480000px;}
.y27f{bottom:315.750000px;}
.y13c{bottom:316.740000px;}
.y21b{bottom:317.820000px;}
.y159{bottom:317.910000px;}
.y19f{bottom:318.810000px;}
.ya7{bottom:322.410000px;}
.y1e8{bottom:322.680000px;}
.y243{bottom:324.300000px;}
.y1cb{bottom:326.100000px;}
.yd8{bottom:326.730000px;}
.y126{bottom:328.800000px;}
.y20{bottom:330.840000px;}
.y78{bottom:330.960000px;}
.y13b{bottom:331.140000px;}
.y19e{bottom:332.580000px;}
.yf9{bottom:332.760000px;}
.y27e{bottom:333.030000px;}
.y21a{bottom:335.010000px;}
.y158{bottom:335.190000px;}
.ya6{bottom:339.600000px;}
.y1e7{bottom:339.960000px;}
.y242{bottom:341.580000px;}
.y1ca{bottom:343.380000px;}
.y19d{bottom:343.740000px;}
.yd7{bottom:343.920000px;}
.y125{bottom:346.080000px;}
.y1f{bottom:347.220000px;}
.y77{bottom:348.240000px;}
.y13a{bottom:348.420000px;}
.yf8{bottom:349.950000px;}
.y27d{bottom:350.310000px;}
.y17d{bottom:350.670000px;}
.y219{bottom:352.290000px;}
.y157{bottom:352.470000px;}
.ya5{bottom:356.880000px;}
.y1e6{bottom:357.240000px;}
.y241{bottom:358.770000px;}
.y1c9{bottom:360.570000px;}
.yd6{bottom:361.200000px;}
.y124{bottom:362.730000px;}
.y1e{bottom:363.600000px;}
.y17c{bottom:364.530000px;}
.y76{bottom:365.520000px;}
.y139{bottom:365.610000px;}
.y40{bottom:365.700000px;}
.yf7{bottom:367.230000px;}
.y27c{bottom:367.500000px;}
.y218{bottom:369.570000px;}
.y156{bottom:369.660000px;}
.ya4{bottom:374.160000px;}
.y1e5{bottom:374.430000px;}
.y123{bottom:375.510000px;}
.y240{bottom:376.050000px;}
.y1c8{bottom:377.850000px;}
.y17b{bottom:378.300000px;}
.yd5{bottom:378.390000px;}
.y1d{bottom:379.980000px;}
.y75{bottom:382.710000px;}
.y138{bottom:382.890000px;}
.y122{bottom:383.250000px;}
.yf6{bottom:384.420000px;}
.y27b{bottom:384.780000px;}
.y217{bottom:386.760000px;}
.y155{bottom:386.940000px;}
.y1e4{bottom:391.710000px;}
.y17a{bottom:392.070000px;}
.ya3{bottom:392.430000px;}
.y23f{bottom:393.330000px;}
.y1c7{bottom:395.130000px;}
.yd4{bottom:395.670000px;}
.y1c{bottom:396.360000px;}
.y121{bottom:397.740000px;}
.y137{bottom:399.540000px;}
.y74{bottom:399.990000px;}
.y27a{bottom:401.430000px;}
.yf5{bottom:401.700000px;}
.y216{bottom:404.040000px;}
.y154{bottom:404.130000px;}
.y179{bottom:406.470000px;}
.y1e3{bottom:408.990000px;}
.ya2{bottom:409.710000px;}
.y23e{bottom:410.520000px;}
.y120{bottom:412.320000px;}
.y1b{bottom:412.770000px;}
.yd3{bottom:412.950000px;}
.y279{bottom:414.210000px;}
.y73{bottom:417.270000px;}
.yf4{bottom:418.980000px;}
.y136{bottom:420.060000px;}
.y215{bottom:421.230000px;}
.y153{bottom:421.410000px;}
.y278{bottom:421.950000px;}
.y178{bottom:423.750000px;}
.y1e2{bottom:426.180000px;}
.y11f{bottom:426.900000px;}
.ya1{bottom:426.990000px;}
.y23d{bottom:427.800000px;}
.y1a{bottom:429.150000px;}
.y1c6{bottom:429.600000px;}
.yd2{bottom:430.140000px;}
.y72{bottom:434.460000px;}
.y135{bottom:434.640000px;}
.yf3{bottom:436.170000px;}
.y277{bottom:436.530000px;}
.y214{bottom:438.510000px;}
.y152{bottom:438.690000px;}
.y177{bottom:441.030000px;}
.y11e{bottom:441.390000px;}
.y1e1{bottom:443.460000px;}
.ya0{bottom:444.180000px;}
.y23c{bottom:445.080000px;}
.y19{bottom:445.530000px;}
.y1c5{bottom:446.250000px;}
.yd1{bottom:447.420000px;}
.y134{bottom:449.130000px;}
.y276{bottom:451.020000px;}
.y71{bottom:451.740000px;}
.yf2{bottom:453.450000px;}
.y213{bottom:455.790000px;}
.y151{bottom:455.880000px;}
.y11d{bottom:457.590000px;}
.y176{bottom:458.220000px;}
.y1c4{bottom:459.030000px;}
.y1e0{bottom:460.740000px;}
.y18{bottom:461.910000px;}
.y23b{bottom:462.270000px;}
.y9f{bottom:462.540000px;}
.y133{bottom:463.710000px;}
.yd0{bottom:464.700000px;}
.y275{bottom:465.600000px;}
.y1c3{bottom:466.770000px;}
.y11c{bottom:467.220000px;}
.y70{bottom:469.020000px;}
.yf1{bottom:470.730000px;}
.y212{bottom:472.980000px;}
.y150{bottom:473.160000px;}
.y3e{bottom:475.140000px;}
.y175{bottom:475.500000px;}
.y1df{bottom:477.930000px;}
.y132{bottom:478.290000px;}
.y23a{bottom:478.920000px;}
.y9e{bottom:479.730000px;}
.y274{bottom:480.180000px;}
.y29f{bottom:480.990000px;}
.y11b{bottom:481.080000px;}
.y1c2{bottom:481.350000px;}
.ycf{bottom:481.890000px;}
.y6f{bottom:486.210000px;}
.yf0{bottom:487.920000px;}
.y29e{bottom:489.810000px;}
.y211{bottom:490.260000px;}
.y14f{bottom:490.440000px;}
.y239{bottom:491.700000px;}
.y131{bottom:492.780000px;}
.y273{bottom:494.670000px;}
.y1de{bottom:495.210000px;}
.y11a{bottom:495.480000px;}
.y1c1{bottom:495.840000px;}
.y35{bottom:495.930000px;}
.y9d{bottom:498.090000px;}
.yce{bottom:499.170000px;}
.y238{bottom:499.440000px;}
.y6e{bottom:503.490000px;}
.yef{bottom:505.200000px;}
.y210{bottom:506.910000px;}
.y29d{bottom:507.090000px;}
.y12d{bottom:507.360000px;}
.y14e{bottom:507.630000px;}
.y26e{bottom:509.250000px;}
.y174{bottom:509.970000px;}
.y1c0{bottom:510.420000px;}
.y1dd{bottom:511.860000px;}
.y119{bottom:512.670000px;}
.y19c{bottom:512.760000px;}
.y237{bottom:514.020000px;}
.y9c{bottom:515.370000px;}
.ycd{bottom:516.450000px;}
.y20f{bottom:518.070000px;}
.y6d{bottom:520.770000px;}
.y12f{bottom:521.940000px;}
.yee{bottom:522.480000px;}
.y271{bottom:523.830000px;}
.y29c{bottom:524.370000px;}
.y14d{bottom:524.910000px;}
.y1bf{bottom:525.000000px;}
.y1dc{bottom:525.630000px;}
.y173{bottom:527.250000px;}
.y236{bottom:528.600000px;}
.y118{bottom:529.950000px;}
.y19b{bottom:530.040000px;}
.y9b{bottom:532.560000px;}
.ycc{bottom:533.640000px;}
.y1db{bottom:536.790000px;}
.y6c{bottom:537.960000px;}
.y1be{bottom:539.490000px;}
.yed{bottom:539.670000px;}
.y29b{bottom:541.560000px;}
.y14c{bottom:542.190000px;}
.y235{bottom:543.090000px;}
.y172{bottom:544.530000px;}
.y117{bottom:547.230000px;}
.y9a{bottom:549.840000px;}
.ycb{bottom:550.920000px;}
.y12c{bottom:551.910000px;}
.y1b9{bottom:554.070000px;}
.y6b{bottom:555.240000px;}
.yec{bottom:556.320000px;}
.y234{bottom:557.670000px;}
.y29a{bottom:558.840000px;}
.y14b{bottom:559.380000px;}
.y12b{bottom:561.540000px;}
.y171{bottom:561.720000px;}
.y116{bottom:564.420000px;}
.y19a{bottom:564.510000px;}
.y99{bottom:567.120000px;}
.y26d{bottom:567.570000px;}
.yca{bottom:568.200000px;}
.y1bc{bottom:568.650000px;}
.yeb{bottom:570.180000px;}
.y22f{bottom:572.250000px;}
.y6a{bottom:572.430000px;}
.y14a{bottom:573.420000px;}
.y12a{bottom:575.340000px;}
.y299{bottom:576.060000px;}
.y26c{bottom:577.230000px;}
.y170{bottom:579.030000px;}
.y115{bottom:581.730000px;}
.y199{bottom:581.820000px;}
.ye9{bottom:582.090000px;}
.y98{bottom:584.340000px;}
.yc9{bottom:585.420000px;}
.y232{bottom:586.770000px;}
.y69{bottom:589.740000px;}
.y26b{bottom:591.000000px;}
.y298{bottom:593.340000px;}
.y16f{bottom:596.220000px;}
.y114{bottom:598.920000px;}
.y198{bottom:599.010000px;}
.y1b8{bottom:599.640000px;}
.y97{bottom:601.620000px;}
.yc8{bottom:602.700000px;}
.y26a{bottom:605.400000px;}
.y68{bottom:607.020000px;}
.y297{bottom:610.620000px;}
.y1b7{bottom:613.410000px;}
.y16e{bottom:613.500000px;}
.y113{bottom:616.200000px;}
.y197{bottom:616.290000px;}
.y22e{bottom:617.820000px;}
.ye7{bottom:618.540000px;}
.y96{bottom:618.900000px;}
.yc7{bottom:619.980000px;}
.y269{bottom:622.680000px;}
.y67{bottom:624.210000px;}
.y1b6{bottom:627.270000px;}
.y296{bottom:627.810000px;}
.y16d{bottom:630.780000px;}
.y22d{bottom:631.590000px;}
.y112{bottom:633.480000px;}
.y196{bottom:633.570000px;}
.ye6{bottom:634.740000px;}
.y95{bottom:636.090000px;}
.yc6{bottom:637.170000px;}
.y15{bottom:638.250000px;}
.y268{bottom:639.960000px;}
.y1b5{bottom:641.040000px;}
.y66{bottom:641.490000px;}
.ye5{bottom:644.370000px;}
.y295{bottom:645.090000px;}
.y22c{bottom:645.360000px;}
.y16c{bottom:647.970000px;}
.y111{bottom:650.670000px;}
.y195{bottom:650.760000px;}
.y94{bottom:653.370000px;}
.yc5{bottom:654.450000px;}
.y1b4{bottom:655.440000px;}
.y267{bottom:657.150000px;}
.y65{bottom:658.770000px;}
.y22b{bottom:659.760000px;}
.y294{bottom:662.370000px;}
.y16b{bottom:665.250000px;}
.y110{bottom:667.950000px;}
.y194{bottom:668.040000px;}
.y93{bottom:670.650000px;}
.yc4{bottom:671.730000px;}
.y1b3{bottom:672.720000px;}
.y14{bottom:672.810000px;}
.y22a{bottom:673.800000px;}
.y266{bottom:674.430000px;}
.y64{bottom:675.960000px;}
.y293{bottom:679.020000px;}
.y16a{bottom:682.530000px;}
.y10f{bottom:685.230000px;}
.y193{bottom:685.320000px;}
.y92{bottom:687.840000px;}
.yc3{bottom:688.920000px;}
.y1b2{bottom:689.910000px;}
.y265{bottom:691.710000px;}
.y292{bottom:691.800000px;}
.y13{bottom:692.700000px;}
.y63{bottom:693.240000px;}
.y291{bottom:699.540000px;}
.y169{bottom:699.720000px;}
.y10e{bottom:702.420000px;}
.y192{bottom:702.510000px;}
.y20e{bottom:704.760000px;}
.y91{bottom:706.200000px;}
.y1b1{bottom:707.190000px;}
.y264{bottom:708.900000px;}
.y62{bottom:710.520000px;}
.y290{bottom:714.120000px;}
.y168{bottom:717.000000px;}
.y10d{bottom:719.700000px;}
.y191{bottom:719.790000px;}
.y20d{bottom:722.040000px;}
.y90{bottom:723.390000px;}
.y1b0{bottom:724.470000px;}
.y263{bottom:726.180000px;}
.y12{bottom:726.360000px;}
.y61{bottom:727.710000px;}
.y28f{bottom:728.610000px;}
.y167{bottom:734.280000px;}
.y190{bottom:736.440000px;}
.y10c{bottom:736.980000px;}
.y1da{bottom:738.240000px;}
.y11{bottom:738.420000px;}
.y20c{bottom:739.320000px;}
.y8f{bottom:740.670000px;}
.y1af{bottom:741.660000px;}
.y28e{bottom:743.190000px;}
.y262{bottom:743.370000px;}
.y60{bottom:744.990000px;}
.y18f{bottom:750.210000px;}
.y166{bottom:751.470000px;}
.y10b{bottom:754.170000px;}
.y149{bottom:755.430000px;}
.y10{bottom:755.970000px;}
.y20b{bottom:756.510000px;}
.y28d{bottom:757.680000px;}
.yc2{bottom:757.950000px;}
.y1ae{bottom:758.940000px;}
.y8e{bottom:759.030000px;}
.y261{bottom:760.650000px;}
.y18e{bottom:761.370000px;}
.y5f{bottom:762.270000px;}
.y148{bottom:765.060000px;}
.y165{bottom:768.750000px;}
.y10a{bottom:770.820000px;}
.y28c{bottom:772.260000px;}
.y1d9{bottom:772.710000px;}
.y20a{bottom:773.790000px;}
.yc1{bottom:775.140000px;}
.y1ad{bottom:776.130000px;}
.y8d{bottom:776.220000px;}
.yf{bottom:777.210000px;}
.y260{bottom:777.930000px;}
.y5e{bottom:779.460000px;}
.y109{bottom:783.600000px;}
.y164{bottom:786.030000px;}
.y28a{bottom:786.840000px;}
.y1d8{bottom:789.360000px;}
.y108{bottom:790.620000px;}
.y209{bottom:791.070000px;}
.yc0{bottom:792.420000px;}
.y1ac{bottom:793.410000px;}
.y8c{bottom:793.500000px;}
.y25f{bottom:795.120000px;}
.y5d{bottom:796.740000px;}
.y28b{bottom:801.330000px;}
.y1d7{bottom:803.130000px;}
.y163{bottom:803.220000px;}
.ye{bottom:808.260000px;}
.ybf{bottom:809.700000px;}
.y1ab{bottom:810.690000px;}
.y8b{bottom:811.860000px;}
.y25e{bottom:812.400000px;}
.y5c{bottom:814.020000px;}
.y1d6{bottom:816.990000px;}
.y162{bottom:819.870000px;}
.y208{bottom:825.540000px;}
.ybe{bottom:826.890000px;}
.y1aa{bottom:827.880000px;}
.y8a{bottom:829.050000px;}
.y25d{bottom:829.680000px;}
.y1d5{bottom:830.760000px;}
.y5b{bottom:831.210000px;}
.y161{bottom:833.730000px;}
.yd{bottom:839.310000px;}
.y207{bottom:842.820000px;}
.ybd{bottom:844.170000px;}
.y1d4{bottom:844.530000px;}
.y160{bottom:844.890000px;}
.y1a9{bottom:845.160000px;}
.y89{bottom:846.330000px;}
.y25c{bottom:846.870000px;}
.y5a{bottom:848.490000px;}
.y289{bottom:854.790000px;}
.y1d3{bottom:858.390000px;}
.y206{bottom:860.010000px;}
.ybc{bottom:861.450000px;}
.y1a8{bottom:862.440000px;}
.y88{bottom:863.610000px;}
.y25b{bottom:864.150000px;}
.y59{bottom:865.770000px;}
.y288{bottom:868.560000px;}
.yc{bottom:870.360000px;}
.y1d2{bottom:872.160000px;}
.y205{bottom:877.290000px;}
.ybb{bottom:878.640000px;}
.y1a7{bottom:879.630000px;}
.y25a{bottom:880.800000px;}
.y87{bottom:881.880000px;}
.y58{bottom:882.960000px;}
.y1d1{bottom:885.930000px;}
.y259{bottom:893.580000px;}
.y204{bottom:894.570000px;}
.yba{bottom:895.920000px;}
.y1a6{bottom:896.910000px;}
.y86{bottom:899.160000px;}
.y1d0{bottom:899.790000px;}
.y57{bottom:900.240000px;}
.y258{bottom:901.320000px;}
.yb{bottom:901.410000px;}
.y203{bottom:911.760000px;}
.y1a5{bottom:913.560000px;}
.yb9{bottom:914.280000px;}
.y257{bottom:915.900000px;}
.y85{bottom:916.440000px;}
.y56{bottom:917.430000px;}
.y1a4{bottom:924.720000px;}
.y202{bottom:929.040000px;}
.ya{bottom:930.210000px;}
.y256{bottom:930.390000px;}
.yb8{bottom:931.470000px;}
.y55{bottom:934.710000px;}
.y255{bottom:944.970000px;}
.y8{bottom:945.600000px;}
.y201{bottom:946.230000px;}
.yb7{bottom:949.830000px;}
.y54{bottom:951.990000px;}
.y254{bottom:959.550000px;}
.y200{bottom:963.510000px;}
.yb6{bottom:967.110000px;}
.y53{bottom:969.180000px;}
.y253{bottom:974.040000px;}
.y1ff{bottom:980.790000px;}
.yb5{bottom:985.380000px;}
.y52{bottom:986.460000px;}
.y250{bottom:988.620000px;}
.y1fe{bottom:998.010000px;}
.yb4{bottom:1002.690000px;}
.y252{bottom:1003.230000px;}
.y51{bottom:1003.770000px;}
.y1fd{bottom:1015.290000px;}
.y50{bottom:1020.960000px;}
.y1fc{bottom:1031.940000px;}
.y15f{bottom:1034.190000px;}
.y4f{bottom:1038.240000px;}
.y1fb{bottom:1045.710000px;}
.y15e{bottom:1047.960000px;}
.y4e{bottom:1055.520000px;}
.y1fa{bottom:1057.680000px;}
.y15d{bottom:1061.820000px;}
.y1f9{bottom:1072.170000px;}
.y4d{bottom:1072.710000px;}
.y15c{bottom:1075.590000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1f{height:13.770000px;}
.h2c{height:13.800000px;}
.h22{height:13.860000px;}
.h2d{height:13.889850px;}
.h31{height:16.841602px;}
.h10{height:17.190000px;}
.h33{height:17.640000px;}
.h34{height:18.030000px;}
.h16{height:20.070000px;}
.h21{height:20.863477px;}
.h1e{height:21.082324px;}
.hd{height:27.147656px;}
.h24{height:27.540000px;}
.h29{height:27.570000px;}
.h3{height:27.630000px;}
.h32{height:29.409961px;}
.h5{height:33.431836px;}
.h1d{height:33.782520px;}
.h20{height:35.730000px;}
.h18{height:37.705078px;}
.h19{height:38.100586px;}
.h6{height:39.082324px;}
.h12{height:39.716016px;}
.h14{height:39.999023px;}
.h30{height:41.310000px;}
.h2b{height:41.400000px;}
.h4{height:41.978320px;}
.h23{height:42.120000px;}
.h28{height:42.150000px;}
.h25{height:42.210000px;}
.hf{height:42.418652px;}
.h1c{height:42.536074px;}
.h1b{height:43.769004px;}
.h15{height:44.532246px;}
.h2{height:45.295488px;}
.h27{height:45.450000px;}
.h8{height:46.000195px;}
.hc{height:48.027656px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hb{height:53.838457px;}
.h2f{height:55.890000px;}
.h2a{height:55.980000px;}
.h2e{height:56.010000px;}
.h26{height:60.030000px;}
.h35{height:68.940000px;}
.he{height:75.410156px;}
.ha{height:76.201172px;}
.h17{height:108.720000px;}
.h13{height:141.510000px;}
.h7{height:153.930000px;}
.h1a{height:202.770000px;}
.h11{height:475.230000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w3d{width:68.580000px;}
.w10{width:70.110000px;}
.w3c{width:78.120000px;}
.w3b{width:81.180000px;}
.w9{width:84.420000px;}
.wd{width:85.980000px;}
.wf{width:89.640000px;}
.w14{width:90.120000px;}
.w2a{width:90.930000px;}
.w36{width:94.800000px;}
.w35{width:94.890000px;}
.w8{width:94.950000px;}
.wb{width:101.610000px;}
.w2f{width:103.590000px;}
.wa{width:105.510000px;}
.w27{width:105.570000px;}
.w7{width:105.690000px;}
.w2e{width:108.900000px;}
.wc{width:109.890000px;}
.w31{width:113.850000px;}
.w1d{width:117.990000px;}
.w1b{width:119.700000px;}
.w2d{width:119.880000px;}
.w38{width:120.780000px;}
.w20{width:120.810000px;}
.w17{width:122.850000px;}
.w25{width:125.550000px;}
.w21{width:125.580000px;}
.w24{width:127.080000px;}
.w26{width:127.110000px;}
.w23{width:127.890000px;}
.w1c{width:130.440000px;}
.w18{width:130.800000px;}
.w11{width:135.840000px;}
.w19{width:137.430000px;}
.w2b{width:137.460000px;}
.w15{width:137.550000px;}
.we{width:137.730000px;}
.w1f{width:141.660000px;}
.w34{width:148.050000px;}
.w3a{width:149.880000px;}
.w32{width:152.400000px;}
.w13{width:162.990000px;}
.w39{width:164.970000px;}
.w29{width:182.250000px;}
.w6{width:220.350000px;}
.w2c{width:229.500000px;}
.w33{width:243.750000px;}
.w1a{width:250.860000px;}
.w12{width:253.830000px;}
.w16{width:254.460000px;}
.w22{width:255.690000px;}
.w1e{width:263.190000px;}
.w30{width:266.970000px;}
.w28{width:273.900000px;}
.w37{width:286.470000px;}
.w3e{width:339.600000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x79{left:3.870000px;}
.x12{left:6.660000px;}
.x3{left:8.640000px;}
.x45{left:10.890000px;}
.x6e{left:11.970000px;}
.x69{left:13.230000px;}
.x36{left:15.300000px;}
.x3e{left:16.740000px;}
.x23{left:17.820000px;}
.x6b{left:18.900000px;}
.x11{left:20.160000px;}
.x25{left:22.170000px;}
.x2c{left:23.310000px;}
.x21{left:25.110000px;}
.x4b{left:26.580000px;}
.x15{left:27.630000px;}
.x3f{left:29.550000px;}
.x2f{left:30.960000px;}
.x2d{left:32.130000px;}
.x13{left:34.110000px;}
.x14{left:36.090000px;}
.x57{left:37.350000px;}
.x26{left:38.430000px;}
.x80{left:39.690000px;}
.x27{left:41.790000px;}
.xe{left:44.189986px;}
.x6{left:45.540000px;}
.x37{left:46.710000px;}
.x72{left:47.880000px;}
.x2e{left:48.960000px;}
.x48{left:50.700000px;}
.x4c{left:52.380000px;}
.x2{left:53.999986px;}
.x38{left:55.200000px;}
.x4a{left:57.330000px;}
.x49{left:58.410000px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.x60{left:62.640000px;}
.x68{left:63.720000px;}
.x16{left:65.429986px;}
.x46{left:67.050000px;}
.x54{left:68.670000px;}
.x42{left:72.450000px;}
.x78{left:74.430000px;}
.x40{left:75.510000px;}
.x4d{left:76.589986px;}
.x41{left:78.480000px;}
.x5e{left:82.439986px;}
.x6a{left:85.050000px;}
.x1c{left:86.759986px;}
.x19{left:88.199986px;}
.xa{left:96.209986px;}
.x4{left:100.890000px;}
.x67{left:103.950000px;}
.x9{left:105.659986px;}
.x5{left:107.999986px;}
.x76{left:145.259986px;}
.x5f{left:161.129986px;}
.x7c{left:165.899986px;}
.x32{left:170.039986px;}
.x58{left:172.019986px;}
.x33{left:181.109986px;}
.x61{left:192.180000px;}
.x5a{left:197.579986px;}
.x7b{left:200.279986px;}
.x6d{left:204.150000px;}
.x7d{left:216.570000px;}
.x5d{left:225.929986px;}
.x34{left:238.710000px;}
.x31{left:252.569986px;}
.xf{left:257.339986px;}
.x77{left:282.900000px;}
.x7e{left:298.470000px;}
.xd{left:304.499986px;}
.x62{left:320.790000px;}
.x6f{left:324.750000px;}
.x35{left:329.160000px;}
.xb{left:349.049986px;}
.x7f{left:377.400000px;}
.x30{left:417.989986px;}
.x39{left:424.289986px;}
.x4e{left:435.449986px;}
.x59{left:440.669986px;}
.x7a{left:442.379986px;}
.x6c{left:443.459986px;}
.x8{left:459.029986px;}
.xc{left:464.159986px;}
.x1f{left:473.700000px;}
.x18{left:478.229986px;}
.x1a{left:479.759986px;}
.x3a{left:480.839986px;}
.x51{left:482.999986px;}
.x53{left:484.440000px;}
.x43{left:486.689986px;}
.x73{left:491.189986px;}
.x81{left:498.570000px;}
.x1b{left:506.759986px;}
.x4f{left:517.109986px;}
.x29{left:518.820000px;}
.x65{left:525.839986px;}
.x74{left:572.639986px;}
.x20{left:580.110000px;}
.x28{left:585.689986px;}
.x70{left:588.840000px;}
.x66{left:590.730000px;}
.x1d{left:599.009986px;}
.x52{left:602.609986px;}
.x3c{left:610.260000px;}
.x44{left:611.970000px;}
.x2a{left:621.240000px;}
.x55{left:622.680000px;}
.x3b{left:626.639986px;}
.x10{left:642.210000px;}
.x1e{left:671.099986px;}
.x22{left:675.780000px;}
.x71{left:703.410000px;}
.x2b{left:731.850000px;}
.x47{left:735.630000px;}
.x63{left:739.320000px;}
.x56{left:743.100000px;}
.x5c{left:745.620000px;}
.x24{left:760.920000px;}
.x75{left:771.540000px;}
.x3d{left:773.970000px;}
.x7{left:812.430000px;}
.x5b{left:855.899986px;}
.x50{left:863.279986px;}
.x64{left:865.079986px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.ls10{letter-spacing:-0.367467pt;}
.ls9{letter-spacing:-0.308267pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.136533pt;}
.ls13{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.016640pt;}
.lse{letter-spacing:-0.008320pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.008320pt;}
.lsc{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:14.583680pt;}
.ls5{letter-spacing:32.823680pt;}
.ls4{letter-spacing:36.576000pt;}
.lsa{letter-spacing:41.143680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls2{letter-spacing:669.626667pt;}
.ws6{word-spacing:-53.440000pt;}
.ws9{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.223467pt;}
.ws8{word-spacing:-13.051733pt;}
.ws4{word-spacing:-12.640000pt;}
.ws5{word-spacing:-12.000000pt;}
.wsa{word-spacing:-10.800000pt;}
.wsd{word-spacing:-10.648320pt;}
.ws1{word-spacing:-10.640000pt;}
.wsb{word-spacing:-10.631680pt;}
.wse{word-spacing:-10.560000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.922560pt;}
._e{width:2.612373pt;}
._f{width:4.196480pt;}
._a{width:5.207680pt;}
._b{width:6.117760pt;}
._7{width:7.634560pt;}
._6{width:8.898560pt;}
._9{width:10.061440pt;}
._5{width:11.578240pt;}
._26{width:12.471040pt;}
._d{width:13.853440pt;}
._10{width:14.834560pt;}
._12{width:16.037120pt;}
._c{width:17.038720pt;}
._8{width:18.100480pt;}
._16{width:19.056000pt;}
._18{width:20.436160pt;}
._1c{width:21.376000pt;}
._20{width:22.605120pt;}
._2c{width:23.513600pt;}
._17{width:24.422080pt;}
._22{width:26.078720pt;}
._14{width:26.987200pt;}
._1d{width:28.643840pt;}
._19{width:29.659200pt;}
._15{width:30.588480pt;}
._13{width:31.920000pt;}
._33{width:33.060800pt;}
._27{width:34.201600pt;}
._29{width:35.216960pt;}
._28{width:36.339200pt;}
._21{width:37.408000pt;}
._11{width:39.152000pt;}
._2a{width:40.366720pt;}
._25{width:41.683200pt;}
._2b{width:42.752000pt;}
._34{width:43.767360pt;}
._35{width:44.703360pt;}
._2d{width:45.904960pt;}
._2f{width:47.401280pt;}
._2e{width:48.309760pt;}
._31{width:50.287040pt;}
._32{width:51.462720pt;}
._30{width:52.584960pt;}
._24{width:54.401920pt;}
._23{width:55.417280pt;}
._1b{width:57.341120pt;}
._36{width:58.890880pt;}
._1e{width:62.845440pt;}
._1f{width:63.914240pt;}
._1a{width:89.405120pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
._4{width:894.556373pt;}
.fsa{font-size:21.440000pt;}
.fs3{font-size:26.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:2.320000pt;}
.y233{bottom:2.346667pt;}
.y6{bottom:2.400000pt;}
.y47{bottom:2.640000pt;}
.y221{bottom:2.720000pt;}
.y34{bottom:2.800000pt;}
.y16{bottom:2.880000pt;}
.y2a6{bottom:4.080000pt;}
.y183{bottom:4.160000pt;}
.y2ab{bottom:4.240000pt;}
.y3f{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y1f2{bottom:8.800000pt;}
.y231{bottom:8.826667pt;}
.yea{bottom:12.080000pt;}
.y9{bottom:12.480000pt;}
.y130{bottom:14.560000pt;}
.y1bd{bottom:14.586667pt;}
.y5{bottom:14.640000pt;}
.y12e{bottom:14.960000pt;}
.y1bb{bottom:15.280000pt;}
.y46{bottom:16.400000pt;}
.y180{bottom:16.720000pt;}
.y3d{bottom:17.200000pt;}
.y33{bottom:17.360000pt;}
.y1f1{bottom:21.040000pt;}
.y230{bottom:21.066667pt;}
.y272{bottom:26.800000pt;}
.y1f4{bottom:26.880000pt;}
.y220{bottom:27.200000pt;}
.y270{bottom:27.520000pt;}
.y1ba{bottom:27.546667pt;}
.y182{bottom:28.640000pt;}
.y17f{bottom:29.040000pt;}
.y45{bottom:30.240000pt;}
.y7{bottom:31.600000pt;}
.y3c{bottom:31.840000pt;}
.y32{bottom:31.920000pt;}
.y1f0{bottom:33.360000pt;}
.y2b1{bottom:39.120000pt;}
.y26f{bottom:39.760000pt;}
.y251{bottom:39.866667pt;}
.y44{bottom:44.000000pt;}
.y3b{bottom:45.600000pt;}
.y31{bottom:46.480000pt;}
.y2b0{bottom:51.360000pt;}
.y3{bottom:51.680000pt;}
.y43{bottom:57.840000pt;}
.y3a{bottom:59.440000pt;}
.y30{bottom:61.040000pt;}
.y42{bottom:71.600000pt;}
.y39{bottom:73.226667pt;}
.y2f{bottom:75.600000pt;}
.y49{bottom:77.280000pt;}
.y41{bottom:85.440000pt;}
.y38{bottom:86.986667pt;}
.y2e{bottom:90.160000pt;}
.y2ad{bottom:99.200000pt;}
.y4c{bottom:100.400000pt;}
.y37{bottom:100.826667pt;}
.yb3{bottom:102.560000pt;}
.y1f8{bottom:103.600000pt;}
.y107{bottom:103.840000pt;}
.y2d{bottom:104.720000pt;}
.ye4{bottom:106.400000pt;}
.y24f{bottom:106.800000pt;}
.y84{bottom:110.240000pt;}
.y229{bottom:110.320000pt;}
.y147{bottom:112.000000pt;}
.y2ac{bottom:112.080000pt;}
.y15b{bottom:112.800000pt;}
.y36{bottom:114.586667pt;}
.y4b{bottom:115.760000pt;}
.y1f7{bottom:116.560000pt;}
.yb2{bottom:117.920000pt;}
.y106{bottom:119.120000pt;}
.y2c{bottom:119.280000pt;}
.y24e{bottom:119.600000pt;}
.y129{bottom:121.120000pt;}
.ye3{bottom:121.680000pt;}
.y18d{bottom:122.400000pt;}
.y2aa{bottom:125.040000pt;}
.y83{bottom:125.520000pt;}
.y146{bottom:127.360000pt;}
.y228{bottom:128.560000pt;}
.y1f6{bottom:129.520000pt;}
.y128{bottom:131.040000pt;}
.y4a{bottom:131.120000pt;}
.yb1{bottom:133.200000pt;}
.y2b{bottom:133.840000pt;}
.y105{bottom:134.480000pt;}
.y24d{bottom:134.960000pt;}
.ye2{bottom:137.040000pt;}
.y18c{bottom:137.680000pt;}
.y82{bottom:140.906667pt;}
.y227{bottom:141.546667pt;}
.y2a9{bottom:141.706667pt;}
.y1f5{bottom:142.426667pt;}
.y145{bottom:142.666667pt;}
.y17{bottom:144.186667pt;}
.y2a{bottom:148.400000pt;}
.yb0{bottom:148.586667pt;}
.y104{bottom:149.786667pt;}
.y24c{bottom:150.266667pt;}
.ye1{bottom:152.426667pt;}
.y18b{bottom:153.066667pt;}
.y226{bottom:154.506667pt;}
.y2a8{bottom:154.666667pt;}
.y1ef{bottom:155.386667pt;}
.y144{bottom:155.786667pt;}
.y81{bottom:156.266667pt;}
.y287{bottom:158.026667pt;}
.y2af{bottom:159.226667pt;}
.y29{bottom:162.960000pt;}
.yaf{bottom:163.866667pt;}
.y103{bottom:165.146667pt;}
.y24b{bottom:165.626667pt;}
.y225{bottom:167.386667pt;}
.y2a7{bottom:167.626667pt;}
.ye0{bottom:167.706667pt;}
.y18a{bottom:167.866667pt;}
.y1f3{bottom:168.346667pt;}
.y143{bottom:168.746667pt;}
.y48{bottom:169.040000pt;}
.y80{bottom:171.546667pt;}
.y286{bottom:173.386667pt;}
.y28{bottom:177.520000pt;}
.yae{bottom:179.226667pt;}
.y189{bottom:180.106667pt;}
.y224{bottom:180.346667pt;}
.y102{bottom:180.506667pt;}
.y24a{bottom:180.986667pt;}
.y142{bottom:181.706667pt;}
.ydf{bottom:183.066667pt;}
.y7f{bottom:186.906667pt;}
.y285{bottom:188.666667pt;}
.y188{bottom:190.746667pt;}
.y27{bottom:192.080000pt;}
.y223{bottom:193.226667pt;}
.yad{bottom:194.586667pt;}
.y101{bottom:195.306667pt;}
.y249{bottom:196.266667pt;}
.y2a5{bottom:198.266667pt;}
.yde{bottom:198.426667pt;}
.y7e{bottom:202.186667pt;}
.y187{bottom:203.626667pt;}
.y284{bottom:204.026667pt;}
.y100{bottom:205.866667pt;}
.y21f{bottom:206.186667pt;}
.y26{bottom:206.720000pt;}
.y2a4{bottom:206.906667pt;}
.y1ee{bottom:207.226667pt;}
.y141{bottom:207.546667pt;}
.yac{bottom:209.866667pt;}
.y248{bottom:211.626667pt;}
.ydd{bottom:213.706667pt;}
.y1ed{bottom:215.786667pt;}
.y186{bottom:216.586667pt;}
.y7d{bottom:217.546667pt;}
.yff{bottom:218.826667pt;}
.y222{bottom:219.146667pt;}
.y283{bottom:219.386667pt;}
.y140{bottom:220.506667pt;}
.y2ae{bottom:221.226667pt;}
.y25{bottom:221.280000pt;}
.y1a3{bottom:222.586667pt;}
.yab{bottom:225.226667pt;}
.y247{bottom:226.906667pt;}
.y1ec{bottom:228.026667pt;}
.y1cf{bottom:228.506667pt;}
.ydc{bottom:229.066667pt;}
.y185{bottom:229.546667pt;}
.y2a3{bottom:231.066667pt;}
.yfe{bottom:231.706667pt;}
.y7c{bottom:232.906667pt;}
.y13e{bottom:233.386667pt;}
.y282{bottom:234.666667pt;}
.y24{bottom:235.840000pt;}
.y1a2{bottom:237.946667pt;}
.yaa{bottom:240.586667pt;}
.y1eb{bottom:240.826667pt;}
.y2a2{bottom:242.106667pt;}
.y246{bottom:242.266667pt;}
.y184{bottom:242.426667pt;}
.y1ce{bottom:243.866667pt;}
.ydb{bottom:244.426667pt;}
.yfd{bottom:244.666667pt;}
.y21e{bottom:245.786667pt;}
.y13f{bottom:246.346667pt;}
.y7b{bottom:248.186667pt;}
.y281{bottom:250.026667pt;}
.y23{bottom:250.400000pt;}
.y1a1{bottom:253.226667pt;}
.y21d{bottom:254.346667pt;}
.y2a1{bottom:254.426667pt;}
.y17e{bottom:255.386667pt;}
.ya9{bottom:255.866667pt;}
.y1ea{bottom:256.186667pt;}
.y245{bottom:257.626667pt;}
.yfc{bottom:259.066667pt;}
.y1cd{bottom:259.226667pt;}
.yda{bottom:259.706667pt;}
.y7a{bottom:263.546667pt;}
.y2a0{bottom:264.346667pt;}
.y22{bottom:264.960000pt;}
.y280{bottom:265.386667pt;}
.y21c{bottom:267.146667pt;}
.y15a{bottom:267.306667pt;}
.yfb{bottom:267.626667pt;}
.y181{bottom:268.346667pt;}
.y1a0{bottom:268.586667pt;}
.ya8{bottom:271.226667pt;}
.y1e9{bottom:271.546667pt;}
.y244{bottom:272.906667pt;}
.y13d{bottom:272.986667pt;}
.y1cc{bottom:274.506667pt;}
.yd9{bottom:275.066667pt;}
.y127{bottom:276.906667pt;}
.y79{bottom:278.906667pt;}
.y21{bottom:279.520000pt;}
.yfa{bottom:280.426667pt;}
.y27f{bottom:280.666667pt;}
.y13c{bottom:281.546667pt;}
.y21b{bottom:282.506667pt;}
.y159{bottom:282.586667pt;}
.y19f{bottom:283.386667pt;}
.ya7{bottom:286.586667pt;}
.y1e8{bottom:286.826667pt;}
.y243{bottom:288.266667pt;}
.y1cb{bottom:289.866667pt;}
.yd8{bottom:290.426667pt;}
.y126{bottom:292.266667pt;}
.y20{bottom:294.080000pt;}
.y78{bottom:294.186667pt;}
.y13b{bottom:294.346667pt;}
.y19e{bottom:295.626667pt;}
.yf9{bottom:295.786667pt;}
.y27e{bottom:296.026667pt;}
.y21a{bottom:297.786667pt;}
.y158{bottom:297.946667pt;}
.ya6{bottom:301.866667pt;}
.y1e7{bottom:302.186667pt;}
.y242{bottom:303.626667pt;}
.y1ca{bottom:305.226667pt;}
.y19d{bottom:305.546667pt;}
.yd7{bottom:305.706667pt;}
.y125{bottom:307.626667pt;}
.y1f{bottom:308.640000pt;}
.y77{bottom:309.546667pt;}
.y13a{bottom:309.706667pt;}
.yf8{bottom:311.066667pt;}
.y27d{bottom:311.386667pt;}
.y17d{bottom:311.706667pt;}
.y219{bottom:313.146667pt;}
.y157{bottom:313.306667pt;}
.ya5{bottom:317.226667pt;}
.y1e6{bottom:317.546667pt;}
.y241{bottom:318.906667pt;}
.y1c9{bottom:320.506667pt;}
.yd6{bottom:321.066667pt;}
.y124{bottom:322.426667pt;}
.y1e{bottom:323.200000pt;}
.y17c{bottom:324.026667pt;}
.y76{bottom:324.906667pt;}
.y139{bottom:324.986667pt;}
.y40{bottom:325.066667pt;}
.yf7{bottom:326.426667pt;}
.y27c{bottom:326.666667pt;}
.y218{bottom:328.506667pt;}
.y156{bottom:328.586667pt;}
.ya4{bottom:332.586667pt;}
.y1e5{bottom:332.826667pt;}
.y123{bottom:333.786667pt;}
.y240{bottom:334.266667pt;}
.y1c8{bottom:335.866667pt;}
.y17b{bottom:336.266667pt;}
.yd5{bottom:336.346667pt;}
.y1d{bottom:337.760000pt;}
.y75{bottom:340.186667pt;}
.y138{bottom:340.346667pt;}
.y122{bottom:340.666667pt;}
.yf6{bottom:341.706667pt;}
.y27b{bottom:342.026667pt;}
.y217{bottom:343.786667pt;}
.y155{bottom:343.946667pt;}
.y1e4{bottom:348.186667pt;}
.y17a{bottom:348.506667pt;}
.ya3{bottom:348.826667pt;}
.y23f{bottom:349.626667pt;}
.y1c7{bottom:351.226667pt;}
.yd4{bottom:351.706667pt;}
.y1c{bottom:352.320000pt;}
.y121{bottom:353.546667pt;}
.y137{bottom:355.146667pt;}
.y74{bottom:355.546667pt;}
.y27a{bottom:356.826667pt;}
.yf5{bottom:357.066667pt;}
.y216{bottom:359.146667pt;}
.y154{bottom:359.226667pt;}
.y179{bottom:361.306667pt;}
.y1e3{bottom:363.546667pt;}
.ya2{bottom:364.186667pt;}
.y23e{bottom:364.906667pt;}
.y120{bottom:366.506667pt;}
.y1b{bottom:366.906667pt;}
.yd3{bottom:367.066667pt;}
.y279{bottom:368.186667pt;}
.y73{bottom:370.906667pt;}
.yf4{bottom:372.426667pt;}
.y136{bottom:373.386667pt;}
.y215{bottom:374.426667pt;}
.y153{bottom:374.586667pt;}
.y278{bottom:375.066667pt;}
.y178{bottom:376.666667pt;}
.y1e2{bottom:378.826667pt;}
.y11f{bottom:379.466667pt;}
.ya1{bottom:379.546667pt;}
.y23d{bottom:380.266667pt;}
.y1a{bottom:381.466667pt;}
.y1c6{bottom:381.866667pt;}
.yd2{bottom:382.346667pt;}
.y72{bottom:386.186667pt;}
.y135{bottom:386.346667pt;}
.yf3{bottom:387.706667pt;}
.y277{bottom:388.026667pt;}
.y214{bottom:389.786667pt;}
.y152{bottom:389.946667pt;}
.y177{bottom:392.026667pt;}
.y11e{bottom:392.346667pt;}
.y1e1{bottom:394.186667pt;}
.ya0{bottom:394.826667pt;}
.y23c{bottom:395.626667pt;}
.y19{bottom:396.026667pt;}
.y1c5{bottom:396.666667pt;}
.yd1{bottom:397.706667pt;}
.y134{bottom:399.226667pt;}
.y276{bottom:400.906667pt;}
.y71{bottom:401.546667pt;}
.yf2{bottom:403.066667pt;}
.y213{bottom:405.146667pt;}
.y151{bottom:405.226667pt;}
.y11d{bottom:406.746667pt;}
.y176{bottom:407.306667pt;}
.y1c4{bottom:408.026667pt;}
.y1e0{bottom:409.546667pt;}
.y18{bottom:410.586667pt;}
.y23b{bottom:410.906667pt;}
.y9f{bottom:411.146667pt;}
.y133{bottom:412.186667pt;}
.yd0{bottom:413.066667pt;}
.y275{bottom:413.866667pt;}
.y1c3{bottom:414.906667pt;}
.y11c{bottom:415.306667pt;}
.y70{bottom:416.906667pt;}
.yf1{bottom:418.426667pt;}
.y212{bottom:420.426667pt;}
.y150{bottom:420.586667pt;}
.y3e{bottom:422.346667pt;}
.y175{bottom:422.666667pt;}
.y1df{bottom:424.826667pt;}
.y132{bottom:425.146667pt;}
.y23a{bottom:425.706667pt;}
.y9e{bottom:426.426667pt;}
.y274{bottom:426.826667pt;}
.y29f{bottom:427.546667pt;}
.y11b{bottom:427.626667pt;}
.y1c2{bottom:427.866667pt;}
.ycf{bottom:428.346667pt;}
.y6f{bottom:432.186667pt;}
.yf0{bottom:433.706667pt;}
.y29e{bottom:435.386667pt;}
.y211{bottom:435.786667pt;}
.y14f{bottom:435.946667pt;}
.y239{bottom:437.066667pt;}
.y131{bottom:438.026667pt;}
.y273{bottom:439.706667pt;}
.y1de{bottom:440.186667pt;}
.y11a{bottom:440.426667pt;}
.y1c1{bottom:440.746667pt;}
.y35{bottom:440.826667pt;}
.y9d{bottom:442.746667pt;}
.yce{bottom:443.706667pt;}
.y238{bottom:443.946667pt;}
.y6e{bottom:447.546667pt;}
.yef{bottom:449.066667pt;}
.y210{bottom:450.586667pt;}
.y29d{bottom:450.746667pt;}
.y12d{bottom:450.986667pt;}
.y14e{bottom:451.226667pt;}
.y26e{bottom:452.666667pt;}
.y174{bottom:453.306667pt;}
.y1c0{bottom:453.706667pt;}
.y1dd{bottom:454.986667pt;}
.y119{bottom:455.706667pt;}
.y19c{bottom:455.786667pt;}
.y237{bottom:456.906667pt;}
.y9c{bottom:458.106667pt;}
.ycd{bottom:459.066667pt;}
.y20f{bottom:460.506667pt;}
.y6d{bottom:462.906667pt;}
.y12f{bottom:463.946667pt;}
.yee{bottom:464.426667pt;}
.y271{bottom:465.626667pt;}
.y29c{bottom:466.106667pt;}
.y14d{bottom:466.586667pt;}
.y1bf{bottom:466.666667pt;}
.y1dc{bottom:467.226667pt;}
.y173{bottom:468.666667pt;}
.y236{bottom:469.866667pt;}
.y118{bottom:471.066667pt;}
.y19b{bottom:471.146667pt;}
.y9b{bottom:473.386667pt;}
.ycc{bottom:474.346667pt;}
.y1db{bottom:477.146667pt;}
.y6c{bottom:478.186667pt;}
.y1be{bottom:479.546667pt;}
.yed{bottom:479.706667pt;}
.y29b{bottom:481.386667pt;}
.y14c{bottom:481.946667pt;}
.y235{bottom:482.746667pt;}
.y172{bottom:484.026667pt;}
.y117{bottom:486.426667pt;}
.y9a{bottom:488.746667pt;}
.ycb{bottom:489.706667pt;}
.y12c{bottom:490.586667pt;}
.y1b9{bottom:492.506667pt;}
.y6b{bottom:493.546667pt;}
.yec{bottom:494.506667pt;}
.y234{bottom:495.706667pt;}
.y29a{bottom:496.746667pt;}
.y14b{bottom:497.226667pt;}
.y12b{bottom:499.146667pt;}
.y171{bottom:499.306667pt;}
.y116{bottom:501.706667pt;}
.y19a{bottom:501.786667pt;}
.y99{bottom:504.106667pt;}
.y26d{bottom:504.506667pt;}
.yca{bottom:505.066667pt;}
.y1bc{bottom:505.466667pt;}
.yeb{bottom:506.826667pt;}
.y22f{bottom:508.666667pt;}
.y6a{bottom:508.826667pt;}
.y14a{bottom:509.706667pt;}
.y12a{bottom:511.413333pt;}
.y299{bottom:512.053333pt;}
.y26c{bottom:513.093333pt;}
.y170{bottom:514.693333pt;}
.y115{bottom:517.093333pt;}
.y199{bottom:517.173333pt;}
.ye9{bottom:517.413333pt;}
.y98{bottom:519.413333pt;}
.yc9{bottom:520.373333pt;}
.y232{bottom:521.573333pt;}
.y69{bottom:524.213333pt;}
.y26b{bottom:525.333333pt;}
.y298{bottom:527.413333pt;}
.y16f{bottom:529.973333pt;}
.y114{bottom:532.373333pt;}
.y198{bottom:532.453333pt;}
.y1b8{bottom:533.013333pt;}
.y97{bottom:534.773333pt;}
.yc8{bottom:535.733333pt;}
.y26a{bottom:538.133333pt;}
.y68{bottom:539.573333pt;}
.y297{bottom:542.773333pt;}
.y1b7{bottom:545.253333pt;}
.y16e{bottom:545.333333pt;}
.y113{bottom:547.733333pt;}
.y197{bottom:547.813333pt;}
.y22e{bottom:549.173333pt;}
.ye7{bottom:549.813333pt;}
.y96{bottom:550.133333pt;}
.yc7{bottom:551.093333pt;}
.y269{bottom:553.493333pt;}
.y67{bottom:554.853333pt;}
.y1b6{bottom:557.573333pt;}
.y296{bottom:558.053333pt;}
.y16d{bottom:560.693333pt;}
.y22d{bottom:561.413333pt;}
.y112{bottom:563.093333pt;}
.y196{bottom:563.173333pt;}
.ye6{bottom:564.213333pt;}
.y95{bottom:565.413333pt;}
.yc6{bottom:566.373333pt;}
.y15{bottom:567.333333pt;}
.y268{bottom:568.853333pt;}
.y1b5{bottom:569.813333pt;}
.y66{bottom:570.213333pt;}
.ye5{bottom:572.773333pt;}
.y295{bottom:573.413333pt;}
.y22c{bottom:573.653333pt;}
.y16c{bottom:575.973333pt;}
.y111{bottom:578.373333pt;}
.y195{bottom:578.453333pt;}
.y94{bottom:580.773333pt;}
.yc5{bottom:581.733333pt;}
.y1b4{bottom:582.613333pt;}
.y267{bottom:584.133333pt;}
.y65{bottom:585.573333pt;}
.y22b{bottom:586.453333pt;}
.y294{bottom:588.773333pt;}
.y16b{bottom:591.333333pt;}
.y110{bottom:593.733333pt;}
.y194{bottom:593.813333pt;}
.y93{bottom:596.133333pt;}
.yc4{bottom:597.093333pt;}
.y1b3{bottom:597.973333pt;}
.y14{bottom:598.053333pt;}
.y22a{bottom:598.933333pt;}
.y266{bottom:599.493333pt;}
.y64{bottom:600.853333pt;}
.y293{bottom:603.573333pt;}
.y16a{bottom:606.693333pt;}
.y10f{bottom:609.093333pt;}
.y193{bottom:609.173333pt;}
.y92{bottom:611.413333pt;}
.yc3{bottom:612.373333pt;}
.y1b2{bottom:613.253333pt;}
.y265{bottom:614.853333pt;}
.y292{bottom:614.933333pt;}
.y13{bottom:615.733333pt;}
.y63{bottom:616.213333pt;}
.y291{bottom:621.813333pt;}
.y169{bottom:621.973333pt;}
.y10e{bottom:624.373333pt;}
.y192{bottom:624.453333pt;}
.y20e{bottom:626.453333pt;}
.y91{bottom:627.733333pt;}
.y1b1{bottom:628.613333pt;}
.y264{bottom:630.133333pt;}
.y62{bottom:631.573333pt;}
.y290{bottom:634.773333pt;}
.y168{bottom:637.333333pt;}
.y10d{bottom:639.733333pt;}
.y191{bottom:639.813333pt;}
.y20d{bottom:641.813333pt;}
.y90{bottom:643.013333pt;}
.y1b0{bottom:643.973333pt;}
.y263{bottom:645.493333pt;}
.y12{bottom:645.653333pt;}
.y61{bottom:646.853333pt;}
.y28f{bottom:647.653333pt;}
.y167{bottom:652.693333pt;}
.y190{bottom:654.613333pt;}
.y10c{bottom:655.093333pt;}
.y1da{bottom:656.213333pt;}
.y11{bottom:656.373333pt;}
.y20c{bottom:657.173333pt;}
.y8f{bottom:658.373333pt;}
.y1af{bottom:659.253333pt;}
.y28e{bottom:660.613333pt;}
.y262{bottom:660.773333pt;}
.y60{bottom:662.213333pt;}
.y18f{bottom:666.853333pt;}
.y166{bottom:667.973333pt;}
.y10b{bottom:670.373333pt;}
.y149{bottom:671.493333pt;}
.y10{bottom:671.973333pt;}
.y20b{bottom:672.453333pt;}
.y28d{bottom:673.493333pt;}
.yc2{bottom:673.733333pt;}
.y1ae{bottom:674.613333pt;}
.y8e{bottom:674.693333pt;}
.y261{bottom:676.133333pt;}
.y18e{bottom:676.773333pt;}
.y5f{bottom:677.573333pt;}
.y148{bottom:680.053333pt;}
.y165{bottom:683.333333pt;}
.y10a{bottom:685.173333pt;}
.y28c{bottom:686.453333pt;}
.y1d9{bottom:686.853333pt;}
.y20a{bottom:687.813333pt;}
.yc1{bottom:689.013333pt;}
.y1ad{bottom:689.893333pt;}
.y8d{bottom:689.973333pt;}
.yf{bottom:690.853333pt;}
.y260{bottom:691.493333pt;}
.y5e{bottom:692.853333pt;}
.y109{bottom:696.533333pt;}
.y164{bottom:698.693333pt;}
.y28a{bottom:699.413333pt;}
.y1d8{bottom:701.653333pt;}
.y108{bottom:702.773333pt;}
.y209{bottom:703.173333pt;}
.yc0{bottom:704.373333pt;}
.y1ac{bottom:705.253333pt;}
.y8c{bottom:705.333333pt;}
.y25f{bottom:706.773333pt;}
.y5d{bottom:708.213333pt;}
.y28b{bottom:712.293333pt;}
.y1d7{bottom:713.893333pt;}
.y163{bottom:713.973333pt;}
.ye{bottom:718.453333pt;}
.ybf{bottom:719.733333pt;}
.y1ab{bottom:720.613333pt;}
.y8b{bottom:721.653333pt;}
.y25e{bottom:722.133333pt;}
.y5c{bottom:723.573333pt;}
.y1d6{bottom:726.213333pt;}
.y162{bottom:728.773333pt;}
.y208{bottom:733.813333pt;}
.ybe{bottom:735.013333pt;}
.y1aa{bottom:735.893333pt;}
.y8a{bottom:736.933333pt;}
.y25d{bottom:737.493333pt;}
.y1d5{bottom:738.453333pt;}
.y5b{bottom:738.853333pt;}
.y161{bottom:741.093333pt;}
.yd{bottom:746.053333pt;}
.y207{bottom:749.173333pt;}
.ybd{bottom:750.373333pt;}
.y1d4{bottom:750.693333pt;}
.y160{bottom:751.013333pt;}
.y1a9{bottom:751.253333pt;}
.y89{bottom:752.293333pt;}
.y25c{bottom:752.773333pt;}
.y5a{bottom:754.213333pt;}
.y289{bottom:759.813333pt;}
.y1d3{bottom:763.013333pt;}
.y206{bottom:764.453333pt;}
.ybc{bottom:765.733333pt;}
.y1a8{bottom:766.613333pt;}
.y88{bottom:767.653333pt;}
.y25b{bottom:768.133333pt;}
.y59{bottom:769.573333pt;}
.y288{bottom:772.053333pt;}
.yc{bottom:773.653333pt;}
.y1d2{bottom:775.253333pt;}
.y205{bottom:779.813333pt;}
.ybb{bottom:781.013333pt;}
.y1a7{bottom:781.893333pt;}
.y25a{bottom:782.933333pt;}
.y87{bottom:783.893333pt;}
.y58{bottom:784.853333pt;}
.y1d1{bottom:787.493333pt;}
.y259{bottom:794.293333pt;}
.y204{bottom:795.173333pt;}
.yba{bottom:796.373333pt;}
.y1a6{bottom:797.253333pt;}
.y86{bottom:799.253333pt;}
.y1d0{bottom:799.813333pt;}
.y57{bottom:800.213333pt;}
.y258{bottom:801.173333pt;}
.yb{bottom:801.253333pt;}
.y203{bottom:810.453333pt;}
.y1a5{bottom:812.053333pt;}
.yb9{bottom:812.693333pt;}
.y257{bottom:814.133333pt;}
.y85{bottom:814.613333pt;}
.y56{bottom:815.493333pt;}
.y1a4{bottom:821.973333pt;}
.y202{bottom:825.813333pt;}
.ya{bottom:826.853333pt;}
.y256{bottom:827.013333pt;}
.yb8{bottom:827.973333pt;}
.y55{bottom:830.853333pt;}
.y255{bottom:839.973333pt;}
.y8{bottom:840.533333pt;}
.y201{bottom:841.093333pt;}
.yb7{bottom:844.293333pt;}
.y54{bottom:846.213333pt;}
.y254{bottom:852.933333pt;}
.y200{bottom:856.453333pt;}
.yb6{bottom:859.653333pt;}
.y53{bottom:861.493333pt;}
.y253{bottom:865.813333pt;}
.y1ff{bottom:871.813333pt;}
.yb5{bottom:875.893333pt;}
.y52{bottom:876.853333pt;}
.y250{bottom:878.773333pt;}
.y1fe{bottom:887.120000pt;}
.yb4{bottom:891.280000pt;}
.y252{bottom:891.760000pt;}
.y51{bottom:892.240000pt;}
.y1fd{bottom:902.480000pt;}
.y50{bottom:907.520000pt;}
.y1fc{bottom:917.280000pt;}
.y15f{bottom:919.280000pt;}
.y4f{bottom:922.880000pt;}
.y1fb{bottom:929.520000pt;}
.y15e{bottom:931.520000pt;}
.y4e{bottom:938.240000pt;}
.y1fa{bottom:940.160000pt;}
.y15d{bottom:943.840000pt;}
.y1f9{bottom:953.040000pt;}
.y4d{bottom:953.520000pt;}
.y15c{bottom:956.080000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1f{height:12.240000pt;}
.h2c{height:12.266667pt;}
.h22{height:12.320000pt;}
.h2d{height:12.346533pt;}
.h31{height:14.970312pt;}
.h10{height:15.280000pt;}
.h33{height:15.680000pt;}
.h34{height:16.026667pt;}
.h16{height:17.840000pt;}
.h21{height:18.545312pt;}
.h1e{height:18.739844pt;}
.hd{height:24.131250pt;}
.h24{height:24.480000pt;}
.h29{height:24.506667pt;}
.h3{height:24.560000pt;}
.h32{height:26.142187pt;}
.h5{height:29.717188pt;}
.h1d{height:30.028906pt;}
.h20{height:31.760000pt;}
.h18{height:33.515625pt;}
.h19{height:33.867188pt;}
.h6{height:34.739844pt;}
.h12{height:35.303125pt;}
.h14{height:35.554688pt;}
.h30{height:36.720000pt;}
.h2b{height:36.800000pt;}
.h4{height:37.314062pt;}
.h23{height:37.440000pt;}
.h28{height:37.466667pt;}
.h25{height:37.520000pt;}
.hf{height:37.705469pt;}
.h1c{height:37.809844pt;}
.h1b{height:38.905781pt;}
.h15{height:39.584219pt;}
.h2{height:40.262656pt;}
.h27{height:40.400000pt;}
.h8{height:40.889062pt;}
.hc{height:42.691250pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hb{height:47.856406pt;}
.h2f{height:49.680000pt;}
.h2a{height:49.760000pt;}
.h2e{height:49.786667pt;}
.h26{height:53.360000pt;}
.h35{height:61.280000pt;}
.he{height:67.031250pt;}
.ha{height:67.734375pt;}
.h17{height:96.640000pt;}
.h13{height:125.786667pt;}
.h7{height:136.826667pt;}
.h1a{height:180.240000pt;}
.h11{height:422.426667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w3d{width:60.960000pt;}
.w10{width:62.320000pt;}
.w3c{width:69.440000pt;}
.w3b{width:72.160000pt;}
.w9{width:75.040000pt;}
.wd{width:76.426667pt;}
.wf{width:79.680000pt;}
.w14{width:80.106667pt;}
.w2a{width:80.826667pt;}
.w36{width:84.266667pt;}
.w35{width:84.346667pt;}
.w8{width:84.400000pt;}
.wb{width:90.320000pt;}
.w2f{width:92.080000pt;}
.wa{width:93.786667pt;}
.w27{width:93.840000pt;}
.w7{width:93.946667pt;}
.w2e{width:96.800000pt;}
.wc{width:97.680000pt;}
.w31{width:101.200000pt;}
.w1d{width:104.880000pt;}
.w1b{width:106.400000pt;}
.w2d{width:106.560000pt;}
.w38{width:107.360000pt;}
.w20{width:107.386667pt;}
.w17{width:109.200000pt;}
.w25{width:111.600000pt;}
.w21{width:111.626667pt;}
.w24{width:112.960000pt;}
.w26{width:112.986667pt;}
.w23{width:113.680000pt;}
.w1c{width:115.946667pt;}
.w18{width:116.266667pt;}
.w11{width:120.746667pt;}
.w19{width:122.160000pt;}
.w2b{width:122.186667pt;}
.w15{width:122.266667pt;}
.we{width:122.426667pt;}
.w1f{width:125.920000pt;}
.w34{width:131.600000pt;}
.w3a{width:133.226667pt;}
.w32{width:135.466667pt;}
.w13{width:144.880000pt;}
.w39{width:146.640000pt;}
.w29{width:162.000000pt;}
.w6{width:195.866667pt;}
.w2c{width:204.000000pt;}
.w33{width:216.666667pt;}
.w1a{width:222.986667pt;}
.w12{width:225.626667pt;}
.w16{width:226.186667pt;}
.w22{width:227.280000pt;}
.w1e{width:233.946667pt;}
.w30{width:237.306667pt;}
.w28{width:243.466667pt;}
.w37{width:254.640000pt;}
.w3e{width:301.866667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x79{left:3.440000pt;}
.x12{left:5.920000pt;}
.x3{left:7.680000pt;}
.x45{left:9.680000pt;}
.x6e{left:10.640000pt;}
.x69{left:11.760000pt;}
.x36{left:13.600000pt;}
.x3e{left:14.880000pt;}
.x23{left:15.840000pt;}
.x6b{left:16.800000pt;}
.x11{left:17.920000pt;}
.x25{left:19.706667pt;}
.x2c{left:20.720000pt;}
.x21{left:22.320000pt;}
.x4b{left:23.626667pt;}
.x15{left:24.560000pt;}
.x3f{left:26.266667pt;}
.x2f{left:27.520000pt;}
.x2d{left:28.560000pt;}
.x13{left:30.320000pt;}
.x14{left:32.080000pt;}
.x57{left:33.200000pt;}
.x26{left:34.160000pt;}
.x80{left:35.280000pt;}
.x27{left:37.146667pt;}
.xe{left:39.279988pt;}
.x6{left:40.480000pt;}
.x37{left:41.520000pt;}
.x72{left:42.560000pt;}
.x2e{left:43.520000pt;}
.x48{left:45.066667pt;}
.x4c{left:46.560000pt;}
.x2{left:47.999988pt;}
.x38{left:49.066667pt;}
.x4a{left:50.960000pt;}
.x49{left:51.920000pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.x60{left:55.680000pt;}
.x68{left:56.640000pt;}
.x16{left:58.159988pt;}
.x46{left:59.600000pt;}
.x54{left:61.040000pt;}
.x42{left:64.400000pt;}
.x78{left:66.160000pt;}
.x40{left:67.120000pt;}
.x4d{left:68.079988pt;}
.x41{left:69.760000pt;}
.x5e{left:73.279988pt;}
.x6a{left:75.600000pt;}
.x1c{left:77.119988pt;}
.x19{left:78.399988pt;}
.xa{left:85.519988pt;}
.x4{left:89.680000pt;}
.x67{left:92.400000pt;}
.x9{left:93.919988pt;}
.x5{left:95.999988pt;}
.x76{left:129.119988pt;}
.x5f{left:143.226655pt;}
.x7c{left:147.466655pt;}
.x32{left:151.146655pt;}
.x58{left:152.906655pt;}
.x33{left:160.986655pt;}
.x61{left:170.826667pt;}
.x5a{left:175.626655pt;}
.x7b{left:178.026655pt;}
.x6d{left:181.466667pt;}
.x7d{left:192.506667pt;}
.x5d{left:200.826655pt;}
.x34{left:212.186667pt;}
.x31{left:224.506655pt;}
.xf{left:228.746655pt;}
.x77{left:251.466667pt;}
.x7e{left:265.306667pt;}
.xd{left:270.666655pt;}
.x62{left:285.146667pt;}
.x6f{left:288.666667pt;}
.x35{left:292.586667pt;}
.xb{left:310.266655pt;}
.x7f{left:335.466667pt;}
.x30{left:371.546655pt;}
.x39{left:377.146655pt;}
.x4e{left:387.066655pt;}
.x59{left:391.706655pt;}
.x7a{left:393.226655pt;}
.x6c{left:394.186655pt;}
.x8{left:408.026655pt;}
.xc{left:412.586655pt;}
.x1f{left:421.066667pt;}
.x18{left:425.093321pt;}
.x1a{left:426.453321pt;}
.x3a{left:427.413321pt;}
.x51{left:429.333321pt;}
.x53{left:430.613333pt;}
.x43{left:432.613321pt;}
.x73{left:436.613321pt;}
.x81{left:443.173333pt;}
.x1b{left:450.453321pt;}
.x4f{left:459.653321pt;}
.x29{left:461.173333pt;}
.x65{left:467.413321pt;}
.x74{left:509.013321pt;}
.x20{left:515.653333pt;}
.x28{left:520.613321pt;}
.x70{left:523.413333pt;}
.x66{left:525.093333pt;}
.x1d{left:532.453321pt;}
.x52{left:535.653321pt;}
.x3c{left:542.453333pt;}
.x44{left:543.973333pt;}
.x2a{left:552.213333pt;}
.x55{left:553.493333pt;}
.x3b{left:557.013321pt;}
.x10{left:570.853333pt;}
.x1e{left:596.533321pt;}
.x22{left:600.693333pt;}
.x71{left:625.253333pt;}
.x2b{left:650.533333pt;}
.x47{left:653.893333pt;}
.x63{left:657.173333pt;}
.x56{left:660.533333pt;}
.x5c{left:662.773333pt;}
.x24{left:676.373333pt;}
.x75{left:685.813333pt;}
.x3d{left:687.973333pt;}
.x7{left:722.160000pt;}
.x5b{left:760.799988pt;}
.x50{left:767.359988pt;}
.x64{left:768.959988pt;}
}




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