
    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_e09ee303223389ddcb569beb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_7070a59e6003d93ec26b7d05.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_761aee0f733506596e4b526d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_670399195061d39dcc1b30d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_42219a1cd02574fbb5372272.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_d9d028b9203e9e9478d70ccd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a8925f33284823f7958423cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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;}
.m7{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.977000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.978000px;}
.v1{vertical-align:25.973400px;}
.v3{vertical-align:39.632400px;}
.ls6{letter-spacing:-2.553000px;}
.ls3{letter-spacing:-2.442000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.lsc{letter-spacing:0.010800px;}
.ls9{letter-spacing:0.011388px;}
.lsb{letter-spacing:0.011400px;}
.lsa{letter-spacing:0.012000px;}
.lsd{letter-spacing:0.986400px;}
.ls4{letter-spacing:6.885294px;}
.ls8{letter-spacing:6.900000px;}
.ls5{letter-spacing:12.217573px;}
.ls7{letter-spacing:33.189000px;}
.ls2{letter-spacing:55.033800px;}
.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;}
}
.ws21{word-spacing:-33.189000px;}
.ws1{word-spacing:-17.250000px;}
.ws3{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws22{word-spacing:-6.900000px;}
.ws1f{word-spacing:-0.069000px;}
.ws1d{word-spacing:-0.066000px;}
.ws23{word-spacing:-0.040227px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:2.553000px;}
.wsf{word-spacing:26.551200px;}
.wsa{word-spacing:26.551800px;}
.wsc{word-spacing:33.877200px;}
.ws4{word-spacing:42.539400px;}
.wse{word-spacing:57.814200px;}
.ws1a{word-spacing:59.038800px;}
.ws7{word-spacing:75.539400px;}
.ws18{word-spacing:76.548000px;}
.ws10{word-spacing:76.548600px;}
.ws6{word-spacing:76.549200px;}
.ws5{word-spacing:87.407400px;}
.ws16{word-spacing:102.978000px;}
.ws17{word-spacing:122.800200px;}
.ws11{word-spacing:226.033200px;}
.wsd{word-spacing:246.174000px;}
.ws19{word-spacing:265.069800px;}
.wsb{word-spacing:288.423600px;}
.ws1b{word-spacing:337.345200px;}
.ws13{word-spacing:337.345800px;}
.ws9{word-spacing:418.030800px;}
.ws8{word-spacing:513.268800px;}
.ws15{word-spacing:592.793400px;}
.ws12{word-spacing:663.316800px;}
.ws14{word-spacing:689.056800px;}
.ws1c{word-spacing:743.044800px;}
.ws1e{word-spacing:754.000800px;}
._6a{margin-left:-32.530200px;}
._1d{margin-left:-18.208200px;}
._1e{margin-left:-16.985100px;}
._c{margin-left:-15.912000px;}
._67{margin-left:-14.793600px;}
._4{margin-left:-10.474800px;}
._13{margin-left:-8.928600px;}
._24{margin-left:-7.893600px;}
._5{margin-left:-6.847800px;}
._6{margin-left:-5.551500px;}
._3{margin-left:-4.480800px;}
._0{margin-left:-2.501400px;}
._2{margin-left:-1.453200px;}
._1{width:1.663200px;}
._14{width:3.197100px;}
._18{width:4.284900px;}
._b{width:5.358000px;}
._11{width:6.969000px;}
._16{width:8.863500px;}
._a{width:9.960000px;}
._12{width:11.351400px;}
._1f{width:12.433800px;}
._1a{width:13.510200px;}
._10{width:14.962800px;}
._9{width:16.691400px;}
._19{width:18.647400px;}
._1c{width:20.566200px;}
._7{width:21.780000px;}
._8{width:22.996800px;}
._f{width:24.306300px;}
._17{width:25.909500px;}
._21{width:27.351600px;}
._22{width:29.098200px;}
._6b{width:30.394500px;}
._e{width:31.650300px;}
._d{width:32.813100px;}
._15{width:33.857400px;}
._23{width:35.213400px;}
._1b{width:36.376800px;}
._20{width:38.571000px;}
._68{width:40.150800px;}
._6d{width:42.034800px;}
._6e{width:43.133400px;}
._69{width:45.448800px;}
._25{width:53.190000px;}
._6c{width:60.637200px;}
._3e{width:74.046600px;}
._3a{width:78.453600px;}
._61{width:83.429700px;}
._39{width:93.049200px;}
._48{width:96.396000px;}
._4a{width:99.064800px;}
._37{width:102.125400px;}
._2b{width:103.907400px;}
._4d{width:107.384400px;}
._58{width:112.896000px;}
._36{width:114.903000px;}
._47{width:119.170800px;}
._28{width:126.049200px;}
._3b{width:130.026900px;}
._3f{width:132.064800px;}
._5d{width:145.009800px;}
._2a{width:146.506200px;}
._29{width:147.903000px;}
._54{width:153.634800px;}
._27{width:162.395400px;}
._31{width:165.064800px;}
._44{width:167.054700px;}
._5a{width:178.348800px;}
._55{width:181.564800px;}
._65{width:186.694200px;}
._4e{width:198.064800px;}
._49{width:207.324000px;}
._2c{width:214.564800px;}
._2f{width:216.205800px;}
._62{width:221.845800px;}
._40{width:231.012000px;}
._63{width:238.048800px;}
._3c{width:243.453600px;}
._4b{width:254.845200px;}
._51{width:260.006400px;}
._2d{width:265.705800px;}
._46{width:269.628000px;}
._66{width:271.060200px;}
._35{width:293.848800px;}
._5e{width:303.676200px;}
._50{width:305.002200px;}
._53{width:312.130800px;}
._32{width:320.845200px;}
._45{width:322.122000px;}
._4c{width:323.185800px;}
._43{width:325.786200px;}
._5b{width:331.592400px;}
._56{width:337.345200px;}
._4f{width:353.845200px;}
._34{width:370.345200px;}
._64{width:374.534400px;}
._41{width:386.845200px;}
._26{width:410.718600px;}
._5f{width:418.456800px;}
._2e{width:426.287400px;}
._3d{width:455.589600px;}
._33{width:491.304600px;}
._30{width:495.000600px;}
._52{width:502.738800px;}
._5c{width:548.748300px;}
._38{width:563.400300px;}
._42{width:589.000800px;}
._57{width:643.723500px;}
._60{width:660.478800px;}
._59{width:670.678800px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:38.478000px;}
.fs5{font-size:40.227000px;}
.fs3{font-size:45.474000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:69.000000px;}
.fs2{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y147{bottom:110.501850px;}
.y1{bottom:110.975700px;}
.y39{bottom:111.082050px;}
.yd3{bottom:111.209700px;}
.y6e{bottom:112.273350px;}
.y3b{bottom:113.232450px;}
.y1ae{bottom:113.338800px;}
.y1c{bottom:113.976450px;}
.ya1{bottom:148.414350px;}
.y6c{bottom:149.119950px;}
.yd0{bottom:149.385750px;}
.y175{bottom:149.838450px;}
.y146{bottom:149.855250px;}
.y101{bottom:150.352050px;}
.y117{bottom:150.352200px;}
.y68{bottom:153.045000px;}
.y38{bottom:156.892350px;}
.y2a{bottom:157.170300px;}
.y6b{bottom:167.119950px;}
.ya0{bottom:169.674150px;}
.y174{bottom:170.538450px;}
.y145{bottom:170.555250px;}
.y100{bottom:171.052050px;}
.y116{bottom:171.052200px;}
.ycf{bottom:171.283350px;}
.y67{bottom:173.745000px;}
.y37{bottom:177.592350px;}
.y29{bottom:177.870300px;}
.y9f{bottom:190.934100px;}
.y173{bottom:191.238300px;}
.y144{bottom:191.255250px;}
.yff{bottom:191.752050px;}
.y115{bottom:191.752200px;}
.yce{bottom:192.627300px;}
.y66{bottom:194.444850px;}
.y36{bottom:198.292350px;}
.y28{bottom:198.570300px;}
.ycd{bottom:202.535400px;}
.y172{bottom:211.938300px;}
.y143{bottom:211.955250px;}
.y9e{bottom:212.193900px;}
.yfe{bottom:212.452050px;}
.y114{bottom:212.452200px;}
.y65{bottom:215.144850px;}
.y35{bottom:218.992350px;}
.y27{bottom:219.270300px;}
.ycc{bottom:231.745500px;}
.y171{bottom:232.638450px;}
.y142{bottom:232.655250px;}
.yfd{bottom:233.152050px;}
.y113{bottom:233.152200px;}
.y9d{bottom:233.453700px;}
.y64{bottom:235.845000px;}
.y34{bottom:239.692350px;}
.y26{bottom:239.970300px;}
.ycb{bottom:241.653600px;}
.y170{bottom:253.338450px;}
.y141{bottom:253.355250px;}
.yfc{bottom:253.852050px;}
.y112{bottom:253.852200px;}
.y9c{bottom:254.713650px;}
.y63{bottom:256.545000px;}
.y33{bottom:260.392350px;}
.y25{bottom:260.670300px;}
.yca{bottom:272.055150px;}
.y16f{bottom:274.038450px;}
.y140{bottom:274.055250px;}
.yfb{bottom:274.552050px;}
.y111{bottom:274.552200px;}
.y9b{bottom:274.577400px;}
.y62{bottom:277.245000px;}
.y32{bottom:281.092350px;}
.y24{bottom:281.370300px;}
.y9a{bottom:284.477400px;}
.yc9{bottom:293.398950px;}
.y16e{bottom:294.738300px;}
.y13f{bottom:294.755250px;}
.yfa{bottom:295.252050px;}
.y110{bottom:295.252200px;}
.y61{bottom:297.944850px;}
.y31{bottom:301.792350px;}
.y23{bottom:302.070300px;}
.yc8{bottom:303.307050px;}
.y99{bottom:314.241150px;}
.y16d{bottom:315.438300px;}
.y13e{bottom:315.455250px;}
.yf9{bottom:315.952050px;}
.y10f{bottom:315.952200px;}
.y60{bottom:318.644850px;}
.y30{bottom:322.492350px;}
.y22{bottom:322.770300px;}
.yc7{bottom:334.558950px;}
.y98{bottom:335.500950px;}
.y16c{bottom:336.138450px;}
.y13d{bottom:336.155250px;}
.yf8{bottom:336.652050px;}
.y10e{bottom:336.652200px;}
.y5f{bottom:339.345000px;}
.y2f{bottom:343.192350px;}
.y21{bottom:343.470300px;}
.y16b{bottom:356.838450px;}
.y13c{bottom:356.855250px;}
.yc6{bottom:357.094500px;}
.yf7{bottom:357.352050px;}
.y10d{bottom:357.352200px;}
.y97{bottom:358.886850px;}
.y5e{bottom:360.045000px;}
.y2e{bottom:363.892350px;}
.y20{bottom:364.170300px;}
.y16a{bottom:377.538450px;}
.y13b{bottom:377.555250px;}
.yf6{bottom:378.052050px;}
.y10c{bottom:378.052200px;}
.yc5{bottom:379.629900px;}
.y5d{bottom:380.745000px;}
.y96{bottom:382.272600px;}
.y2d{bottom:384.592350px;}
.y1f{bottom:384.870300px;}
.y169{bottom:398.238300px;}
.y13a{bottom:398.255250px;}
.yf5{bottom:398.752050px;}
.y10b{bottom:398.752200px;}
.y5c{bottom:401.444850px;}
.yc4{bottom:401.527500px;}
.y95{bottom:403.532550px;}
.y2c{bottom:405.292350px;}
.y1e{bottom:405.570300px;}
.y168{bottom:418.938450px;}
.y139{bottom:418.955250px;}
.yf4{bottom:419.452050px;}
.y10a{bottom:419.452200px;}
.y5b{bottom:422.145000px;}
.y94{bottom:423.396300px;}
.yc3{bottom:423.425100px;}
.y2b{bottom:425.992350px;}
.y1d{bottom:426.270300px;}
.y93{bottom:433.296300px;}
.y167{bottom:439.638450px;}
.y138{bottom:439.655250px;}
.yf3{bottom:440.152050px;}
.y109{bottom:440.152200px;}
.y5a{bottom:442.844850px;}
.yc2{bottom:445.960650px;}
.y166{bottom:460.338450px;}
.y137{bottom:460.355250px;}
.yf2{bottom:460.852050px;}
.y108{bottom:460.852200px;}
.y92{bottom:463.060050px;}
.y59{bottom:463.545000px;}
.yc1{bottom:468.496050px;}
.y1b{bottom:476.449950px;}
.y165{bottom:481.038450px;}
.y136{bottom:481.055250px;}
.yf1{bottom:481.552050px;}
.y107{bottom:481.552200px;}
.y6a{bottom:484.245000px;}
.y91{bottom:484.319850px;}
.yc0{bottom:489.847950px;}
.y1a{bottom:494.449950px;}
.ybf{bottom:499.747950px;}
.y164{bottom:501.738300px;}
.y135{bottom:501.755250px;}
.yf0{bottom:502.252050px;}
.y106{bottom:502.252200px;}
.y58{bottom:504.944850px;}
.y8a{bottom:510.279150px;}
.y19{bottom:512.449950px;}
.y8e{bottom:516.502800px;}
.y86{bottom:516.949950px;}
.y163{bottom:522.438450px;}
.y134{bottom:522.455250px;}
.yef{bottom:522.952050px;}
.y105{bottom:522.952200px;}
.y8d{bottom:523.201950px;}
.y87{bottom:524.329950px;}
.y85{bottom:524.781000px;}
.y57{bottom:525.645000px;}
.y8c{bottom:528.950400px;}
.ybe{bottom:531.000000px;}
.y90{bottom:536.684700px;}
.y1ac{bottom:537.841200px;}
.y8f{bottom:539.851050px;}
.y162{bottom:543.138450px;}
.y133{bottom:543.155250px;}
.yee{bottom:543.652050px;}
.y104{bottom:543.652200px;}
.y8b{bottom:545.450400px;}
.y56{bottom:546.344850px;}
.y18{bottom:548.449950px;}
.ybd{bottom:553.535400px;}
.y89{bottom:555.855450px;}
.y191{bottom:558.524250px;}
.y161{bottom:563.838450px;}
.y132{bottom:563.855250px;}
.yed{bottom:564.352050px;}
.y103{bottom:564.352200px;}
.y88{bottom:564.572850px;}
.y17{bottom:566.449950px;}
.y55{bottom:567.045000px;}
.y84{bottom:575.018250px;}
.ybc{bottom:576.070800px;}
.y190{bottom:579.224250px;}
.y1ab{bottom:579.241200px;}
.y160{bottom:584.538450px;}
.y1c2{bottom:584.539350px;}
.y131{bottom:584.555250px;}
.yec{bottom:585.052200px;}
.y54{bottom:587.745000px;}
.ybb{bottom:598.606350px;}
.y18f{bottom:599.924250px;}
.y1aa{bottom:599.941200px;}
.y16{bottom:602.449950px;}
.y15f{bottom:605.238300px;}
.y1c1{bottom:605.239350px;}
.y130{bottom:605.255250px;}
.yeb{bottom:605.752050px;}
.y102{bottom:605.752200px;}
.y53{bottom:608.444850px;}
.y15{bottom:620.449950px;}
.y18e{bottom:620.624250px;}
.y1a9{bottom:620.641200px;}
.yba{bottom:621.141750px;}
.y15e{bottom:625.938450px;}
.y1c0{bottom:625.939350px;}
.y12f{bottom:625.955250px;}
.yea{bottom:626.452200px;}
.y52{bottom:629.145000px;}
.y14{bottom:638.449950px;}
.y18d{bottom:641.324250px;}
.y1a8{bottom:641.341200px;}
.yb9{bottom:643.677150px;}
.y15d{bottom:646.638450px;}
.y12e{bottom:646.655250px;}
.ye9{bottom:647.152200px;}
.y51{bottom:649.844850px;}
.y13{bottom:656.449950px;}
.y18c{bottom:662.024250px;}
.y1a7{bottom:662.041200px;}
.yb8{bottom:665.021100px;}
.y15c{bottom:667.338450px;}
.y1bf{bottom:667.339350px;}
.y12d{bottom:667.355250px;}
.ye8{bottom:667.852200px;}
.y50{bottom:670.545000px;}
.y12{bottom:674.449950px;}
.y83{bottom:674.733150px;}
.yb7{bottom:674.929050px;}
.y18b{bottom:682.724250px;}
.y1a6{bottom:682.741200px;}
.y15b{bottom:688.038450px;}
.y12c{bottom:688.055250px;}
.ye7{bottom:688.552200px;}
.y4f{bottom:691.245000px;}
.y11{bottom:692.449950px;}
.y18a{bottom:703.424250px;}
.y1a5{bottom:703.441200px;}
.yb6{bottom:704.989500px;}
.y15a{bottom:708.738300px;}
.y1be{bottom:708.739350px;}
.y12b{bottom:708.755250px;}
.y10{bottom:710.449950px;}
.y4e{bottom:711.944850px;}
.y82{bottom:713.008050px;}
.yb5{bottom:714.897600px;}
.ye6{bottom:718.033500px;}
.y189{bottom:724.124250px;}
.y1a4{bottom:724.141200px;}
.yf{bottom:728.449950px;}
.y159{bottom:729.438450px;}
.y1bd{bottom:729.439350px;}
.y12a{bottom:729.455250px;}
.y4d{bottom:732.645000px;}
.y81{bottom:733.708050px;}
.ye5{bottom:736.033500px;}
.y188{bottom:744.824250px;}
.y1a3{bottom:744.841200px;}
.yb4{bottom:744.966150px;}
.ye{bottom:746.449950px;}
.y158{bottom:750.138450px;}
.y1bc{bottom:750.139350px;}
.y129{bottom:750.155250px;}
.y4c{bottom:753.344850px;}
.ye4{bottom:754.033500px;}
.y80{bottom:754.408050px;}
.yb3{bottom:754.866000px;}
.y187{bottom:765.524250px;}
.y1a2{bottom:765.541200px;}
.y157{bottom:770.838450px;}
.y1bb{bottom:770.839350px;}
.y128{bottom:770.855250px;}
.ye3{bottom:772.033500px;}
.y4b{bottom:774.045000px;}
.y7f{bottom:775.108050px;}
.yb0{bottom:784.713900px;}
.yb2{bottom:784.721850px;}
.y186{bottom:786.224250px;}
.y1a1{bottom:786.241200px;}
.yd{bottom:789.649950px;}
.ye2{bottom:790.033500px;}
.y156{bottom:791.538450px;}
.y1ba{bottom:791.539350px;}
.y127{bottom:791.555250px;}
.yaf{bottom:794.622000px;}
.y69{bottom:794.745000px;}
.y7e{bottom:795.808050px;}
.yb1{bottom:804.522000px;}
.y185{bottom:806.924250px;}
.y1a0{bottom:806.941200px;}
.ye0{bottom:812.090250px;}
.y155{bottom:812.238300px;}
.y1b9{bottom:812.239350px;}
.y126{bottom:812.255250px;}
.y4a{bottom:815.444850px;}
.yc{bottom:816.094350px;}
.y7d{bottom:816.508050px;}
.ydf{bottom:821.998200px;}
.yae{bottom:825.661350px;}
.y184{bottom:827.624250px;}
.y19f{bottom:827.641050px;}
.yb{bottom:831.050100px;}
.y154{bottom:832.938300px;}
.y1b8{bottom:832.939200px;}
.y125{bottom:832.955250px;}
.y49{bottom:836.144850px;}
.y7c{bottom:837.208050px;}
.yad{bottom:847.005300px;}
.y183{bottom:848.324400px;}
.y19e{bottom:848.341200px;}
.ya{bottom:851.750100px;}
.yde{bottom:852.953400px;}
.y153{bottom:853.638450px;}
.y1b7{bottom:853.639350px;}
.y124{bottom:853.655250px;}
.y48{bottom:856.845000px;}
.yac{bottom:856.913400px;}
.y7b{bottom:857.908050px;}
.y182{bottom:869.024250px;}
.y19d{bottom:869.041200px;}
.y9{bottom:872.450100px;}
.y152{bottom:874.338450px;}
.y123{bottom:874.355250px;}
.ydd{bottom:875.168400px;}
.y47{bottom:877.545000px;}
.y7a{bottom:878.608050px;}
.yab{bottom:888.165300px;}
.y181{bottom:889.724250px;}
.y19c{bottom:889.741200px;}
.y151{bottom:895.038450px;}
.y1b6{bottom:895.039350px;}
.y122{bottom:895.055250px;}
.ydc{bottom:897.914700px;}
.y46{bottom:898.245000px;}
.y8{bottom:898.894350px;}
.y79{bottom:899.308050px;}
.yaa{bottom:910.063050px;}
.y180{bottom:910.424250px;}
.y19b{bottom:910.441200px;}
.y150{bottom:915.738300px;}
.y121{bottom:915.755250px;}
.y45{bottom:918.944850px;}
.y78{bottom:920.008050px;}
.ydb{bottom:920.661000px;}
.y1b5{bottom:921.483600px;}
.y17f{bottom:931.124250px;}
.y19a{bottom:931.141050px;}
.ya9{bottom:931.960500px;}
.y14f{bottom:936.438300px;}
.y1b4{bottom:936.439200px;}
.y120{bottom:936.455250px;}
.y7{bottom:939.050100px;}
.y44{bottom:939.644850px;}
.y77{bottom:940.708050px;}
.yda{bottom:941.579700px;}
.yd9{bottom:951.487800px;}
.y17e{bottom:951.824400px;}
.y199{bottom:951.841200px;}
.ya8{bottom:954.496050px;}
.y11f{bottom:957.155250px;}
.y43{bottom:960.345000px;}
.y76{bottom:961.408050px;}
.y1b3{bottom:962.883600px;}
.y6{bottom:964.250100px;}
.y17d{bottom:972.524250px;}
.y198{bottom:972.541200px;}
.ya7{bottom:977.031300px;}
.y14e{bottom:977.838450px;}
.y11e{bottom:977.855250px;}
.y42{bottom:981.045000px;}
.y75{bottom:982.108050px;}
.yd8{bottom:985.080000px;}
.y5{bottom:989.450100px;}
.y17c{bottom:993.224250px;}
.y197{bottom:993.241200px;}
.ya6{bottom:997.525050px;}
.y14d{bottom:998.538450px;}
.y1b2{bottom:998.539350px;}
.y11d{bottom:998.555250px;}
.y41{bottom:1001.745000px;}
.y74{bottom:1002.808050px;}
.ya5{bottom:1007.433000px;}
.yd7{bottom:1009.105350px;}
.y17b{bottom:1013.924250px;}
.y196{bottom:1013.941200px;}
.y14c{bottom:1019.238300px;}
.y11c{bottom:1019.255250px;}
.y40{bottom:1022.444850px;}
.y73{bottom:1023.508050px;}
.yd6{bottom:1030.190400px;}
.y17a{bottom:1034.624250px;}
.y195{bottom:1034.641050px;}
.ya4{bottom:1036.651200px;}
.y4{bottom:1039.850250px;}
.y14b{bottom:1039.938300px;}
.y1b1{bottom:1039.939200px;}
.y11b{bottom:1039.955250px;}
.yd5{bottom:1040.098500px;}
.y3f{bottom:1043.144850px;}
.y72{bottom:1044.208050px;}
.ya3{bottom:1046.551200px;}
.y179{bottom:1055.324400px;}
.y194{bottom:1055.341200px;}
.y14a{bottom:1060.638450px;}
.y1b0{bottom:1060.639350px;}
.y11a{bottom:1060.655250px;}
.y3e{bottom:1063.845000px;}
.y71{bottom:1064.908050px;}
.yd4{bottom:1072.852500px;}
.y178{bottom:1076.024250px;}
.y193{bottom:1076.041200px;}
.ya2{bottom:1078.015650px;}
.y149{bottom:1081.338450px;}
.y119{bottom:1081.355250px;}
.y3d{bottom:1084.545000px;}
.y70{bottom:1085.608050px;}
.y177{bottom:1096.724250px;}
.y192{bottom:1096.741200px;}
.y148{bottom:1102.038450px;}
.y1af{bottom:1102.039350px;}
.y118{bottom:1102.055250px;}
.ye1{bottom:1102.055400px;}
.y3c{bottom:1105.245000px;}
.yd1{bottom:1106.307900px;}
.y6f{bottom:1106.308050px;}
.y3{bottom:1110.542400px;}
.y176{bottom:1131.615300px;}
.yd2{bottom:1132.323000px;}
.y6d{bottom:1133.386800px;}
.y3a{bottom:1134.345900px;}
.y1ad{bottom:1134.452100px;}
.y2{bottom:1140.826950px;}
.h7{height:27.931052px;}
.h3{height:45.826172px;}
.h2{height:47.437500px;}
.h8{height:47.909180px;}
.h9{height:52.646484px;}
.hb{height:57.911133px;}
.ha{height:59.667480px;}
.h4{height:60.543457px;}
.h5{height:67.450195px;}
.h6{height:72.638672px;}
.h14{height:85.393772px;}
.hd{height:85.394372px;}
.hf{height:97.478733px;}
.h13{height:97.479333px;}
.h12{height:97.510533px;}
.hc{height:97.511133px;}
.h11{height:97.511733px;}
.he{height:97.542933px;}
.h10{height:97.543533px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:63.779550px;}
.x42{left:66.299250px;}
.x2e{left:68.406450px;}
.x1b{left:69.914550px;}
.x29{left:73.660950px;}
.x16{left:89.291400px;}
.x3c{left:95.669400px;}
.x14{left:101.725350px;}
.x1{left:106.299150px;}
.x2{left:108.000000px;}
.x2f{left:110.926200px;}
.x40{left:117.510150px;}
.x10{left:131.811000px;}
.x47{left:133.330350px;}
.x31{left:138.189000px;}
.xd{left:144.249450px;}
.x7{left:149.968350px;}
.xe{left:153.070800px;}
.x43{left:159.535950px;}
.x9{left:162.872400px;}
.x46{left:164.737050px;}
.xb{left:174.196950px;}
.x6{left:182.616900px;}
.x45{left:184.897200px;}
.xa{left:198.168300px;}
.x48{left:201.780750px;}
.x8{left:272.943450px;}
.x1c{left:345.346200px;}
.xc{left:354.214350px;}
.x35{left:361.520250px;}
.x44{left:366.112800px;}
.x34{left:367.707750px;}
.x2b{left:381.300000px;}
.x2d{left:385.425000px;}
.x28{left:389.550000px;}
.x3d{left:390.919800px;}
.x1d{left:394.195200px;}
.x5{left:402.982350px;}
.x32{left:420.153600px;}
.x1a{left:421.882200px;}
.x1e{left:424.057350px;}
.x33{left:426.570600px;}
.x37{left:432.527850px;}
.x38{left:434.364750px;}
.x18{left:435.826800px;}
.x39{left:438.026250px;}
.x3a{left:441.224400px;}
.x1f{left:443.857350px;}
.x17{left:461.338650px;}
.x20{left:469.283250px;}
.x3{left:473.924550px;}
.x11{left:478.346400px;}
.x4{left:481.844550px;}
.x19{left:484.210200px;}
.x21{left:489.083250px;}
.xf{left:501.732300px;}
.x12{left:503.858250px;}
.x22{left:519.888000px;}
.x23{left:539.688150px;}
.x24{left:569.737650px;}
.x41{left:573.584550px;}
.x2c{left:584.658600px;}
.x2a{left:609.408600px;}
.x30{left:627.484350px;}
.x25{left:635.753700px;}
.x3e{left:639.618600px;}
.x3b{left:661.948650px;}
.x36{left:664.302600px;}
.x26{left:730.815150px;}
.x27{left:750.615150px;}
.x13{left:766.985550px;}
.x3f{left:829.133850px;}
@media print{
.v2{vertical-align:-20.424000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.536000pt;}
.v1{vertical-align:23.087467pt;}
.v3{vertical-align:35.228800pt;}
.ls6{letter-spacing:-2.269333pt;}
.ls3{letter-spacing:-2.170667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.lsc{letter-spacing:0.009600pt;}
.ls9{letter-spacing:0.010122pt;}
.lsb{letter-spacing:0.010133pt;}
.lsa{letter-spacing:0.010667pt;}
.lsd{letter-spacing:0.876800pt;}
.ls4{letter-spacing:6.120261pt;}
.ls8{letter-spacing:6.133333pt;}
.ls5{letter-spacing:10.860065pt;}
.ls7{letter-spacing:29.501333pt;}
.ls2{letter-spacing:48.918933pt;}
.ws21{word-spacing:-29.501333pt;}
.ws1{word-spacing:-15.333333pt;}
.ws3{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws22{word-spacing:-6.133333pt;}
.ws1f{word-spacing:-0.061333pt;}
.ws1d{word-spacing:-0.058667pt;}
.ws23{word-spacing:-0.035757pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:2.269333pt;}
.wsf{word-spacing:23.601067pt;}
.wsa{word-spacing:23.601600pt;}
.wsc{word-spacing:30.113067pt;}
.ws4{word-spacing:37.812800pt;}
.wse{word-spacing:51.390400pt;}
.ws1a{word-spacing:52.478933pt;}
.ws7{word-spacing:67.146133pt;}
.ws18{word-spacing:68.042667pt;}
.ws10{word-spacing:68.043200pt;}
.ws6{word-spacing:68.043733pt;}
.ws5{word-spacing:77.695467pt;}
.ws16{word-spacing:91.536000pt;}
.ws17{word-spacing:109.155733pt;}
.ws11{word-spacing:200.918400pt;}
.wsd{word-spacing:218.821333pt;}
.ws19{word-spacing:235.617600pt;}
.wsb{word-spacing:256.376533pt;}
.ws1b{word-spacing:299.862400pt;}
.ws13{word-spacing:299.862933pt;}
.ws9{word-spacing:371.582933pt;}
.ws8{word-spacing:456.238933pt;}
.ws15{word-spacing:526.927467pt;}
.ws12{word-spacing:589.614933pt;}
.ws14{word-spacing:612.494933pt;}
.ws1c{word-spacing:660.484267pt;}
.ws1e{word-spacing:670.222933pt;}
._6a{margin-left:-28.915733pt;}
._1d{margin-left:-16.185067pt;}
._1e{margin-left:-15.097867pt;}
._c{margin-left:-14.144000pt;}
._67{margin-left:-13.149867pt;}
._4{margin-left:-9.310933pt;}
._13{margin-left:-7.936533pt;}
._24{margin-left:-7.016533pt;}
._5{margin-left:-6.086933pt;}
._6{margin-left:-4.934667pt;}
._3{margin-left:-3.982933pt;}
._0{margin-left:-2.223467pt;}
._2{margin-left:-1.291733pt;}
._1{width:1.478400pt;}
._14{width:2.841867pt;}
._18{width:3.808800pt;}
._b{width:4.762667pt;}
._11{width:6.194667pt;}
._16{width:7.878667pt;}
._a{width:8.853333pt;}
._12{width:10.090133pt;}
._1f{width:11.052267pt;}
._1a{width:12.009067pt;}
._10{width:13.300267pt;}
._9{width:14.836800pt;}
._19{width:16.575467pt;}
._1c{width:18.281067pt;}
._7{width:19.360000pt;}
._8{width:20.441600pt;}
._f{width:21.605600pt;}
._17{width:23.030667pt;}
._21{width:24.312533pt;}
._22{width:25.865067pt;}
._6b{width:27.017333pt;}
._e{width:28.133600pt;}
._d{width:29.167200pt;}
._15{width:30.095467pt;}
._23{width:31.300800pt;}
._1b{width:32.334933pt;}
._20{width:34.285333pt;}
._68{width:35.689600pt;}
._6d{width:37.364267pt;}
._6e{width:38.340800pt;}
._69{width:40.398933pt;}
._25{width:47.280000pt;}
._6c{width:53.899733pt;}
._3e{width:65.819200pt;}
._3a{width:69.736533pt;}
._61{width:74.159733pt;}
._39{width:82.710400pt;}
._48{width:85.685333pt;}
._4a{width:88.057600pt;}
._37{width:90.778133pt;}
._2b{width:92.362133pt;}
._4d{width:95.452800pt;}
._58{width:100.352000pt;}
._36{width:102.136000pt;}
._47{width:105.929600pt;}
._28{width:112.043733pt;}
._3b{width:115.579467pt;}
._3f{width:117.390933pt;}
._5d{width:128.897600pt;}
._2a{width:130.227733pt;}
._29{width:131.469333pt;}
._54{width:136.564267pt;}
._27{width:144.351467pt;}
._31{width:146.724267pt;}
._44{width:148.493067pt;}
._5a{width:158.532267pt;}
._55{width:161.390933pt;}
._65{width:165.950400pt;}
._4e{width:176.057600pt;}
._49{width:184.288000pt;}
._2c{width:190.724267pt;}
._2f{width:192.182933pt;}
._62{width:197.196267pt;}
._40{width:205.344000pt;}
._63{width:211.598933pt;}
._3c{width:216.403200pt;}
._4b{width:226.529067pt;}
._51{width:231.116800pt;}
._2d{width:236.182933pt;}
._46{width:239.669333pt;}
._66{width:240.942400pt;}
._35{width:261.198933pt;}
._5e{width:269.934400pt;}
._50{width:271.113067pt;}
._53{width:277.449600pt;}
._32{width:285.195733pt;}
._45{width:286.330667pt;}
._4c{width:287.276267pt;}
._43{width:289.587733pt;}
._5b{width:294.748800pt;}
._56{width:299.862400pt;}
._4f{width:314.529067pt;}
._34{width:329.195733pt;}
._64{width:332.919467pt;}
._41{width:343.862400pt;}
._26{width:365.083200pt;}
._5f{width:371.961600pt;}
._2e{width:378.922133pt;}
._3d{width:404.968533pt;}
._33{width:436.715200pt;}
._30{width:440.000533pt;}
._52{width:446.878933pt;}
._5c{width:487.776267pt;}
._38{width:500.800267pt;}
._42{width:523.556267pt;}
._57{width:572.198667pt;}
._60{width:587.092267pt;}
._59{width:596.158933pt;}
.fs7{font-size:34.202667pt;}
.fs5{font-size:35.757333pt;}
.fs3{font-size:40.421333pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:61.333333pt;}
.fs2{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y147{bottom:98.223867pt;}
.y1{bottom:98.645067pt;}
.y39{bottom:98.739600pt;}
.yd3{bottom:98.853067pt;}
.y6e{bottom:99.798533pt;}
.y3b{bottom:100.651067pt;}
.y1ae{bottom:100.745600pt;}
.y1c{bottom:101.312400pt;}
.ya1{bottom:131.923867pt;}
.y6c{bottom:132.551067pt;}
.yd0{bottom:132.787333pt;}
.y175{bottom:133.189733pt;}
.y146{bottom:133.204667pt;}
.y101{bottom:133.646267pt;}
.y117{bottom:133.646400pt;}
.y68{bottom:136.040000pt;}
.y38{bottom:139.459867pt;}
.y2a{bottom:139.706933pt;}
.y6b{bottom:148.551067pt;}
.ya0{bottom:150.821467pt;}
.y174{bottom:151.589733pt;}
.y145{bottom:151.604667pt;}
.y100{bottom:152.046267pt;}
.y116{bottom:152.046400pt;}
.ycf{bottom:152.251867pt;}
.y67{bottom:154.440000pt;}
.y37{bottom:157.859867pt;}
.y29{bottom:158.106933pt;}
.y9f{bottom:169.719200pt;}
.y173{bottom:169.989600pt;}
.y144{bottom:170.004667pt;}
.yff{bottom:170.446267pt;}
.y115{bottom:170.446400pt;}
.yce{bottom:171.224267pt;}
.y66{bottom:172.839867pt;}
.y36{bottom:176.259867pt;}
.y28{bottom:176.506933pt;}
.ycd{bottom:180.031467pt;}
.y172{bottom:188.389600pt;}
.y143{bottom:188.404667pt;}
.y9e{bottom:188.616800pt;}
.yfe{bottom:188.846267pt;}
.y114{bottom:188.846400pt;}
.y65{bottom:191.239867pt;}
.y35{bottom:194.659867pt;}
.y27{bottom:194.906933pt;}
.ycc{bottom:205.996000pt;}
.y171{bottom:206.789733pt;}
.y142{bottom:206.804667pt;}
.yfd{bottom:207.246267pt;}
.y113{bottom:207.246400pt;}
.y9d{bottom:207.514400pt;}
.y64{bottom:209.640000pt;}
.y34{bottom:213.059867pt;}
.y26{bottom:213.306933pt;}
.ycb{bottom:214.803200pt;}
.y170{bottom:225.189733pt;}
.y141{bottom:225.204667pt;}
.yfc{bottom:225.646267pt;}
.y112{bottom:225.646400pt;}
.y9c{bottom:226.412133pt;}
.y63{bottom:228.040000pt;}
.y33{bottom:231.459867pt;}
.y25{bottom:231.706933pt;}
.yca{bottom:241.826800pt;}
.y16f{bottom:243.589733pt;}
.y140{bottom:243.604667pt;}
.yfb{bottom:244.046267pt;}
.y111{bottom:244.046400pt;}
.y9b{bottom:244.068800pt;}
.y62{bottom:246.440000pt;}
.y32{bottom:249.859867pt;}
.y24{bottom:250.106933pt;}
.y9a{bottom:252.868800pt;}
.yc9{bottom:260.799067pt;}
.y16e{bottom:261.989600pt;}
.y13f{bottom:262.004667pt;}
.yfa{bottom:262.446267pt;}
.y110{bottom:262.446400pt;}
.y61{bottom:264.839867pt;}
.y31{bottom:268.259867pt;}
.y23{bottom:268.506933pt;}
.yc8{bottom:269.606267pt;}
.y99{bottom:279.325467pt;}
.y16d{bottom:280.389600pt;}
.y13e{bottom:280.404667pt;}
.yf9{bottom:280.846267pt;}
.y10f{bottom:280.846400pt;}
.y60{bottom:283.239867pt;}
.y30{bottom:286.659867pt;}
.y22{bottom:286.906933pt;}
.yc7{bottom:297.385733pt;}
.y98{bottom:298.223067pt;}
.y16c{bottom:298.789733pt;}
.y13d{bottom:298.804667pt;}
.yf8{bottom:299.246267pt;}
.y10e{bottom:299.246400pt;}
.y5f{bottom:301.640000pt;}
.y2f{bottom:305.059867pt;}
.y21{bottom:305.306933pt;}
.y16b{bottom:317.189733pt;}
.y13c{bottom:317.204667pt;}
.yc6{bottom:317.417333pt;}
.yf7{bottom:317.646267pt;}
.y10d{bottom:317.646400pt;}
.y97{bottom:319.010533pt;}
.y5e{bottom:320.040000pt;}
.y2e{bottom:323.459867pt;}
.y20{bottom:323.706933pt;}
.y16a{bottom:335.589733pt;}
.y13b{bottom:335.604667pt;}
.yf6{bottom:336.046267pt;}
.y10c{bottom:336.046400pt;}
.yc5{bottom:337.448800pt;}
.y5d{bottom:338.440000pt;}
.y96{bottom:339.797867pt;}
.y2d{bottom:341.859867pt;}
.y1f{bottom:342.106933pt;}
.y169{bottom:353.989600pt;}
.y13a{bottom:354.004667pt;}
.yf5{bottom:354.446267pt;}
.y10b{bottom:354.446400pt;}
.y5c{bottom:356.839867pt;}
.yc4{bottom:356.913333pt;}
.y95{bottom:358.695600pt;}
.y2c{bottom:360.259867pt;}
.y1e{bottom:360.506933pt;}
.y168{bottom:372.389733pt;}
.y139{bottom:372.404667pt;}
.yf4{bottom:372.846267pt;}
.y10a{bottom:372.846400pt;}
.y5b{bottom:375.240000pt;}
.y94{bottom:376.352267pt;}
.yc3{bottom:376.377867pt;}
.y2b{bottom:378.659867pt;}
.y1d{bottom:378.906933pt;}
.y93{bottom:385.152267pt;}
.y167{bottom:390.789733pt;}
.y138{bottom:390.804667pt;}
.yf3{bottom:391.246267pt;}
.y109{bottom:391.246400pt;}
.y5a{bottom:393.639867pt;}
.yc2{bottom:396.409467pt;}
.y166{bottom:409.189733pt;}
.y137{bottom:409.204667pt;}
.yf2{bottom:409.646267pt;}
.y108{bottom:409.646400pt;}
.y92{bottom:411.608933pt;}
.y59{bottom:412.040000pt;}
.yc1{bottom:416.440933pt;}
.y1b{bottom:423.511067pt;}
.y165{bottom:427.589733pt;}
.y136{bottom:427.604667pt;}
.yf1{bottom:428.046267pt;}
.y107{bottom:428.046400pt;}
.y6a{bottom:430.440000pt;}
.y91{bottom:430.506533pt;}
.yc0{bottom:435.420400pt;}
.y1a{bottom:439.511067pt;}
.ybf{bottom:444.220400pt;}
.y164{bottom:445.989600pt;}
.y135{bottom:446.004667pt;}
.yf0{bottom:446.446267pt;}
.y106{bottom:446.446400pt;}
.y58{bottom:448.839867pt;}
.y8a{bottom:453.581467pt;}
.y19{bottom:455.511067pt;}
.y8e{bottom:459.113600pt;}
.y86{bottom:459.511067pt;}
.y163{bottom:464.389733pt;}
.y134{bottom:464.404667pt;}
.yef{bottom:464.846267pt;}
.y105{bottom:464.846400pt;}
.y8d{bottom:465.068400pt;}
.y87{bottom:466.071067pt;}
.y85{bottom:466.472000pt;}
.y57{bottom:467.240000pt;}
.y8c{bottom:470.178133pt;}
.ybe{bottom:472.000000pt;}
.y90{bottom:477.053067pt;}
.y1ac{bottom:478.081067pt;}
.y8f{bottom:479.867600pt;}
.y162{bottom:482.789733pt;}
.y133{bottom:482.804667pt;}
.yee{bottom:483.246267pt;}
.y104{bottom:483.246400pt;}
.y8b{bottom:484.844800pt;}
.y56{bottom:485.639867pt;}
.y18{bottom:487.511067pt;}
.ybd{bottom:492.031467pt;}
.y89{bottom:494.093733pt;}
.y191{bottom:496.466000pt;}
.y161{bottom:501.189733pt;}
.y132{bottom:501.204667pt;}
.yed{bottom:501.646267pt;}
.y103{bottom:501.646400pt;}
.y88{bottom:501.842533pt;}
.y17{bottom:503.511067pt;}
.y55{bottom:504.040000pt;}
.y84{bottom:511.127333pt;}
.ybc{bottom:512.062933pt;}
.y190{bottom:514.866000pt;}
.y1ab{bottom:514.881067pt;}
.y160{bottom:519.589733pt;}
.y1c2{bottom:519.590533pt;}
.y131{bottom:519.604667pt;}
.yec{bottom:520.046400pt;}
.y54{bottom:522.440000pt;}
.ybb{bottom:532.094533pt;}
.y18f{bottom:533.266000pt;}
.y1aa{bottom:533.281067pt;}
.y16{bottom:535.511067pt;}
.y15f{bottom:537.989600pt;}
.y1c1{bottom:537.990533pt;}
.y130{bottom:538.004667pt;}
.yeb{bottom:538.446267pt;}
.y102{bottom:538.446400pt;}
.y53{bottom:540.839867pt;}
.y15{bottom:551.511067pt;}
.y18e{bottom:551.666000pt;}
.y1a9{bottom:551.681067pt;}
.yba{bottom:552.126000pt;}
.y15e{bottom:556.389733pt;}
.y1c0{bottom:556.390533pt;}
.y12f{bottom:556.404667pt;}
.yea{bottom:556.846400pt;}
.y52{bottom:559.240000pt;}
.y14{bottom:567.511067pt;}
.y18d{bottom:570.066000pt;}
.y1a8{bottom:570.081067pt;}
.yb9{bottom:572.157467pt;}
.y15d{bottom:574.789733pt;}
.y12e{bottom:574.804667pt;}
.ye9{bottom:575.246400pt;}
.y51{bottom:577.639867pt;}
.y13{bottom:583.511067pt;}
.y18c{bottom:588.466000pt;}
.y1a7{bottom:588.481067pt;}
.yb8{bottom:591.129867pt;}
.y15c{bottom:593.189733pt;}
.y1bf{bottom:593.190533pt;}
.y12d{bottom:593.204667pt;}
.ye8{bottom:593.646400pt;}
.y50{bottom:596.040000pt;}
.y12{bottom:599.511067pt;}
.y83{bottom:599.762800pt;}
.yb7{bottom:599.936933pt;}
.y18b{bottom:606.866000pt;}
.y1a6{bottom:606.881067pt;}
.y15b{bottom:611.589733pt;}
.y12c{bottom:611.604667pt;}
.ye7{bottom:612.046400pt;}
.y4f{bottom:614.440000pt;}
.y11{bottom:615.511067pt;}
.y18a{bottom:625.266000pt;}
.y1a5{bottom:625.281067pt;}
.yb6{bottom:626.657333pt;}
.y15a{bottom:629.989600pt;}
.y1be{bottom:629.990533pt;}
.y12b{bottom:630.004667pt;}
.y10{bottom:631.511067pt;}
.y4e{bottom:632.839867pt;}
.y82{bottom:633.784933pt;}
.yb5{bottom:635.464533pt;}
.ye6{bottom:638.252000pt;}
.y189{bottom:643.666000pt;}
.y1a4{bottom:643.681067pt;}
.yf{bottom:647.511067pt;}
.y159{bottom:648.389733pt;}
.y1bd{bottom:648.390533pt;}
.y12a{bottom:648.404667pt;}
.y4d{bottom:651.240000pt;}
.y81{bottom:652.184933pt;}
.ye5{bottom:654.252000pt;}
.y188{bottom:662.066000pt;}
.y1a3{bottom:662.081067pt;}
.yb4{bottom:662.192133pt;}
.ye{bottom:663.511067pt;}
.y158{bottom:666.789733pt;}
.y1bc{bottom:666.790533pt;}
.y129{bottom:666.804667pt;}
.y4c{bottom:669.639867pt;}
.ye4{bottom:670.252000pt;}
.y80{bottom:670.584933pt;}
.yb3{bottom:670.992000pt;}
.y187{bottom:680.466000pt;}
.y1a2{bottom:680.481067pt;}
.y157{bottom:685.189733pt;}
.y1bb{bottom:685.190533pt;}
.y128{bottom:685.204667pt;}
.ye3{bottom:686.252000pt;}
.y4b{bottom:688.040000pt;}
.y7f{bottom:688.984933pt;}
.yb0{bottom:697.523467pt;}
.yb2{bottom:697.530533pt;}
.y186{bottom:698.866000pt;}
.y1a1{bottom:698.881067pt;}
.yd{bottom:701.911067pt;}
.ye2{bottom:702.252000pt;}
.y156{bottom:703.589733pt;}
.y1ba{bottom:703.590533pt;}
.y127{bottom:703.604667pt;}
.yaf{bottom:706.330667pt;}
.y69{bottom:706.440000pt;}
.y7e{bottom:707.384933pt;}
.yb1{bottom:715.130667pt;}
.y185{bottom:717.266000pt;}
.y1a0{bottom:717.281067pt;}
.ye0{bottom:721.858000pt;}
.y155{bottom:721.989600pt;}
.y1b9{bottom:721.990533pt;}
.y126{bottom:722.004667pt;}
.y4a{bottom:724.839867pt;}
.yc{bottom:725.417200pt;}
.y7d{bottom:725.784933pt;}
.ydf{bottom:730.665067pt;}
.yae{bottom:733.921200pt;}
.y184{bottom:735.666000pt;}
.y19f{bottom:735.680933pt;}
.yb{bottom:738.711200pt;}
.y154{bottom:740.389600pt;}
.y1b8{bottom:740.390400pt;}
.y125{bottom:740.404667pt;}
.y49{bottom:743.239867pt;}
.y7c{bottom:744.184933pt;}
.yad{bottom:752.893600pt;}
.y183{bottom:754.066133pt;}
.y19e{bottom:754.081067pt;}
.ya{bottom:757.111200pt;}
.yde{bottom:758.180800pt;}
.y153{bottom:758.789733pt;}
.y1b7{bottom:758.790533pt;}
.y124{bottom:758.804667pt;}
.y48{bottom:761.640000pt;}
.yac{bottom:761.700800pt;}
.y7b{bottom:762.584933pt;}
.y182{bottom:772.466000pt;}
.y19d{bottom:772.481067pt;}
.y9{bottom:775.511200pt;}
.y152{bottom:777.189733pt;}
.y123{bottom:777.204667pt;}
.ydd{bottom:777.927467pt;}
.y47{bottom:780.040000pt;}
.y7a{bottom:780.984933pt;}
.yab{bottom:789.480267pt;}
.y181{bottom:790.866000pt;}
.y19c{bottom:790.881067pt;}
.y151{bottom:795.589733pt;}
.y1b6{bottom:795.590533pt;}
.y122{bottom:795.604667pt;}
.ydc{bottom:798.146400pt;}
.y46{bottom:798.440000pt;}
.y8{bottom:799.017200pt;}
.y79{bottom:799.384933pt;}
.yaa{bottom:808.944933pt;}
.y180{bottom:809.266000pt;}
.y19b{bottom:809.281067pt;}
.y150{bottom:813.989600pt;}
.y121{bottom:814.004667pt;}
.y45{bottom:816.839867pt;}
.y78{bottom:817.784933pt;}
.ydb{bottom:818.365333pt;}
.y1b5{bottom:819.096533pt;}
.y17f{bottom:827.666000pt;}
.y19a{bottom:827.680933pt;}
.ya9{bottom:828.409333pt;}
.y14f{bottom:832.389600pt;}
.y1b4{bottom:832.390400pt;}
.y120{bottom:832.404667pt;}
.y7{bottom:834.711200pt;}
.y44{bottom:835.239867pt;}
.y77{bottom:836.184933pt;}
.yda{bottom:836.959733pt;}
.yd9{bottom:845.766933pt;}
.y17e{bottom:846.066133pt;}
.y199{bottom:846.081067pt;}
.ya8{bottom:848.440933pt;}
.y11f{bottom:850.804667pt;}
.y43{bottom:853.640000pt;}
.y76{bottom:854.584933pt;}
.y1b3{bottom:855.896533pt;}
.y6{bottom:857.111200pt;}
.y17d{bottom:864.466000pt;}
.y198{bottom:864.481067pt;}
.ya7{bottom:868.472267pt;}
.y14e{bottom:869.189733pt;}
.y11e{bottom:869.204667pt;}
.y42{bottom:872.040000pt;}
.y75{bottom:872.984933pt;}
.yd8{bottom:875.626667pt;}
.y5{bottom:879.511200pt;}
.y17c{bottom:882.866000pt;}
.y197{bottom:882.881067pt;}
.ya6{bottom:886.688933pt;}
.y14d{bottom:887.589733pt;}
.y1b2{bottom:887.590533pt;}
.y11d{bottom:887.604667pt;}
.y41{bottom:890.440000pt;}
.y74{bottom:891.384933pt;}
.ya5{bottom:895.496000pt;}
.yd7{bottom:896.982533pt;}
.y17b{bottom:901.266000pt;}
.y196{bottom:901.281067pt;}
.y14c{bottom:905.989600pt;}
.y11c{bottom:906.004667pt;}
.y40{bottom:908.839867pt;}
.y73{bottom:909.784933pt;}
.yd6{bottom:915.724800pt;}
.y17a{bottom:919.666000pt;}
.y195{bottom:919.680933pt;}
.ya4{bottom:921.467733pt;}
.y4{bottom:924.311333pt;}
.y14b{bottom:924.389600pt;}
.y1b1{bottom:924.390400pt;}
.y11b{bottom:924.404667pt;}
.yd5{bottom:924.532000pt;}
.y3f{bottom:927.239867pt;}
.y72{bottom:928.184933pt;}
.ya3{bottom:930.267733pt;}
.y179{bottom:938.066133pt;}
.y194{bottom:938.081067pt;}
.y14a{bottom:942.789733pt;}
.y1b0{bottom:942.790533pt;}
.y11a{bottom:942.804667pt;}
.y3e{bottom:945.640000pt;}
.y71{bottom:946.584933pt;}
.yd4{bottom:953.646667pt;}
.y178{bottom:956.466000pt;}
.y193{bottom:956.481067pt;}
.ya2{bottom:958.236133pt;}
.y149{bottom:961.189733pt;}
.y119{bottom:961.204667pt;}
.y3d{bottom:964.040000pt;}
.y70{bottom:964.984933pt;}
.y177{bottom:974.866000pt;}
.y192{bottom:974.881067pt;}
.y148{bottom:979.589733pt;}
.y1af{bottom:979.590533pt;}
.y118{bottom:979.604667pt;}
.ye1{bottom:979.604800pt;}
.y3c{bottom:982.440000pt;}
.yd1{bottom:983.384800pt;}
.y6f{bottom:983.384933pt;}
.y3{bottom:987.148800pt;}
.y176{bottom:1005.880267pt;}
.yd2{bottom:1006.509333pt;}
.y6d{bottom:1007.454933pt;}
.y3a{bottom:1008.307467pt;}
.y1ad{bottom:1008.401867pt;}
.y2{bottom:1014.068400pt;}
.h7{height:24.827602pt;}
.h3{height:40.734375pt;}
.h2{height:42.166667pt;}
.h8{height:42.585938pt;}
.h9{height:46.796875pt;}
.hb{height:51.476562pt;}
.ha{height:53.037760pt;}
.h4{height:53.816406pt;}
.h5{height:59.955729pt;}
.h6{height:64.567708pt;}
.h14{height:75.905575pt;}
.hd{height:75.906108pt;}
.hf{height:86.647762pt;}
.h13{height:86.648296pt;}
.h12{height:86.676029pt;}
.hc{height:86.676562pt;}
.h11{height:86.677096pt;}
.he{height:86.704829pt;}
.h10{height:86.705363pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:56.692933pt;}
.x42{left:58.932667pt;}
.x2e{left:60.805733pt;}
.x1b{left:62.146267pt;}
.x29{left:65.476400pt;}
.x16{left:79.370133pt;}
.x3c{left:85.039467pt;}
.x14{left:90.422533pt;}
.x1{left:94.488133pt;}
.x2{left:96.000000pt;}
.x2f{left:98.601067pt;}
.x40{left:104.453467pt;}
.x10{left:117.165333pt;}
.x47{left:118.515867pt;}
.x31{left:122.834667pt;}
.xd{left:128.221733pt;}
.x7{left:133.305200pt;}
.xe{left:136.062933pt;}
.x43{left:141.809733pt;}
.x9{left:144.775467pt;}
.x46{left:146.432933pt;}
.xb{left:154.841733pt;}
.x6{left:162.326133pt;}
.x45{left:164.353067pt;}
.xa{left:176.149600pt;}
.x48{left:179.360667pt;}
.x8{left:242.616400pt;}
.x1c{left:306.974400pt;}
.xc{left:314.857200pt;}
.x35{left:321.351333pt;}
.x44{left:325.433600pt;}
.x34{left:326.851333pt;}
.x2b{left:338.933333pt;}
.x2d{left:342.600000pt;}
.x28{left:346.266667pt;}
.x3d{left:347.484267pt;}
.x1d{left:350.395733pt;}
.x5{left:358.206533pt;}
.x32{left:373.469867pt;}
.x1a{left:375.006400pt;}
.x1e{left:376.939867pt;}
.x33{left:379.173867pt;}
.x37{left:384.469200pt;}
.x38{left:386.102000pt;}
.x18{left:387.401600pt;}
.x39{left:389.356667pt;}
.x3a{left:392.199467pt;}
.x1f{left:394.539867pt;}
.x17{left:410.078800pt;}
.x20{left:417.140667pt;}
.x3{left:421.266267pt;}
.x11{left:425.196800pt;}
.x4{left:428.306267pt;}
.x19{left:430.409067pt;}
.x21{left:434.740667pt;}
.xf{left:445.984267pt;}
.x12{left:447.874000pt;}
.x22{left:462.122667pt;}
.x23{left:479.722800pt;}
.x24{left:506.433467pt;}
.x41{left:509.852933pt;}
.x2c{left:519.696533pt;}
.x2a{left:541.696533pt;}
.x30{left:557.763867pt;}
.x25{left:565.114400pt;}
.x3e{left:568.549867pt;}
.x3b{left:588.398800pt;}
.x36{left:590.491200pt;}
.x26{left:649.613467pt;}
.x27{left:667.213467pt;}
.x13{left:681.764933pt;}
.x3f{left:737.007867pt;}
}




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