
    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_926f635974477240ab31c1ca.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a96649658f9a6a90df3dee19.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_92066a464ca8256a38478233.woff2')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_b4336445e671daa526467e72.woff2')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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_33652b0d36875c5a03f6916b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ef7a6981732940b8544d5816.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-69.264000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls9{letter-spacing:-1.800000px;}
.ls13{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls1d{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.186480px;}
.ls12{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.513600px;}
.lsc{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.828000px;}
.ls18{letter-spacing:0.979920px;}
.ls2{letter-spacing:1.080000px;}
.ls1b{letter-spacing:16.506720px;}
.ls1a{letter-spacing:46.026720px;}
.ls5{letter-spacing:61.866720px;}
.lsb{letter-spacing:201.204000px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.020000px;}
.ws11{word-spacing:-15.606000px;}
.wsf{word-spacing:-15.453600px;}
.ws4{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws12{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.479800px;}
.ws7{word-spacing:-14.274000px;}
.ws10{word-spacing:-9.711360px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._8{width:2.242560px;}
._1{width:3.278400px;}
._3{width:4.302720px;}
._9{width:5.502240px;}
._7{width:6.633360px;}
._e{width:7.829520px;}
._5{width:8.847840px;}
._4{width:10.039680px;}
._a{width:11.119680px;}
._d{width:12.365760px;}
._6{width:13.804560px;}
._10{width:15.999600px;}
._c{width:17.509680px;}
._b{width:18.704880px;}
._11{width:20.437920px;}
._12{width:21.573360px;}
._17{width:23.127120px;}
._13{width:24.202800px;}
._14{width:25.338240px;}
._19{width:28.326240px;}
._18{width:29.581200px;}
._1c{width:34.740000px;}
._1d{width:37.118640px;}
._f{width:201.204000px;}
._1b{width:427.370880px;}
._1a{width:631.624800px;}
._15{width:794.095680px;}
._16{width:795.404640px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y18d{bottom:-5.040000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:3.240000px;}
.ydb{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.ydd{bottom:3.780000px;}
.y4{bottom:21.240000px;}
.y45{bottom:60.480000px;}
.ya8{bottom:61.560000px;}
.yd9{bottom:66.780000px;}
.y15d{bottom:68.400000px;}
.y113{bottom:71.280000px;}
.y1bc{bottom:71.640000px;}
.y148{bottom:72.900000px;}
.y189{bottom:74.340000px;}
.y84{bottom:74.520000px;}
.y44{bottom:77.760000px;}
.ya7{bottom:78.840000px;}
.yd8{bottom:84.060000px;}
.y15c{bottom:85.680000px;}
.y1bb{bottom:88.920000px;}
.y147{bottom:89.640000px;}
.y188{bottom:91.620000px;}
.y83{bottom:91.800000px;}
.y43{bottom:95.040000px;}
.ya6{bottom:96.120000px;}
.yd7{bottom:101.016000px;}
.y15b{bottom:102.816000px;}
.y112{bottom:105.876000px;}
.y1ba{bottom:106.236000px;}
.y187{bottom:108.576000px;}
.y82{bottom:109.116000px;}
.y146{bottom:111.456000px;}
.y42{bottom:112.356000px;}
.ya5{bottom:113.436000px;}
.yd6{bottom:118.476000px;}
.y15a{bottom:120.096000px;}
.y111{bottom:123.156000px;}
.y1b9{bottom:123.516000px;}
.y81{bottom:126.396000px;}
.y41{bottom:129.636000px;}
.y186{bottom:130.176000px;}
.ya4{bottom:130.716000px;}
.y145{bottom:133.236000px;}
.yd5{bottom:135.756000px;}
.y159{bottom:137.016000px;}
.y110{bottom:140.076000px;}
.y1b8{bottom:140.796000px;}
.y80{bottom:143.496000px;}
.y40{bottom:146.916000px;}
.ya3{bottom:147.816000px;}
.y185{bottom:151.950000px;}
.yd4{bottom:152.670000px;}
.y144{bottom:155.010000px;}
.y10f{bottom:157.530000px;}
.y1b7{bottom:157.890000px;}
.y158{bottom:158.790000px;}
.y7f{bottom:160.770000px;}
.y3f{bottom:164.010000px;}
.yac{bottom:164.730000px;}
.ya2{bottom:165.090000px;}
.yd3{bottom:170.310000px;}
.y184{bottom:173.730000px;}
.y10e{bottom:174.810000px;}
.y1b6{bottom:175.170000px;}
.y143{bottom:176.790000px;}
.y7e{bottom:177.690000px;}
.y157{bottom:180.570000px;}
.y3e{bottom:181.290000px;}
.ya1{bottom:182.370000px;}
.yd2{bottom:187.230000px;}
.y10d{bottom:192.090000px;}
.y7d{bottom:195.330000px;}
.y183{bottom:195.510000px;}
.y3d{bottom:198.570000px;}
.ya0{bottom:199.650000px;}
.y156{bottom:202.170000px;}
.yd1{bottom:204.870000px;}
.y10c{bottom:209.370000px;}
.y7c{bottom:212.610000px;}
.y1b5{bottom:213.870000px;}
.y3c{bottom:215.850000px;}
.y9f{bottom:216.570000px;}
.yab{bottom:216.930000px;}
.y182{bottom:219.810000px;}
.y142{bottom:220.170000px;}
.yd0{bottom:221.970000px;}
.y10b{bottom:226.650000px;}
.y7b{bottom:229.890000px;}
.y3b{bottom:233.130000px;}
.y9e{bottom:234.030000px;}
.y1b4{bottom:235.650000px;}
.y181{bottom:237.090000px;}
.ycf{bottom:239.250000px;}
.y10a{bottom:243.930000px;}
.y141{bottom:244.650000px;}
.y7a{bottom:246.990000px;}
.y3a{bottom:249.870000px;}
.y9d{bottom:251.310000px;}
.y180{bottom:254.370000px;}
.yce{bottom:256.170000px;}
.y109{bottom:261.030000px;}
.y140{bottom:261.930000px;}
.y79{bottom:264.270000px;}
.y39{bottom:267.510000px;}
.y9c{bottom:268.590000px;}
.y17f{bottom:271.650000px;}
.ycd{bottom:273.810000px;}
.y1b3{bottom:277.230000px;}
.y108{bottom:278.310000px;}
.y13f{bottom:279.030000px;}
.y78{bottom:281.550000px;}
.y38{bottom:284.790000px;}
.y9b{bottom:285.870000px;}
.y17e{bottom:288.930000px;}
.ycc{bottom:291.090000px;}
.y1b2{bottom:294.510000px;}
.y107{bottom:295.590000px;}
.y13e{bottom:296.310000px;}
.y77{bottom:298.830000px;}
.y37{bottom:302.070000px;}
.y9a{bottom:303.150000px;}
.y17d{bottom:306.030000px;}
.ycb{bottom:308.370000px;}
.y1b1{bottom:311.430000px;}
.y106{bottom:312.870000px;}
.y13d{bottom:313.230000px;}
.y76{bottom:315.750000px;}
.y36{bottom:319.350000px;}
.y99{bottom:320.430000px;}
.y17c{bottom:322.950000px;}
.yca{bottom:325.470000px;}
.y1b0{bottom:328.890000px;}
.y155{bottom:329.790000px;}
.y105{bottom:330.150000px;}
.y13c{bottom:330.870000px;}
.y75{bottom:333.210000px;}
.y35{bottom:336.630000px;}
.y98{bottom:337.530000px;}
.y17b{bottom:340.590000px;}
.yc9{bottom:342.750000px;}
.y1af{bottom:346.170000px;}
.y104{bottom:347.430000px;}
.y13b{bottom:348.150000px;}
.y74{bottom:350.490000px;}
.y34{bottom:353.730000px;}
.yaa{bottom:354.450000px;}
.y97{bottom:354.810000px;}
.y17a{bottom:357.915000px;}
.yc8{bottom:360.075000px;}
.y1ae{bottom:363.495000px;}
.y103{bottom:364.575000px;}
.y13a{bottom:365.475000px;}
.y73{bottom:367.815000px;}
.y33{bottom:371.055000px;}
.y96{bottom:372.135000px;}
.y179{bottom:375.195000px;}
.yc7{bottom:377.355000px;}
.y1ad{bottom:380.775000px;}
.y102{bottom:381.855000px;}
.y139{bottom:382.575000px;}
.y72{bottom:385.095000px;}
.y32{bottom:388.335000px;}
.y95{bottom:389.415000px;}
.y178{bottom:392.475000px;}
.yc6{bottom:394.635000px;}
.y1ac{bottom:398.055000px;}
.y101{bottom:398.775000px;}
.y154{bottom:399.135000px;}
.y138{bottom:399.855000px;}
.y71{bottom:402.375000px;}
.y31{bottom:405.615000px;}
.y94{bottom:406.695000px;}
.y177{bottom:409.575000px;}
.yc5{bottom:411.735000px;}
.y1ab{bottom:414.795000px;}
.y153{bottom:416.415000px;}
.y137{bottom:417.135000px;}
.y70{bottom:419.655000px;}
.y100{bottom:420.555000px;}
.y30{bottom:422.895000px;}
.y93{bottom:423.975000px;}
.y176{bottom:426.495000px;}
.yc4{bottom:429.015000px;}
.y152{bottom:433.695000px;}
.y136{bottom:434.415000px;}
.y1aa{bottom:436.575000px;}
.y6f{bottom:436.755000px;}
.y2f{bottom:439.815000px;}
.y92{bottom:441.075000px;}
.yff{bottom:442.335000px;}
.y175{bottom:444.135000px;}
.yc3{bottom:446.295000px;}
.y151{bottom:450.975000px;}
.y135{bottom:451.695000px;}
.y6e{bottom:454.035000px;}
.y2e{bottom:457.275000px;}
.y91{bottom:458.355000px;}
.y174{bottom:461.415000px;}
.yc2{bottom:463.575000px;}
.yfe{bottom:463.935000px;}
.y150{bottom:468.075000px;}
.y134{bottom:468.795000px;}
.y6d{bottom:471.315000px;}
.y2d{bottom:474.555000px;}
.y90{bottom:475.635000px;}
.y173{bottom:478.695000px;}
.y1a9{bottom:480.135000px;}
.yc1{bottom:480.855000px;}
.y14f{bottom:484.995000px;}
.y133{bottom:486.075000px;}
.yfd{bottom:488.415000px;}
.y6c{bottom:488.595000px;}
.y2c{bottom:491.835000px;}
.y8f{bottom:492.915000px;}
.y172{bottom:495.795000px;}
.yc0{bottom:498.135000px;}
.y1a8{bottom:501.915000px;}
.y132{bottom:503.355000px;}
.yfc{bottom:505.695000px;}
.y6b{bottom:505.875000px;}
.y14e{bottom:506.775000px;}
.y2b{bottom:509.115000px;}
.y8e{bottom:510.195000px;}
.y171{bottom:513.075000px;}
.ybf{bottom:515.235000px;}
.y131{bottom:520.275000px;}
.yfb{bottom:522.795000px;}
.y6a{bottom:523.155000px;}
.y1a7{bottom:523.695000px;}
.y2a{bottom:526.035000px;}
.y8d{bottom:527.295000px;}
.y14d{bottom:528.555000px;}
.y170{bottom:530.355000px;}
.ybe{bottom:532.515000px;}
.y69{bottom:539.895000px;}
.yfa{bottom:540.075000px;}
.y130{bottom:542.055000px;}
.y29{bottom:543.495000px;}
.y8c{bottom:544.575000px;}
.y16f{bottom:547.635000px;}
.y1a6{bottom:547.995000px;}
.ybd{bottom:549.795000px;}
.y14c{bottom:550.335000px;}
.yf9{bottom:557.355000px;}
.y68{bottom:557.535000px;}
.y28{bottom:560.775000px;}
.y8b{bottom:561.495000px;}
.ya9{bottom:561.855000px;}
.y12f{bottom:563.835000px;}
.y16e{bottom:564.915000px;}
.y1a5{bottom:565.275000px;}
.ybc{bottom:567.075000px;}
.y14b{bottom:571.935000px;}
.yf8{bottom:574.275000px;}
.y67{bottom:575.895000px;}
.y27{bottom:578.055000px;}
.y8a{bottom:579.135000px;}
.y16d{bottom:582.195000px;}
.ybb{bottom:584.355000px;}
.y12e{bottom:585.435000px;}
.yf7{bottom:591.915000px;}
.y66{bottom:594.255000px;}
.y26{bottom:595.335000px;}
.y89{bottom:596.415000px;}
.y16c{bottom:599.295000px;}
.y1a4{bottom:599.655000px;}
.yba{bottom:601.635000px;}
.y12d{bottom:607.215000px;}
.yf6{bottom:609.195000px;}
.y25{bottom:612.615000px;}
.y1bf{bottom:613.335000px;}
.y88{bottom:613.695000px;}
.y16b{bottom:616.605000px;}
.y1a3{bottom:616.965000px;}
.yb9{bottom:618.765000px;}
.yf5{bottom:626.325000px;}
.y12c{bottom:629.025000px;}
.y24{bottom:629.925000px;}
.y1c2{bottom:630.465000px;}
.y65{bottom:630.825000px;}
.y16a{bottom:633.885000px;}
.y1a2{bottom:634.245000px;}
.yb8{bottom:636.045000px;}
.yf4{bottom:643.605000px;}
.y23{bottom:647.025000px;}
.y64{bottom:648.105000px;}
.y12b{bottom:650.805000px;}
.y169{bottom:651.165000px;}
.y1a1{bottom:651.525000px;}
.yb7{bottom:653.325000px;}
.yf3{bottom:660.885000px;}
.y22{bottom:664.305000px;}
.y63{bottom:665.385000px;}
.y168{bottom:668.445000px;}
.yb6{bottom:670.605000px;}
.y129{bottom:672.585000px;}
.yf2{bottom:678.165000px;}
.y21{bottom:681.585000px;}
.y87{bottom:682.305000px;}
.y62{bottom:682.665000px;}
.y167{bottom:685.185000px;}
.yb5{bottom:687.885000px;}
.y1a0{bottom:690.225000px;}
.yf1{bottom:695.445000px;}
.y128{bottom:696.885000px;}
.y20{bottom:698.865000px;}
.y61{bottom:699.945000px;}
.yb4{bottom:704.985000px;}
.y166{bottom:706.965000px;}
.y19f{bottom:711.825000px;}
.yf0{bottom:712.725000px;}
.y127{bottom:714.165000px;}
.y1f{bottom:716.145000px;}
.y14a{bottom:716.865000px;}
.y60{bottom:717.225000px;}
.yb3{bottom:722.265000px;}
.yef{bottom:729.825000px;}
.y165{bottom:731.445000px;}
.y1e{bottom:733.425000px;}
.y19e{bottom:733.605000px;}
.y5f{bottom:734.325000px;}
.yb2{bottom:739.545000px;}
.yee{bottom:747.105000px;}
.y126{bottom:748.725000px;}
.y1d{bottom:750.525000px;}
.y196{bottom:751.245000px;}
.y5e{bottom:751.605000px;}
.y19d{bottom:755.385000px;}
.yb1{bottom:756.825000px;}
.yed{bottom:764.385000px;}
.y125{bottom:765.825000px;}
.y1c{bottom:767.805000px;}
.y5d{bottom:768.885000px;}
.y195{bottom:773.025000px;}
.yb0{bottom:774.105000px;}
.y19c{bottom:777.165000px;}
.yec{bottom:781.665000px;}
.y164{bottom:782.745000px;}
.y124{bottom:783.105000px;}
.y1b{bottom:785.085000px;}
.y149{bottom:785.805000px;}
.y5c{bottom:786.165000px;}
.yaf{bottom:791.385000px;}
.y194{bottom:794.805000px;}
.yeb{bottom:798.945000px;}
.y123{bottom:800.025000px;}
.y163{bottom:800.385000px;}
.y1a{bottom:802.365000px;}
.y5b{bottom:803.445000px;}
.yae{bottom:808.125000px;}
.yea{bottom:816.045000px;}
.y193{bottom:816.585000px;}
.y122{bottom:817.665000px;}
.y19b{bottom:818.745000px;}
.y19{bottom:819.645000px;}
.y5a{bottom:820.365000px;}
.y86{bottom:820.725000px;}
.yad{bottom:822.165000px;}
.ye9{bottom:833.325000px;}
.y121{bottom:834.945000px;}
.y19a{bottom:836.025000px;}
.y18{bottom:836.925000px;}
.y1be{bottom:837.465000px;}
.y59{bottom:837.825000px;}
.y192{bottom:838.185000px;}
.ye8{bottom:850.605000px;}
.y120{bottom:852.045000px;}
.y199{bottom:853.305000px;}
.y17{bottom:854.025000px;}
.y58{bottom:855.105000px;}
.y191{bottom:859.965000px;}
.ye7{bottom:867.525000px;}
.y11f{bottom:869.325000px;}
.y198{bottom:870.225000px;}
.y16{bottom:871.305000px;}
.y1c1{bottom:872.025000px;}
.y57{bottom:872.385000px;}
.y190{bottom:881.790000px;}
.y197{bottom:884.130000px;}
.y11e{bottom:886.650000px;}
.y15{bottom:888.630000px;}
.ye6{bottom:889.350000px;}
.y56{bottom:889.710000px;}
.y18f{bottom:903.570000px;}
.y11d{bottom:903.930000px;}
.y14{bottom:905.910000px;}
.y55{bottom:906.990000px;}
.ye5{bottom:911.130000px;}
.y162{bottom:920.850000px;}
.y11c{bottom:921.210000px;}
.y13{bottom:922.830000px;}
.y54{bottom:924.090000px;}
.y18e{bottom:925.350000px;}
.ye4{bottom:932.730000px;}
.y11b{bottom:938.490000px;}
.y53{bottom:941.370000px;}
.y12{bottom:942.090000px;}
.y161{bottom:942.630000px;}
.y18c{bottom:947.130000px;}
.ye3{bottom:954.510000px;}
.y11a{bottom:955.590000px;}
.y52{bottom:958.650000px;}
.y11{bottom:959.910000px;}
.y160{bottom:964.230000px;}
.y18b{bottom:968.730000px;}
.y119{bottom:972.870000px;}
.y1c0{bottom:975.570000px;}
.y51{bottom:975.930000px;}
.ye2{bottom:976.290000px;}
.y10{bottom:977.190000px;}
.y15f{bottom:986.010000px;}
.y118{bottom:990.150000px;}
.y50{bottom:993.210000px;}
.yf{bottom:994.290000px;}
.ye1{bottom:998.070000px;}
.y117{bottom:1007.430000px;}
.y4f{bottom:1010.130000px;}
.y85{bottom:1010.490000px;}
.ye{bottom:1011.570000px;}
.ye0{bottom:1019.850000px;}
.y116{bottom:1024.350000px;}
.y1bd{bottom:1027.230000px;}
.y4e{bottom:1027.590000px;}
.yd{bottom:1028.850000px;}
.ydf{bottom:1041.450000px;}
.y18a{bottom:1044.510000px;}
.y4d{bottom:1044.870000px;}
.yc{bottom:1045.950000px;}
.y4c{bottom:1062.150000px;}
.yde{bottom:1063.230000px;}
.yb{bottom:1065.570000px;}
.y115{bottom:1067.730000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.ydc{bottom:1085.010000px;}
.y114{bottom:1089.510000px;}
.y4a{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.yda{bottom:1106.790000px;}
.y15e{bottom:1113.630000px;}
.y49{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y48{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h9{height:17.100000px;}
.h8{height:17.280000px;}
.ha{height:17.316000px;}
.h6{height:41.726953px;}
.h2{height:58.621992px;}
.h4{height:58.651172px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.hb{height:65.518594px;}
.hc{height:65.638594px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w27{width:44.100000px;}
.w28{width:55.620000px;}
.w2d{width:59.580000px;}
.w15{width:62.496000px;}
.w29{width:66.276000px;}
.w13{width:67.716000px;}
.w2e{width:70.920000px;}
.w12{width:74.520000px;}
.w2c{width:86.436000px;}
.w1d{width:93.096000px;}
.w33{width:101.556000px;}
.w26{width:106.776000px;}
.w21{width:109.116000px;}
.w10{width:113.436000px;}
.wb{width:122.076000px;}
.we{width:124.200000px;}
.w19{width:131.940000px;}
.wf{width:142.236000px;}
.w20{width:143.136000px;}
.w16{width:146.736000px;}
.w35{width:153.030000px;}
.w2a{width:164.370000px;}
.w25{width:165.450000px;}
.w14{width:166.320000px;}
.w1f{width:166.350000px;}
.w23{width:178.230000px;}
.w34{width:178.590000px;}
.w22{width:185.070000px;}
.w18{width:188.130000px;}
.w1e{width:191.370000px;}
.w2f{width:209.235000px;}
.w6{width:211.530000px;}
.w17{width:223.275000px;}
.w1c{width:226.290000px;}
.w1a{width:237.135000px;}
.w9{width:243.975000px;}
.w7{width:249.735000px;}
.w11{width:258.015000px;}
.wd{width:261.075000px;}
.w1b{width:270.075000px;}
.w8{width:321.915000px;}
.w31{width:332.895000px;}
.w24{width:337.935000px;}
.w2{width:345.315000px;}
.w32{width:347.295000px;}
.w2b{width:352.515000px;}
.w5{width:386.355000px;}
.w4{width:398.775000px;}
.w3{width:434.805000px;}
.w30{width:452.265000px;}
.wc{width:538.845000px;}
.wa{width:541.005000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:1.080000px;}
.x68{left:3.060000px;}
.x62{left:4.140000px;}
.x49{left:5.805000px;}
.x3e{left:7.200000px;}
.x75{left:9.000000px;}
.x74{left:10.800000px;}
.x4b{left:12.240000px;}
.x47{left:14.940000px;}
.x44{left:16.380000px;}
.x4f{left:18.045000px;}
.x55{left:19.080000px;}
.x4c{left:20.880000px;}
.x73{left:22.140000px;}
.x4d{left:24.120000px;}
.x43{left:25.740000px;}
.x39{left:27.180000px;}
.x37{left:28.440000px;}
.x60{left:29.520000px;}
.x59{left:31.500000px;}
.x26{left:32.985000px;}
.x50{left:34.380000px;}
.x36{left:36.900000px;}
.x2a{left:38.376000px;}
.x5e{left:41.940000px;}
.x3a{left:45.900000px;}
.x57{left:47.556000px;}
.x2b{left:48.960000px;}
.x33{left:50.940000px;}
.x1e{left:52.920000px;}
.x5{left:54.000000px;}
.x11{left:55.440000px;}
.x8b{left:57.420000px;}
.x5f{left:58.896000px;}
.x78{left:60.876000px;}
.x79{left:63.390000px;}
.x72{left:65.730000px;}
.x24{left:67.356000px;}
.x7b{left:68.970000px;}
.x4e{left:70.020000px;}
.x51{left:71.316000px;}
.x8e{left:72.360000px;}
.x29{left:73.800000px;}
.x67{left:75.780000px;}
.x6c{left:77.610000px;}
.x66{left:79.200000px;}
.x30{left:81.756000px;}
.x52{left:83.736000px;}
.xd{left:86.040000px;}
.x77{left:88.956000px;}
.x2f{left:91.476000px;}
.x84{left:92.916000px;}
.x2c{left:94.896000px;}
.x28{left:97.020000px;}
.x19{left:98.130000px;}
.x3c{left:100.650000px;}
.x1f{left:103.890000px;}
.x58{left:105.345000px;}
.x31{left:106.590000px;}
.x8f{left:108.036000px;}
.x8d{left:110.730000px;}
.x35{left:111.960000px;}
.x23{left:114.330000px;}
.x14{left:121.530000px;}
.x76{left:124.950000px;}
.x7c{left:132.690000px;}
.x18{left:136.470000px;}
.x6a{left:138.450000px;}
.x21{left:139.530000px;}
.x71{left:142.230000px;}
.x7f{left:144.210000px;}
.x12{left:145.650000px;}
.x17{left:146.910000px;}
.x16{left:148.890000px;}
.x1a{left:152.310000px;}
.x88{left:153.405000px;}
.x1d{left:155.550000px;}
.x1c{left:158.970000px;}
.x7a{left:161.670000px;}
.xc{left:172.470000px;}
.x2e{left:176.430000px;}
.x20{left:181.305000px;}
.x22{left:185.625000px;}
.x6{left:188.130000px;}
.xb{left:191.730000px;}
.x5a{left:195.330000px;}
.x8a{left:200.190000px;}
.x15{left:204.330000px;}
.x1b{left:208.110000px;}
.x87{left:212.070000px;}
.x89{left:214.410000px;}
.xa{left:217.830000px;}
.x61{left:219.990000px;}
.x32{left:239.970000px;}
.x38{left:252.570000px;}
.x8{left:255.450000px;}
.x3{left:256.710000px;}
.x69{left:264.270000px;}
.x25{left:266.610000px;}
.x2{left:268.770000px;}
.x53{left:278.535000px;}
.xf{left:293.115000px;}
.x2d{left:299.235000px;}
.x34{left:301.575000px;}
.x3b{left:303.735000px;}
.x1{left:309.315000px;}
.x3d{left:313.815000px;}
.x5b{left:325.155000px;}
.x7d{left:329.655000px;}
.x7{left:347.295000px;}
.x85{left:362.775000px;}
.x63{left:365.295000px;}
.x45{left:389.955000px;}
.x6b{left:393.195000px;}
.x13{left:402.915000px;}
.x80{left:407.775000px;}
.x3f{left:440.175000px;}
.xe{left:446.475000px;}
.x9{left:454.965000px;}
.x46{left:460.005000px;}
.x54{left:469.005000px;}
.x64{left:476.565000px;}
.x81{left:496.365000px;}
.x86{left:507.345000px;}
.x27{left:518.505000px;}
.x5c{left:553.785000px;}
.x82{left:558.105000px;}
.x6d{left:560.805000px;}
.x40{left:584.565000px;}
.x56{left:603.285000px;}
.x48{left:628.665000px;}
.x83{left:631.185000px;}
.x5d{left:649.050000px;}
.x65{left:663.810000px;}
.x6e{left:669.750000px;}
.x8c{left:687.390000px;}
.x4a{left:693.510000px;}
.x6f{left:716.190000px;}
.x41{left:729.150000px;}
.x10{left:752.550000px;}
.x70{left:773.970000px;}
.x7e{left:776.130000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.568000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls9{letter-spacing:-1.600000pt;}
.ls13{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls1d{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.165760pt;}
.ls12{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.456533pt;}
.lsc{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.736000pt;}
.ls18{letter-spacing:0.871040pt;}
.ls2{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:40.912640pt;}
.ls5{letter-spacing:54.992640pt;}
.lsb{letter-spacing:178.848000pt;}
.wsd{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.240000pt;}
.ws11{word-spacing:-13.872000pt;}
.wsf{word-spacing:-13.736533pt;}
.ws4{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.870933pt;}
.ws7{word-spacing:-12.688000pt;}
.ws10{word-spacing:-8.632320pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._8{width:1.993387pt;}
._1{width:2.914133pt;}
._3{width:3.824640pt;}
._9{width:4.890880pt;}
._7{width:5.896320pt;}
._e{width:6.959573pt;}
._5{width:7.864747pt;}
._4{width:8.924160pt;}
._a{width:9.884160pt;}
._d{width:10.991787pt;}
._6{width:12.270720pt;}
._10{width:14.221867pt;}
._c{width:15.564160pt;}
._b{width:16.626560pt;}
._11{width:18.167040pt;}
._12{width:19.176320pt;}
._17{width:20.557440pt;}
._13{width:21.513600pt;}
._14{width:22.522880pt;}
._19{width:25.178880pt;}
._18{width:26.294400pt;}
._1c{width:30.880000pt;}
._1d{width:32.994347pt;}
._f{width:178.848000pt;}
._1b{width:379.885227pt;}
._1a{width:561.444267pt;}
._15{width:705.862827pt;}
._16{width:707.026347pt;}
.fs2{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y18d{bottom:-4.480000pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:2.880000pt;}
.ydb{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.ydd{bottom:3.360000pt;}
.y4{bottom:18.880000pt;}
.y45{bottom:53.760000pt;}
.ya8{bottom:54.720000pt;}
.yd9{bottom:59.360000pt;}
.y15d{bottom:60.800000pt;}
.y113{bottom:63.360000pt;}
.y1bc{bottom:63.680000pt;}
.y148{bottom:64.800000pt;}
.y189{bottom:66.080000pt;}
.y84{bottom:66.240000pt;}
.y44{bottom:69.120000pt;}
.ya7{bottom:70.080000pt;}
.yd8{bottom:74.720000pt;}
.y15c{bottom:76.160000pt;}
.y1bb{bottom:79.040000pt;}
.y147{bottom:79.680000pt;}
.y188{bottom:81.440000pt;}
.y83{bottom:81.600000pt;}
.y43{bottom:84.480000pt;}
.ya6{bottom:85.440000pt;}
.yd7{bottom:89.792000pt;}
.y15b{bottom:91.392000pt;}
.y112{bottom:94.112000pt;}
.y1ba{bottom:94.432000pt;}
.y187{bottom:96.512000pt;}
.y82{bottom:96.992000pt;}
.y146{bottom:99.072000pt;}
.y42{bottom:99.872000pt;}
.ya5{bottom:100.832000pt;}
.yd6{bottom:105.312000pt;}
.y15a{bottom:106.752000pt;}
.y111{bottom:109.472000pt;}
.y1b9{bottom:109.792000pt;}
.y81{bottom:112.352000pt;}
.y41{bottom:115.232000pt;}
.y186{bottom:115.712000pt;}
.ya4{bottom:116.192000pt;}
.y145{bottom:118.432000pt;}
.yd5{bottom:120.672000pt;}
.y159{bottom:121.792000pt;}
.y110{bottom:124.512000pt;}
.y1b8{bottom:125.152000pt;}
.y80{bottom:127.552000pt;}
.y40{bottom:130.592000pt;}
.ya3{bottom:131.392000pt;}
.y185{bottom:135.066667pt;}
.yd4{bottom:135.706667pt;}
.y144{bottom:137.786667pt;}
.y10f{bottom:140.026667pt;}
.y1b7{bottom:140.346667pt;}
.y158{bottom:141.146667pt;}
.y7f{bottom:142.906667pt;}
.y3f{bottom:145.786667pt;}
.yac{bottom:146.426667pt;}
.ya2{bottom:146.746667pt;}
.yd3{bottom:151.386667pt;}
.y184{bottom:154.426667pt;}
.y10e{bottom:155.386667pt;}
.y1b6{bottom:155.706667pt;}
.y143{bottom:157.146667pt;}
.y7e{bottom:157.946667pt;}
.y157{bottom:160.506667pt;}
.y3e{bottom:161.146667pt;}
.ya1{bottom:162.106667pt;}
.yd2{bottom:166.426667pt;}
.y10d{bottom:170.746667pt;}
.y7d{bottom:173.626667pt;}
.y183{bottom:173.786667pt;}
.y3d{bottom:176.506667pt;}
.ya0{bottom:177.466667pt;}
.y156{bottom:179.706667pt;}
.yd1{bottom:182.106667pt;}
.y10c{bottom:186.106667pt;}
.y7c{bottom:188.986667pt;}
.y1b5{bottom:190.106667pt;}
.y3c{bottom:191.866667pt;}
.y9f{bottom:192.506667pt;}
.yab{bottom:192.826667pt;}
.y182{bottom:195.386667pt;}
.y142{bottom:195.706667pt;}
.yd0{bottom:197.306667pt;}
.y10b{bottom:201.466667pt;}
.y7b{bottom:204.346667pt;}
.y3b{bottom:207.226667pt;}
.y9e{bottom:208.026667pt;}
.y1b4{bottom:209.466667pt;}
.y181{bottom:210.746667pt;}
.ycf{bottom:212.666667pt;}
.y10a{bottom:216.826667pt;}
.y141{bottom:217.466667pt;}
.y7a{bottom:219.546667pt;}
.y3a{bottom:222.106667pt;}
.y9d{bottom:223.386667pt;}
.y180{bottom:226.106667pt;}
.yce{bottom:227.706667pt;}
.y109{bottom:232.026667pt;}
.y140{bottom:232.826667pt;}
.y79{bottom:234.906667pt;}
.y39{bottom:237.786667pt;}
.y9c{bottom:238.746667pt;}
.y17f{bottom:241.466667pt;}
.ycd{bottom:243.386667pt;}
.y1b3{bottom:246.426667pt;}
.y108{bottom:247.386667pt;}
.y13f{bottom:248.026667pt;}
.y78{bottom:250.266667pt;}
.y38{bottom:253.146667pt;}
.y9b{bottom:254.106667pt;}
.y17e{bottom:256.826667pt;}
.ycc{bottom:258.746667pt;}
.y1b2{bottom:261.786667pt;}
.y107{bottom:262.746667pt;}
.y13e{bottom:263.386667pt;}
.y77{bottom:265.626667pt;}
.y37{bottom:268.506667pt;}
.y9a{bottom:269.466667pt;}
.y17d{bottom:272.026667pt;}
.ycb{bottom:274.106667pt;}
.y1b1{bottom:276.826667pt;}
.y106{bottom:278.106667pt;}
.y13d{bottom:278.426667pt;}
.y76{bottom:280.666667pt;}
.y36{bottom:283.866667pt;}
.y99{bottom:284.826667pt;}
.y17c{bottom:287.066667pt;}
.yca{bottom:289.306667pt;}
.y1b0{bottom:292.346667pt;}
.y155{bottom:293.146667pt;}
.y105{bottom:293.466667pt;}
.y13c{bottom:294.106667pt;}
.y75{bottom:296.186667pt;}
.y35{bottom:299.226667pt;}
.y98{bottom:300.026667pt;}
.y17b{bottom:302.746667pt;}
.yc9{bottom:304.666667pt;}
.y1af{bottom:307.706667pt;}
.y104{bottom:308.826667pt;}
.y13b{bottom:309.466667pt;}
.y74{bottom:311.546667pt;}
.y34{bottom:314.426667pt;}
.yaa{bottom:315.066667pt;}
.y97{bottom:315.386667pt;}
.y17a{bottom:318.146667pt;}
.yc8{bottom:320.066667pt;}
.y1ae{bottom:323.106667pt;}
.y103{bottom:324.066667pt;}
.y13a{bottom:324.866667pt;}
.y73{bottom:326.946667pt;}
.y33{bottom:329.826667pt;}
.y96{bottom:330.786667pt;}
.y179{bottom:333.506667pt;}
.yc7{bottom:335.426667pt;}
.y1ad{bottom:338.466667pt;}
.y102{bottom:339.426667pt;}
.y139{bottom:340.066667pt;}
.y72{bottom:342.306667pt;}
.y32{bottom:345.186667pt;}
.y95{bottom:346.146667pt;}
.y178{bottom:348.866667pt;}
.yc6{bottom:350.786667pt;}
.y1ac{bottom:353.826667pt;}
.y101{bottom:354.466667pt;}
.y154{bottom:354.786667pt;}
.y138{bottom:355.426667pt;}
.y71{bottom:357.666667pt;}
.y31{bottom:360.546667pt;}
.y94{bottom:361.506667pt;}
.y177{bottom:364.066667pt;}
.yc5{bottom:365.986667pt;}
.y1ab{bottom:368.706667pt;}
.y153{bottom:370.146667pt;}
.y137{bottom:370.786667pt;}
.y70{bottom:373.026667pt;}
.y100{bottom:373.826667pt;}
.y30{bottom:375.906667pt;}
.y93{bottom:376.866667pt;}
.y176{bottom:379.106667pt;}
.yc4{bottom:381.346667pt;}
.y152{bottom:385.506667pt;}
.y136{bottom:386.146667pt;}
.y1aa{bottom:388.066667pt;}
.y6f{bottom:388.226667pt;}
.y2f{bottom:390.946667pt;}
.y92{bottom:392.066667pt;}
.yff{bottom:393.186667pt;}
.y175{bottom:394.786667pt;}
.yc3{bottom:396.706667pt;}
.y151{bottom:400.866667pt;}
.y135{bottom:401.506667pt;}
.y6e{bottom:403.586667pt;}
.y2e{bottom:406.466667pt;}
.y91{bottom:407.426667pt;}
.y174{bottom:410.146667pt;}
.yc2{bottom:412.066667pt;}
.yfe{bottom:412.386667pt;}
.y150{bottom:416.066667pt;}
.y134{bottom:416.706667pt;}
.y6d{bottom:418.946667pt;}
.y2d{bottom:421.826667pt;}
.y90{bottom:422.786667pt;}
.y173{bottom:425.506667pt;}
.y1a9{bottom:426.786667pt;}
.yc1{bottom:427.426667pt;}
.y14f{bottom:431.106667pt;}
.y133{bottom:432.066667pt;}
.yfd{bottom:434.146667pt;}
.y6c{bottom:434.306667pt;}
.y2c{bottom:437.186667pt;}
.y8f{bottom:438.146667pt;}
.y172{bottom:440.706667pt;}
.yc0{bottom:442.786667pt;}
.y1a8{bottom:446.146667pt;}
.y132{bottom:447.426667pt;}
.yfc{bottom:449.506667pt;}
.y6b{bottom:449.666667pt;}
.y14e{bottom:450.466667pt;}
.y2b{bottom:452.546667pt;}
.y8e{bottom:453.506667pt;}
.y171{bottom:456.066667pt;}
.ybf{bottom:457.986667pt;}
.y131{bottom:462.466667pt;}
.yfb{bottom:464.706667pt;}
.y6a{bottom:465.026667pt;}
.y1a7{bottom:465.506667pt;}
.y2a{bottom:467.586667pt;}
.y8d{bottom:468.706667pt;}
.y14d{bottom:469.826667pt;}
.y170{bottom:471.426667pt;}
.ybe{bottom:473.346667pt;}
.y69{bottom:479.906667pt;}
.yfa{bottom:480.066667pt;}
.y130{bottom:481.826667pt;}
.y29{bottom:483.106667pt;}
.y8c{bottom:484.066667pt;}
.y16f{bottom:486.786667pt;}
.y1a6{bottom:487.106667pt;}
.ybd{bottom:488.706667pt;}
.y14c{bottom:489.186667pt;}
.yf9{bottom:495.426667pt;}
.y68{bottom:495.586667pt;}
.y28{bottom:498.466667pt;}
.y8b{bottom:499.106667pt;}
.ya9{bottom:499.426667pt;}
.y12f{bottom:501.186667pt;}
.y16e{bottom:502.146667pt;}
.y1a5{bottom:502.466667pt;}
.ybc{bottom:504.066667pt;}
.y14b{bottom:508.386667pt;}
.yf8{bottom:510.466667pt;}
.y67{bottom:511.906667pt;}
.y27{bottom:513.826667pt;}
.y8a{bottom:514.786667pt;}
.y16d{bottom:517.506667pt;}
.ybb{bottom:519.426667pt;}
.y12e{bottom:520.386667pt;}
.yf7{bottom:526.146667pt;}
.y66{bottom:528.226667pt;}
.y26{bottom:529.186667pt;}
.y89{bottom:530.146667pt;}
.y16c{bottom:532.706667pt;}
.y1a4{bottom:533.026667pt;}
.yba{bottom:534.786667pt;}
.y12d{bottom:539.746667pt;}
.yf6{bottom:541.506667pt;}
.y25{bottom:544.546667pt;}
.y1bf{bottom:545.186667pt;}
.y88{bottom:545.506667pt;}
.y16b{bottom:548.093333pt;}
.y1a3{bottom:548.413333pt;}
.yb9{bottom:550.013333pt;}
.yf5{bottom:556.733333pt;}
.y12c{bottom:559.133333pt;}
.y24{bottom:559.933333pt;}
.y1c2{bottom:560.413333pt;}
.y65{bottom:560.733333pt;}
.y16a{bottom:563.453333pt;}
.y1a2{bottom:563.773333pt;}
.yb8{bottom:565.373333pt;}
.yf4{bottom:572.093333pt;}
.y23{bottom:575.133333pt;}
.y64{bottom:576.093333pt;}
.y12b{bottom:578.493333pt;}
.y169{bottom:578.813333pt;}
.y1a1{bottom:579.133333pt;}
.yb7{bottom:580.733333pt;}
.yf3{bottom:587.453333pt;}
.y22{bottom:590.493333pt;}
.y63{bottom:591.453333pt;}
.y168{bottom:594.173333pt;}
.yb6{bottom:596.093333pt;}
.y129{bottom:597.853333pt;}
.yf2{bottom:602.813333pt;}
.y21{bottom:605.853333pt;}
.y87{bottom:606.493333pt;}
.y62{bottom:606.813333pt;}
.y167{bottom:609.053333pt;}
.yb5{bottom:611.453333pt;}
.y1a0{bottom:613.533333pt;}
.yf1{bottom:618.173333pt;}
.y128{bottom:619.453333pt;}
.y20{bottom:621.213333pt;}
.y61{bottom:622.173333pt;}
.yb4{bottom:626.653333pt;}
.y166{bottom:628.413333pt;}
.y19f{bottom:632.733333pt;}
.yf0{bottom:633.533333pt;}
.y127{bottom:634.813333pt;}
.y1f{bottom:636.573333pt;}
.y14a{bottom:637.213333pt;}
.y60{bottom:637.533333pt;}
.yb3{bottom:642.013333pt;}
.yef{bottom:648.733333pt;}
.y165{bottom:650.173333pt;}
.y1e{bottom:651.933333pt;}
.y19e{bottom:652.093333pt;}
.y5f{bottom:652.733333pt;}
.yb2{bottom:657.373333pt;}
.yee{bottom:664.093333pt;}
.y126{bottom:665.533333pt;}
.y1d{bottom:667.133333pt;}
.y196{bottom:667.773333pt;}
.y5e{bottom:668.093333pt;}
.y19d{bottom:671.453333pt;}
.yb1{bottom:672.733333pt;}
.yed{bottom:679.453333pt;}
.y125{bottom:680.733333pt;}
.y1c{bottom:682.493333pt;}
.y5d{bottom:683.453333pt;}
.y195{bottom:687.133333pt;}
.yb0{bottom:688.093333pt;}
.y19c{bottom:690.813333pt;}
.yec{bottom:694.813333pt;}
.y164{bottom:695.773333pt;}
.y124{bottom:696.093333pt;}
.y1b{bottom:697.853333pt;}
.y149{bottom:698.493333pt;}
.y5c{bottom:698.813333pt;}
.yaf{bottom:703.453333pt;}
.y194{bottom:706.493333pt;}
.yeb{bottom:710.173333pt;}
.y123{bottom:711.133333pt;}
.y163{bottom:711.453333pt;}
.y1a{bottom:713.213333pt;}
.y5b{bottom:714.173333pt;}
.yae{bottom:718.333333pt;}
.yea{bottom:725.373333pt;}
.y193{bottom:725.853333pt;}
.y122{bottom:726.813333pt;}
.y19b{bottom:727.773333pt;}
.y19{bottom:728.573333pt;}
.y5a{bottom:729.213333pt;}
.y86{bottom:729.533333pt;}
.yad{bottom:730.813333pt;}
.ye9{bottom:740.733333pt;}
.y121{bottom:742.173333pt;}
.y19a{bottom:743.133333pt;}
.y18{bottom:743.933333pt;}
.y1be{bottom:744.413333pt;}
.y59{bottom:744.733333pt;}
.y192{bottom:745.053333pt;}
.ye8{bottom:756.093333pt;}
.y120{bottom:757.373333pt;}
.y199{bottom:758.493333pt;}
.y17{bottom:759.133333pt;}
.y58{bottom:760.093333pt;}
.y191{bottom:764.413333pt;}
.ye7{bottom:771.133333pt;}
.y11f{bottom:772.733333pt;}
.y198{bottom:773.533333pt;}
.y16{bottom:774.493333pt;}
.y1c1{bottom:775.133333pt;}
.y57{bottom:775.453333pt;}
.y190{bottom:783.813333pt;}
.y197{bottom:785.893333pt;}
.y11e{bottom:788.133333pt;}
.y15{bottom:789.893333pt;}
.ye6{bottom:790.533333pt;}
.y56{bottom:790.853333pt;}
.y18f{bottom:803.173333pt;}
.y11d{bottom:803.493333pt;}
.y14{bottom:805.253333pt;}
.y55{bottom:806.213333pt;}
.ye5{bottom:809.893333pt;}
.y162{bottom:818.533333pt;}
.y11c{bottom:818.853333pt;}
.y13{bottom:820.293333pt;}
.y54{bottom:821.413333pt;}
.y18e{bottom:822.533333pt;}
.ye4{bottom:829.093333pt;}
.y11b{bottom:834.213333pt;}
.y53{bottom:836.773333pt;}
.y12{bottom:837.413333pt;}
.y161{bottom:837.893333pt;}
.y18c{bottom:841.893333pt;}
.ye3{bottom:848.453333pt;}
.y11a{bottom:849.413333pt;}
.y52{bottom:852.133333pt;}
.y11{bottom:853.253333pt;}
.y160{bottom:857.093333pt;}
.y18b{bottom:861.093333pt;}
.y119{bottom:864.773333pt;}
.y1c0{bottom:867.173333pt;}
.y51{bottom:867.493333pt;}
.ye2{bottom:867.813333pt;}
.y10{bottom:868.613333pt;}
.y15f{bottom:876.453333pt;}
.y118{bottom:880.133333pt;}
.y50{bottom:882.853333pt;}
.yf{bottom:883.813333pt;}
.ye1{bottom:887.173333pt;}
.y117{bottom:895.493333pt;}
.y4f{bottom:897.893333pt;}
.y85{bottom:898.213333pt;}
.ye{bottom:899.173333pt;}
.ye0{bottom:906.533333pt;}
.y116{bottom:910.533333pt;}
.y1bd{bottom:913.093333pt;}
.y4e{bottom:913.413333pt;}
.yd{bottom:914.533333pt;}
.ydf{bottom:925.733333pt;}
.y18a{bottom:928.453333pt;}
.y4d{bottom:928.773333pt;}
.yc{bottom:929.733333pt;}
.y4c{bottom:944.133333pt;}
.yde{bottom:945.093333pt;}
.yb{bottom:947.173333pt;}
.y115{bottom:949.093333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.ydc{bottom:964.453333pt;}
.y114{bottom:968.453333pt;}
.y4a{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.yda{bottom:983.813333pt;}
.y15e{bottom:989.893333pt;}
.y49{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y48{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h9{height:15.200000pt;}
.h8{height:15.360000pt;}
.ha{height:15.392000pt;}
.h6{height:37.090625pt;}
.h2{height:52.108438pt;}
.h4{height:52.134375pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.hb{height:58.238750pt;}
.hc{height:58.345417pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w27{width:39.200000pt;}
.w28{width:49.440000pt;}
.w2d{width:52.960000pt;}
.w15{width:55.552000pt;}
.w29{width:58.912000pt;}
.w13{width:60.192000pt;}
.w2e{width:63.040000pt;}
.w12{width:66.240000pt;}
.w2c{width:76.832000pt;}
.w1d{width:82.752000pt;}
.w33{width:90.272000pt;}
.w26{width:94.912000pt;}
.w21{width:96.992000pt;}
.w10{width:100.832000pt;}
.wb{width:108.512000pt;}
.we{width:110.400000pt;}
.w19{width:117.280000pt;}
.wf{width:126.432000pt;}
.w20{width:127.232000pt;}
.w16{width:130.432000pt;}
.w35{width:136.026667pt;}
.w2a{width:146.106667pt;}
.w25{width:147.066667pt;}
.w14{width:147.840000pt;}
.w1f{width:147.866667pt;}
.w23{width:158.426667pt;}
.w34{width:158.746667pt;}
.w22{width:164.506667pt;}
.w18{width:167.226667pt;}
.w1e{width:170.106667pt;}
.w2f{width:185.986667pt;}
.w6{width:188.026667pt;}
.w17{width:198.466667pt;}
.w1c{width:201.146667pt;}
.w1a{width:210.786667pt;}
.w9{width:216.866667pt;}
.w7{width:221.986667pt;}
.w11{width:229.346667pt;}
.wd{width:232.066667pt;}
.w1b{width:240.066667pt;}
.w8{width:286.146667pt;}
.w31{width:295.906667pt;}
.w24{width:300.386667pt;}
.w2{width:306.946667pt;}
.w32{width:308.706667pt;}
.w2b{width:313.346667pt;}
.w5{width:343.426667pt;}
.w4{width:354.466667pt;}
.w3{width:386.493333pt;}
.w30{width:402.013333pt;}
.wc{width:478.973333pt;}
.wa{width:480.893333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:0.960000pt;}
.x68{left:2.720000pt;}
.x62{left:3.680000pt;}
.x49{left:5.160000pt;}
.x3e{left:6.400000pt;}
.x75{left:8.000000pt;}
.x74{left:9.600000pt;}
.x4b{left:10.880000pt;}
.x47{left:13.280000pt;}
.x44{left:14.560000pt;}
.x4f{left:16.040000pt;}
.x55{left:16.960000pt;}
.x4c{left:18.560000pt;}
.x73{left:19.680000pt;}
.x4d{left:21.440000pt;}
.x43{left:22.880000pt;}
.x39{left:24.160000pt;}
.x37{left:25.280000pt;}
.x60{left:26.240000pt;}
.x59{left:28.000000pt;}
.x26{left:29.320000pt;}
.x50{left:30.560000pt;}
.x36{left:32.800000pt;}
.x2a{left:34.112000pt;}
.x5e{left:37.280000pt;}
.x3a{left:40.800000pt;}
.x57{left:42.272000pt;}
.x2b{left:43.520000pt;}
.x33{left:45.280000pt;}
.x1e{left:47.040000pt;}
.x5{left:48.000000pt;}
.x11{left:49.280000pt;}
.x8b{left:51.040000pt;}
.x5f{left:52.352000pt;}
.x78{left:54.112000pt;}
.x79{left:56.346667pt;}
.x72{left:58.426667pt;}
.x24{left:59.872000pt;}
.x7b{left:61.306667pt;}
.x4e{left:62.240000pt;}
.x51{left:63.392000pt;}
.x8e{left:64.320000pt;}
.x29{left:65.600000pt;}
.x67{left:67.360000pt;}
.x6c{left:68.986667pt;}
.x66{left:70.400000pt;}
.x30{left:72.672000pt;}
.x52{left:74.432000pt;}
.xd{left:76.480000pt;}
.x77{left:79.072000pt;}
.x2f{left:81.312000pt;}
.x84{left:82.592000pt;}
.x2c{left:84.352000pt;}
.x28{left:86.240000pt;}
.x19{left:87.226667pt;}
.x3c{left:89.466667pt;}
.x1f{left:92.346667pt;}
.x58{left:93.640000pt;}
.x31{left:94.746667pt;}
.x8f{left:96.032000pt;}
.x8d{left:98.426667pt;}
.x35{left:99.520000pt;}
.x23{left:101.626667pt;}
.x14{left:108.026667pt;}
.x76{left:111.066667pt;}
.x7c{left:117.946667pt;}
.x18{left:121.306667pt;}
.x6a{left:123.066667pt;}
.x21{left:124.026667pt;}
.x71{left:126.426667pt;}
.x7f{left:128.186667pt;}
.x12{left:129.466667pt;}
.x17{left:130.586667pt;}
.x16{left:132.346667pt;}
.x1a{left:135.386667pt;}
.x88{left:136.360000pt;}
.x1d{left:138.266667pt;}
.x1c{left:141.306667pt;}
.x7a{left:143.706667pt;}
.xc{left:153.306667pt;}
.x2e{left:156.826667pt;}
.x20{left:161.160000pt;}
.x22{left:165.000000pt;}
.x6{left:167.226667pt;}
.xb{left:170.426667pt;}
.x5a{left:173.626667pt;}
.x8a{left:177.946667pt;}
.x15{left:181.626667pt;}
.x1b{left:184.986667pt;}
.x87{left:188.506667pt;}
.x89{left:190.586667pt;}
.xa{left:193.626667pt;}
.x61{left:195.546667pt;}
.x32{left:213.306667pt;}
.x38{left:224.506667pt;}
.x8{left:227.066667pt;}
.x3{left:228.186667pt;}
.x69{left:234.906667pt;}
.x25{left:236.986667pt;}
.x2{left:238.906667pt;}
.x53{left:247.586667pt;}
.xf{left:260.546667pt;}
.x2d{left:265.986667pt;}
.x34{left:268.066667pt;}
.x3b{left:269.986667pt;}
.x1{left:274.946667pt;}
.x3d{left:278.946667pt;}
.x5b{left:289.026667pt;}
.x7d{left:293.026667pt;}
.x7{left:308.706667pt;}
.x85{left:322.466667pt;}
.x63{left:324.706667pt;}
.x45{left:346.626667pt;}
.x6b{left:349.506667pt;}
.x13{left:358.146667pt;}
.x80{left:362.466667pt;}
.x3f{left:391.266667pt;}
.xe{left:396.866667pt;}
.x9{left:404.413333pt;}
.x46{left:408.893333pt;}
.x54{left:416.893333pt;}
.x64{left:423.613333pt;}
.x81{left:441.213333pt;}
.x86{left:450.973333pt;}
.x27{left:460.893333pt;}
.x5c{left:492.253333pt;}
.x82{left:496.093333pt;}
.x6d{left:498.493333pt;}
.x40{left:519.613333pt;}
.x56{left:536.253333pt;}
.x48{left:558.813333pt;}
.x83{left:561.053333pt;}
.x5d{left:576.933333pt;}
.x65{left:590.053333pt;}
.x6e{left:595.333333pt;}
.x8c{left:611.013333pt;}
.x4a{left:616.453333pt;}
.x6f{left:636.613333pt;}
.x41{left:648.133333pt;}
.x10{left:668.933333pt;}
.x70{left:687.973333pt;}
.x7e{left:689.893333pt;}
.x4{left:721.893333pt;}
}




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