
    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_cf185cb9d08849f5e95d4d9c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_867e7108b7a775f964db31a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_eb31a1e77e49a954b51120ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_73c044a27e7cee197760f8dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_c919cc5f43ea8c25531b5ee1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_6413a533ebf1203b7b93c977.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_d1ccc42b88336718ec7a7b6e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cfa8f3f145d8c259d4a5cf96.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ecc7324b19cf178bd4fabdfb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecaf5787696aa8ac454a5e8b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cbbe3df697588f8d362113c6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_06b5f9a4f2d9cf01dbde4881.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_692c59866cbf7c7d4568130f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_da6851b2638328a7fe2780b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_89c46d7e150dec4965ac9b6f.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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;}
.m3{transform:matrix(0.000000,-0.248915,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248915,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248915,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-14.400000px;}
.v2{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.640000px;}
.v5{vertical-align:14.400000px;}
.v7{vertical-align:25.920000px;}
.v1{vertical-align:33.120000px;}
.v9{vertical-align:47.520000px;}
.v8{vertical-align:54.720000px;}
.v6{vertical-align:61.920000px;}
.ls8{letter-spacing:-0.720000px;}
.ls3a{letter-spacing:-0.636000px;}
.ls31{letter-spacing:-0.624000px;}
.ls17{letter-spacing:-0.576000px;}
.ls42{letter-spacing:-0.510258px;}
.ls5{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.463800px;}
.ls24{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.406200px;}
.lsd{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.072000px;}
.ls40{letter-spacing:0.089400px;}
.lsc{letter-spacing:0.120000px;}
.ls39{letter-spacing:0.132480px;}
.ls7{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.387360px;}
.ls3e{letter-spacing:0.397200px;}
.ls2f{letter-spacing:0.409200px;}
.ls34{letter-spacing:0.427680px;}
.ls1{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.512400px;}
.ls33{letter-spacing:0.547680px;}
.ls23{letter-spacing:0.567360px;}
.ls6{letter-spacing:0.576000px;}
.ls3d{letter-spacing:0.642240px;}
.lse{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls30{letter-spacing:0.792000px;}
.ls41{letter-spacing:0.869760px;}
.ls44{letter-spacing:0.912000px;}
.ls1a{letter-spacing:0.936000px;}
.ls35{letter-spacing:0.972000px;}
.ls4{letter-spacing:1.008000px;}
.ls38{letter-spacing:1.074240px;}
.ls2b{letter-spacing:1.080000px;}
.ls3c{letter-spacing:1.194240px;}
.ls14{letter-spacing:1.512000px;}
.ls37{letter-spacing:1.584000px;}
.ls18{letter-spacing:1.944000px;}
.ls45{letter-spacing:2.016000px;}
.ls2d{letter-spacing:2.088000px;}
.lsf{letter-spacing:2.160000px;}
.ls2e{letter-spacing:2.309760px;}
.ls29{letter-spacing:2.498400px;}
.ls1d{letter-spacing:6.629760px;}
.ls36{letter-spacing:6.768000px;}
.ls3f{letter-spacing:9.648000px;}
.ls3{letter-spacing:10.224000px;}
.ls1f{letter-spacing:11.088000px;}
.ls28{letter-spacing:12.960000px;}
.ls1e{letter-spacing:13.829760px;}
.ls3b{letter-spacing:13.968000px;}
.ls2a{letter-spacing:16.560000px;}
.ls27{letter-spacing:19.656000px;}
.ls32{letter-spacing:19.728000px;}
.ls25{letter-spacing:19.778400px;}
.ls26{letter-spacing:24.098400px;}
.ls22{letter-spacing:25.488000px;}
.ls10{letter-spacing:43.344000px;}
.lsb{letter-spacing:44.784000px;}
.ls2c{letter-spacing:54.984000px;}
.ls43{letter-spacing:136.956000px;}
.ls1c{letter-spacing:195.564000px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws1a{word-spacing:-18.360000px;}
.ws19{word-spacing:-17.352000px;}
.ws4{word-spacing:-17.280000px;}
.ws1e{word-spacing:-17.208000px;}
.ws7{word-spacing:-16.992000px;}
.ws9{word-spacing:-16.920000px;}
.ws20{word-spacing:-16.848000px;}
.ws2{word-spacing:-16.704000px;}
.wsb{word-spacing:-16.632000px;}
.wse{word-spacing:-16.488000px;}
.ws5{word-spacing:-16.416000px;}
.wsf{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.272000px;}
.ws6{word-spacing:-16.056000px;}
.ws8{word-spacing:-15.912000px;}
.ws14{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.768000px;}
.ws13{word-spacing:-15.696000px;}
.wsc{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.482640px;}
.ws1b{word-spacing:-15.379440px;}
.ws21{word-spacing:-15.367440px;}
.ws22{word-spacing:-15.059640px;}
.ws1d{word-spacing:-14.970240px;}
.ws12{word-spacing:-14.506440px;}
.ws23{word-spacing:-13.617944px;}
.ws18{word-spacing:-11.088000px;}
.ws10{word-spacing:-10.739520px;}
.ws1c{word-spacing:-10.115520px;}
.ws1f{word-spacing:-8.801760px;}
.wsa{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:6.528000px;}
.ws17{word-spacing:7.848000px;}
.ws16{word-spacing:14.095200px;}
.ws24{word-spacing:245.160076px;}
.ws25{word-spacing:259.977335px;}
._2e{margin-left:-7.272000px;}
._22{margin-left:-2.454000px;}
._1{margin-left:-1.188000px;}
._2{width:1.404000px;}
._3{width:2.604000px;}
._19{width:4.092000px;}
._a{width:5.292000px;}
._16{width:6.336000px;}
._1b{width:7.380000px;}
._1a{width:8.424000px;}
._13{width:9.468000px;}
._d{width:10.764000px;}
._9{width:12.348000px;}
._e{width:13.668000px;}
._8{width:15.228000px;}
._2f{width:16.392000px;}
._11{width:18.108000px;}
._12{width:19.872000px;}
._2a{width:20.886000px;}
._17{width:21.888000px;}
._f{width:23.076000px;}
._10{width:24.408000px;}
._20{width:25.668000px;}
._23{width:26.748000px;}
._14{width:28.344000px;}
._15{width:29.808000px;}
._33{width:30.810000px;}
._18{width:31.848000px;}
._24{width:32.850000px;}
._27{width:34.704000px;}
._26{width:36.144000px;}
._25{width:37.260000px;}
._1f{width:38.412000px;}
._2b{width:39.708000px;}
._2c{width:41.328000px;}
._b{width:42.516000px;}
._c{width:44.424000px;}
._37{width:47.160000px;}
._38{width:48.408000px;}
._30{width:57.060000px;}
._31{width:58.524000px;}
._28{width:59.802000px;}
._29{width:61.716000px;}
._1d{width:67.944000px;}
._21{width:76.320000px;}
._35{width:85.116000px;}
._1c{width:108.372000px;}
._36{width:124.644000px;}
._7{width:176.206080px;}
._2d{width:179.292000px;}
._5{width:193.949760px;}
._1e{width:195.564000px;}
._39{width:266.331401px;}
._32{width:846.456000px;}
._34{width:848.148000px;}
._0{width:849.485760px;}
._6{width:1245.605760px;}
._4{width:1261.445760px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc4{color:rgb(217,217,217);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fsc{font-size:11.520000px;}
.fs9{font-size:24.480000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fse{font-size:48.985412px;}
.fsf{font-size:49.198931px;}
.fs7{font-size:50.400000px;}
.fs10{font-size:54.720000px;}
.fsb{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fsd{font-size:75.893905px;}
.fs5{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs3{font-size:96.624000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f4{bottom:0.672967px;}
.yb1{bottom:1.440000px;}
.y1ca{bottom:2.145000px;}
.y1ad{bottom:2.160000px;}
.y1ab{bottom:2.505000px;}
.y1f2{bottom:2.938473px;}
.y1f0{bottom:3.155467px;}
.y33{bottom:4.680000px;}
.yaf{bottom:6.480000px;}
.y1d6{bottom:8.625000px;}
.y1f6{bottom:8.744084px;}
.y1d8{bottom:11.865000px;}
.y1de{bottom:11.880000px;}
.y1dc{bottom:11.910000px;}
.y1e2{bottom:12.240000px;}
.y35{bottom:13.320000px;}
.y11f{bottom:14.760000px;}
.y37{bottom:16.920000px;}
.y45{bottom:16.965000px;}
.y4d{bottom:17.265000px;}
.y2d{bottom:17.280000px;}
.y40{bottom:17.310000px;}
.y39{bottom:17.325000px;}
.y1ef{bottom:17.527050px;}
.y122{bottom:17.640000px;}
.y130{bottom:17.670000px;}
.y2b{bottom:20.880000px;}
.y1f7{bottom:21.859461px;}
.y6{bottom:22.530000px;}
.y18d{bottom:26.265000px;}
.y15d{bottom:26.280000px;}
.y160{bottom:26.310000px;}
.y163{bottom:26.325000px;}
.y18f{bottom:26.625000px;}
.y32{bottom:26.640000px;}
.y4a{bottom:26.670000px;}
.y18a{bottom:27.360000px;}
.y1ee{bottom:31.928542px;}
.y9{bottom:33.045000px;}
.y11e{bottom:45.045000px;}
.yb{bottom:54.030000px;}
.y5{bottom:57.450000px;}
.y2{bottom:57.600000px;}
.y1f8{bottom:75.861318px;}
.y1{bottom:77.436000px;}
.y8{bottom:89.205000px;}
.y19b{bottom:111.276000px;}
.y6c{bottom:111.636000px;}
.ye1{bottom:113.796000px;}
.yb9{bottom:114.516000px;}
.y178{bottom:114.876000px;}
.y11a{bottom:116.676000px;}
.yca{bottom:117.396000px;}
.y16a{bottom:121.356000px;}
.ybc{bottom:123.516000px;}
.y217{bottom:125.676000px;}
.y1d4{bottom:128.916000px;}
.y1f9{bottom:129.858688px;}
.yad{bottom:130.356000px;}
.yef{bottom:132.876000px;}
.ya{bottom:136.440000px;}
.y205{bottom:136.476000px;}
.yfd{bottom:137.556000px;}
.y28{bottom:138.636000px;}
.y1c7{bottom:138.996000px;}
.y6b{bottom:144.396000px;}
.ye0{bottom:146.556000px;}
.y83{bottom:147.636000px;}
.yc9{bottom:150.510000px;}
.y177{bottom:150.870000px;}
.y157{bottom:152.310000px;}
.yc{bottom:154.470000px;}
.y169{bottom:155.190000px;}
.ybb{bottom:156.630000px;}
.y119{bottom:160.230000px;}
.y144{bottom:161.310000px;}
.y1d3{bottom:162.030000px;}
.y222{bottom:162.390000px;}
.yac{bottom:163.110000px;}
.y204{bottom:169.590000px;}
.yfc{bottom:170.670000px;}
.y1c6{bottom:171.750000px;}
.y27{bottom:172.470000px;}
.y19a{bottom:177.150000px;}
.yee{bottom:177.870000px;}
.ydf{bottom:179.670000px;}
.y1a9{bottom:180.030000px;}
.y82{bottom:180.390000px;}
.y186{bottom:183.270000px;}
.yc8{bottom:183.630000px;}
.y1fa{bottom:183.860544px;}
.y156{bottom:185.070000px;}
.y22c{bottom:186.510000px;}
.y6a{bottom:189.390000px;}
.y118{bottom:190.875000px;}
.y1d2{bottom:194.835000px;}
.y221{bottom:195.555000px;}
.y176{bottom:195.915000px;}
.yab{bottom:196.275000px;}
.y203{bottom:202.395000px;}
.y29{bottom:203.475000px;}
.y1ec{bottom:203.835000px;}
.y1c5{bottom:204.915000px;}
.y26{bottom:206.355000px;}
.y70{bottom:210.315000px;}
.y1a8{bottom:210.675000px;}
.yed{bottom:211.035000px;}
.yde{bottom:212.475000px;}
.y81{bottom:213.555000px;}
.yc7{bottom:216.435000px;}
.y155{bottom:218.235000px;}
.y22b{bottom:219.315000px;}
.y117{bottom:220.395000px;}
.y4c{bottom:220.410000px;}
.y168{bottom:222.195000px;}
.yba{bottom:222.555000px;}
.y1be{bottom:224.355000px;}
.yd5{bottom:225.435000px;}
.y1d1{bottom:227.955000px;}
.y239{bottom:228.315000px;}
.yaa{bottom:229.035000px;}
.y69{bottom:234.435000px;}
.y202{bottom:235.515000px;}
.yfb{bottom:236.595000px;}
.y1eb{bottom:236.955000px;}
.y1c4{bottom:237.675000px;}
.y1fb{bottom:237.832491px;}
.y143{bottom:239.115000px;}
.y25{bottom:240.555000px;}
.y199{bottom:243.435000px;}
.ydd{bottom:245.595000px;}
.y80{bottom:246.315000px;}
.y185{bottom:249.195000px;}
.yc6{bottom:249.555000px;}
.y154{bottom:250.995000px;}
.y1a7{bottom:252.435000px;}
.y4b{bottom:254.955000px;}
.y6f{bottom:255.315000px;}
.yec{bottom:256.035000px;}
.yd4{bottom:258.555000px;}
.y1bc{bottom:259.635000px;}
.y238{bottom:261.435000px;}
.ya9{bottom:262.155000px;}
.y167{bottom:267.195000px;}
.y68{bottom:267.555000px;}
.y201{bottom:268.275000px;}
.yfa{bottom:269.355000px;}
.y1ea{bottom:269.715000px;}
.y142{bottom:272.235000px;}
.y1d0{bottom:272.955000px;}
.y220{bottom:273.315000px;}
.y24{bottom:276.195000px;}
.ydc{bottom:278.355000px;}
.y7f{bottom:279.435000px;}
.y1c3{bottom:280.875000px;}
.y184{bottom:282.315000px;}
.yd9{bottom:288.435000px;}
.yeb{bottom:288.795000px;}
.y49{bottom:289.515000px;}
.y1bb{bottom:290.235000px;}
.yd3{bottom:291.315000px;}
.y1fc{bottom:291.834348px;}
.y1bd{bottom:293.835000px;}
.yc5{bottom:294.555000px;}
.y175{bottom:294.915000px;}
.ya8{bottom:295.275000px;}
.y153{bottom:295.995000px;}
.y22a{bottom:297.435000px;}
.y166{bottom:299.955000px;}
.y67{bottom:300.315000px;}
.yf9{bottom:302.475000px;}
.y1e9{bottom:302.835000px;}
.y141{bottom:304.995000px;}
.y1cf{bottom:305.715000px;}
.y237{bottom:306.435000px;}
.y198{bottom:309.315000px;}
.y1c2{bottom:311.475000px;}
.y23{bottom:311.835000px;}
.y7e{bottom:312.555000px;}
.y200{bottom:313.275000px;}
.y183{bottom:315.075000px;}
.y21f{bottom:318.345000px;}
.yd8{bottom:321.225000px;}
.ydb{bottom:321.945000px;}
.ycf{bottom:324.465000px;}
.yc4{bottom:327.345000px;}
.y174{bottom:328.065000px;}
.y1ba{bottom:328.785000px;}
.y229{bottom:330.225000px;}
.y48{bottom:333.465000px;}
.yf8{bottom:335.265000px;}
.y1e8{bottom:335.625000px;}
.y1a6{bottom:337.065000px;}
.y140{bottom:338.145000px;}
.y1ce{bottom:338.865000px;}
.y236{bottom:339.225000px;}
.ya7{bottom:339.945000px;}
.y1c1{bottom:340.665000px;}
.y152{bottom:341.025000px;}
.y197{bottom:342.105000px;}
.y7d{bottom:345.345000px;}
.y1fd{bottom:345.836204px;}
.y165{bottom:346.065000px;}
.y22{bottom:347.505000px;}
.y182{bottom:348.225000px;}
.y21e{bottom:351.465000px;}
.yda{bottom:352.545000px;}
.yce{bottom:357.225000px;}
.yc3{bottom:360.465000px;}
.y173{bottom:360.825000px;}
.y228{bottom:363.345000px;}
.y47{bottom:364.065000px;}
.yea{bottom:365.505000px;}
.y66{bottom:366.225000px;}
.yf7{bottom:368.385000px;}
.y1e7{bottom:368.745000px;}
.y1ff{bottom:369.825000px;}
.ya6{bottom:373.065000px;}
.y151{bottom:374.145000px;}
.y196{bottom:375.225000px;}
.y164{bottom:377.745000px;}
.y7c{bottom:378.465000px;}
.y1a5{bottom:379.185000px;}
.y181{bottom:380.985000px;}
.y13f{bottom:383.145000px;}
.y21{bottom:383.505000px;}
.y1cd{bottom:383.865000px;}
.y235{bottom:384.225000px;}
.ycd{bottom:390.345000px;}
.ye9{bottom:391.065000px;}
.yc2{bottom:393.225000px;}
.y172{bottom:393.945000px;}
.y46{bottom:394.665000px;}
.y21d{bottom:396.105000px;}
.y1fe{bottom:398.985000px;}
.y65{bottom:399.345000px;}
.yf6{bottom:401.505000px;}
.y1f1{bottom:405.532940px;}
.ya5{bottom:405.825000px;}
.y150{bottom:406.905000px;}
.y195{bottom:407.985000px;}
.y227{bottom:408.345000px;}
.y7b{bottom:411.225000px;}
.y13e{bottom:415.905000px;}
.y234{bottom:417.345000px;}
.y20{bottom:419.145000px;}
.y1f5{bottom:420.977830px;}
.y1a4{bottom:421.305000px;}
.y162{bottom:421.665000px;}
.ycc{bottom:423.465000px;}
.y180{bottom:425.985000px;}
.yc1{bottom:426.345000px;}
.y171{bottom:426.705000px;}
.y1cc{bottom:428.865000px;}
.y44{bottom:429.225000px;}
.y64{bottom:432.105000px;}
.ye8{bottom:433.545000px;}
.y216{bottom:434.265000px;}
.y1e6{bottom:434.625000px;}
.yd2{bottom:435.345000px;}
.ya4{bottom:438.945000px;}
.y14f{bottom:440.025000px;}
.y194{bottom:441.105000px;}
.y7a{bottom:444.390000px;}
.yf5{bottom:444.750000px;}
.y233{bottom:450.150000px;}
.y116{bottom:453.390000px;}
.y1f{bottom:454.830000px;}
.y97{bottom:456.270000px;}
.yc0{bottom:459.150000px;}
.y13d{bottom:460.950000px;}
.y21c{bottom:462.390000px;}
.y43{bottom:463.470000px;}
.y161{bottom:463.830000px;}
.y63{bottom:465.270000px;}
.ye7{bottom:466.710000px;}
.y1e5{bottom:467.430000px;}
.yd1{bottom:468.150000px;}
.y170{bottom:471.750000px;}
.ya3{bottom:472.110000px;}
.y226{bottom:474.270000px;}
.y79{bottom:477.150000px;}
.yf4{bottom:483.630000px;}
.y1ac{bottom:483.990000px;}
.y14e{bottom:485.070000px;}
.y193{bottom:486.150000px;}
.y96{bottom:489.390000px;}
.y1e{bottom:491.910000px;}
.y109{bottom:494.790000px;}
.y232{bottom:495.150000px;}
.y42{bottom:498.030000px;}
.y6e{bottom:498.390000px;}
.ye6{bottom:499.470000px;}
.y215{bottom:500.190000px;}
.yd0{bottom:501.270000px;}
.ybf{bottom:502.710000px;}
.ya2{bottom:504.870000px;}
.y13c{bottom:505.950000px;}
.y21b{bottom:507.030000px;}
.y62{bottom:510.270000px;}
.y1e4{bottom:512.430000px;}
.y14d{bottom:517.830000px;}
.y225{bottom:519.270000px;}
.y95{bottom:522.150000px;}
.y17f{bottom:525.030000px;}
.y231{bottom:528.270000px;}
.y12b{bottom:528.300000px;}
.y108{bottom:529.350000px;}
.y1d{bottom:530.070000px;}
.yd7{bottom:531.150000px;}
.y41{bottom:532.590000px;}
.ybe{bottom:533.310000px;}
.yb8{bottom:534.390000px;}
.y16f{bottom:537.630000px;}
.ya1{bottom:537.990000px;}
.y21a{bottom:540.150000px;}
.y1cb{bottom:540.510000px;}
.y61{bottom:543.030000px;}
.y11c{bottom:543.780000px;}
.ye5{bottom:544.470000px;}
.ye2{bottom:548.070000px;}
.y15f{bottom:548.430000px;}
.y13b{bottom:550.950000px;}
.y224{bottom:552.030000px;}
.y94{bottom:555.270000px;}
.y1e3{bottom:557.430000px;}
.y17e{bottom:558.150000px;}
.y230{bottom:561.030000px;}
.y192{bottom:563.910000px;}
.y115{bottom:564.270000px;}
.y1c{bottom:565.710000px;}
.y214{bottom:566.070000px;}
.y3f{bottom:567.150000px;}
.y11b{bottom:567.870000px;}
.ya0{bottom:570.780000px;}
.ybd{bottom:571.860000px;}
.y107{bottom:573.300000px;}
.y12a{bottom:574.020000px;}
.y60{bottom:576.180000px;}
.ye4{bottom:577.620000px;}
.y1f3{bottom:582.809924px;}
.y14c{bottom:583.740000px;}
.y1e1{bottom:584.820000px;}
.y223{bottom:585.180000px;}
.y93{bottom:588.060000px;}
.y1a3{bottom:590.220000px;}
.y15e{bottom:590.580000px;}
.y17d{bottom:590.940000px;}
.y114{bottom:597.060000px;}
.y213{bottom:599.220000px;}
.yb7{bottom:600.300000px;}
.y13a{bottom:601.020000px;}
.y1b{bottom:601.740000px;}
.y9f{bottom:603.900000px;}
.y16e{bottom:604.620000px;}
.y22f{bottom:606.060000px;}
.y106{bottom:606.420000px;}
.y129{bottom:607.140000px;}
.y5f{bottom:609.300000px;}
.ye3{bottom:610.380000px;}
.y1e0{bottom:612.540000px;}
.y14b{bottom:616.860000px;}
.y219{bottom:617.940000px;}
.y92{bottom:621.180000px;}
.y17c{bottom:624.780000px;}
.y191{bottom:629.820000px;}
.y113{bottom:630.180000px;}
.y212{bottom:631.980000px;}
.y1a2{bottom:632.700000px;}
.yb6{bottom:633.060000px;}
.y139{bottom:633.780000px;}
.y15c{bottom:634.140000px;}
.y3e{bottom:636.300000px;}
.y9e{bottom:636.660000px;}
.y1a{bottom:637.380000px;}
.y16d{bottom:637.740000px;}
.y105{bottom:639.180000px;}
.y1df{bottom:639.900000px;}
.y128{bottom:640.260000px;}
.y5e{bottom:642.060000px;}
.y218{bottom:651.060000px;}
.y91{bottom:653.940000px;}
.y112{bottom:662.940000px;}
.y211{bottom:665.100000px;}
.yb5{bottom:666.180000px;}
.y138{bottom:666.900000px;}
.y1dd{bottom:667.260000px;}
.y9d{bottom:669.780000px;}
.y3d{bottom:670.500000px;}
.y19{bottom:673.020000px;}
.y1a1{bottom:674.820000px;}
.y5d{bottom:675.180000px;}
.y1c0{bottom:679.860000px;}
.y16c{bottom:681.300000px;}
.y22e{bottom:683.820000px;}
.y1b9{bottom:685.980000px;}
.yd6{bottom:687.060000px;}
.y1db{bottom:694.620000px;}
.y14a{bottom:695.730000px;}
.y111{bottom:696.090000px;}
.y210{bottom:698.250000px;}
.y90{bottom:698.970000px;}
.y137{bottom:699.690000px;}
.y9c{bottom:702.570000px;}
.y3c{bottom:705.090000px;}
.y104{bottom:706.170000px;}
.y1c9{bottom:706.185000px;}
.y6d{bottom:707.970000px;}
.y18{bottom:708.330000px;}
.y17b{bottom:714.810000px;}
.y1a0{bottom:716.970000px;}
.y1b8{bottom:719.130000px;}
.y5c{bottom:719.850000px;}
.y16b{bottom:720.930000px;}
.y1da{bottom:722.025000px;}
.y110{bottom:728.850000px;}
.y20f{bottom:731.010000px;}
.y8f{bottom:732.090000px;}
.y136{bottom:732.810000px;}
.y103{bottom:738.930000px;}
.y3b{bottom:739.650000px;}
.y15b{bottom:740.370000px;}
.y78{bottom:741.090000px;}
.yb4{bottom:743.970000px;}
.y17{bottom:745.770000px;}
.y9b{bottom:747.570000px;}
.y1d9{bottom:749.385000px;}
.y1b7{bottom:751.890000px;}
.y4{bottom:752.400000px;}
.y5b{bottom:752.970000px;}
.y17a{bottom:758.010000px;}
.y19f{bottom:759.090000px;}
.y149{bottom:761.610000px;}
.y10f{bottom:761.970000px;}
.y20e{bottom:764.130000px;}
.y8e{bottom:764.850000px;}
.y135{bottom:765.570000px;}
.y102{bottom:772.050000px;}
.y15a{bottom:773.850000px;}
.y3a{bottom:774.210000px;}
.yf3{bottom:776.010000px;}
.y1d7{bottom:776.745000px;}
.yb3{bottom:777.090000px;}
.y16{bottom:781.770000px;}
.y1b6{bottom:785.010000px;}
.y1ed{bottom:785.163599px;}
.y5a{bottom:786.090000px;}
.y179{bottom:787.890000px;}
.y9a{bottom:791.130000px;}
.y22d{bottom:794.730000px;}
.y20d{bottom:796.890000px;}
.y8d{bottom:797.970000px;}
.y134{bottom:798.690000px;}
.y19e{bottom:801.570000px;}
.y127{bottom:805.170000px;}
.y1d5{bottom:805.545000px;}
.y101{bottom:805.890000px;}
.y148{bottom:806.610000px;}
.y10e{bottom:806.970000px;}
.y38{bottom:808.770000px;}
.yb2{bottom:809.850000px;}
.y1b5{bottom:817.770000px;}
.y59{bottom:818.850000px;}
.y190{bottom:821.070000px;}
.y99{bottom:821.775000px;}
.y15{bottom:825.015000px;}
.y20c{bottom:830.055000px;}
.ycb{bottom:830.775000px;}
.y133{bottom:831.855000px;}
.y126{bottom:837.975000px;}
.y100{bottom:839.055000px;}
.y10d{bottom:839.775000px;}
.yf2{bottom:841.935000px;}
.y8c{bottom:843.015000px;}
.y36{bottom:843.375000px;}
.y19d{bottom:843.735000px;}
.y1b4{bottom:850.935000px;}
.y147{bottom:851.655000px;}
.y77{bottom:852.015000px;}
.y14{bottom:858.855000px;}
.y20b{bottom:862.815000px;}
.y18e{bottom:863.190000px;}
.y98{bottom:863.535000px;}
.y58{bottom:863.895000px;}
.y132{bottom:864.615000px;}
.y1aa{bottom:867.510000px;}
.y125{bottom:871.095000px;}
.yff{bottom:871.815000px;}
.y10c{bottom:872.895000px;}
.yf1{bottom:875.055000px;}
.y8b{bottom:875.775000px;}
.y34{bottom:877.575000px;}
.y1b3{bottom:883.695000px;}
.y76{bottom:884.775000px;}
.y19c{bottom:885.855000px;}
.y13{bottom:893.055000px;}
.y146{bottom:894.855000px;}
.y20a{bottom:895.935000px;}
.y57{bottom:897.015000px;}
.y131{bottom:897.735000px;}
.y124{bottom:903.855000px;}
.yfe{bottom:904.575000px;}
.y10b{bottom:905.655000px;}
.y18c{bottom:905.670000px;}
.yf0{bottom:907.815000px;}
.y31{bottom:908.175000px;}
.y8a{bottom:908.895000px;}
.y1b2{bottom:916.815000px;}
.y75{bottom:917.895000px;}
.y7{bottom:924.120000px;}
.y209{bottom:928.695000px;}
.y12{bottom:929.055000px;}
.y56{bottom:929.775000px;}
.y12f{bottom:930.495000px;}
.y145{bottom:934.095000px;}
.y123{bottom:936.975000px;}
.y10a{bottom:938.775000px;}
.y89{bottom:941.655000px;}
.y18b{bottom:947.805000px;}
.y1b1{bottom:949.965000px;}
.y74{bottom:950.685000px;}
.y30{bottom:952.125000px;}
.y208{bottom:961.845000px;}
.y55{bottom:962.925000px;}
.y12e{bottom:963.645000px;}
.y11{bottom:964.725000px;}
.y121{bottom:969.765000px;}
.y159{bottom:971.925000px;}
.y88{bottom:974.805000px;}
.y1b0{bottom:982.725000px;}
.y73{bottom:983.805000px;}
.y2f{bottom:986.685000px;}
.y189{bottom:989.925000px;}
.y207{bottom:994.605000px;}
.y54{bottom:995.685000px;}
.y12d{bottom:996.405000px;}
.y10{bottom:1000.365000px;}
.y120{bottom:1002.885000px;}
.y158{bottom:1004.685000px;}
.y87{bottom:1007.925000px;}
.y72{bottom:1016.565000px;}
.y2e{bottom:1021.245000px;}
.y1af{bottom:1027.725000px;}
.y53{bottom:1028.805000px;}
.y12c{bottom:1030.245000px;}
.y188{bottom:1034.565000px;}
.yf{bottom:1036.005000px;}
.y11d{bottom:1036.365000px;}
.y86{bottom:1040.685000px;}
.y71{bottom:1049.685000px;}
.y2c{bottom:1055.805000px;}
.y206{bottom:1060.485000px;}
.y52{bottom:1061.565000px;}
.ye{bottom:1071.645000px;}
.y1ae{bottom:1072.725000px;}
.y85{bottom:1073.850000px;}
.yae{bottom:1082.490000px;}
.yb0{bottom:1086.090000px;}
.y2a{bottom:1090.410000px;}
.y51{bottom:1094.730000px;}
.y187{bottom:1105.530000px;}
.y84{bottom:1106.610000px;}
.yd{bottom:1106.970000px;}
.y1c8{bottom:1110.210000px;}
.y1bf{bottom:1113.810000px;}
.y4f{bottom:1139.370000px;}
.y50{bottom:1139.730000px;}
.y3{bottom:1140.810000px;}
.y4e{bottom:1194.450000px;}
.h20{height:2.375156px;}
.h3b{height:14.405530px;}
.h30{height:17.985000px;}
.h31{height:18.036000px;}
.h2f{height:18.345000px;}
.h19{height:18.705000px;}
.h27{height:20.188828px;}
.h17{height:23.745000px;}
.h34{height:27.345000px;}
.h36{height:27.360000px;}
.h38{height:27.390000px;}
.h35{height:27.396000px;}
.h37{height:27.720000px;}
.h32{height:29.541000px;}
.h10{height:30.600000px;}
.h22{height:32.760000px;}
.h24{height:32.796000px;}
.h23{height:33.120000px;}
.h25{height:33.156000px;}
.h11{height:34.200000px;}
.h12{height:34.236000px;}
.h13{height:34.545000px;}
.hd{height:34.560000px;}
.hc{height:34.596000px;}
.h3c{height:37.303304px;}
.hb{height:38.145000px;}
.h2b{height:42.105000px;}
.h28{height:42.120000px;}
.h29{height:42.150000px;}
.h2a{height:42.465000px;}
.h2e{height:43.185000px;}
.h39{height:43.360006px;}
.hf{height:43.956000px;}
.h2c{height:49.878281px;}
.h14{height:50.520937px;}
.h3a{height:51.090254px;}
.h3d{height:51.312948px;}
.h2d{height:52.695866px;}
.h15{height:53.302500px;}
.h2{height:54.628594px;}
.h33{height:54.914062px;}
.h3f{height:56.964375px;}
.h16{height:57.937500px;}
.h9{height:59.378906px;}
.h21{height:60.516000px;}
.h26{height:67.207500px;}
.ha{height:68.879531px;}
.h8{height:71.640000px;}
.h1a{height:72.310078px;}
.h18{height:74.004654px;}
.h1e{height:74.953125px;}
.he{height:75.093750px;}
.h6{height:79.567734px;}
.h7{height:79.686492px;}
.h3{height:83.160000px;}
.h4{height:89.068359px;}
.h1b{height:91.687500px;}
.h5{height:111.960000px;}
.h1d{height:139.207500px;}
.h1c{height:193.927500px;}
.h3e{height:360.605585px;}
.h1f{height:543.765000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:14.824596px;}
.w1c{width:34.545000px;}
.w1a{width:34.905000px;}
.w18{width:34.950000px;}
.w1b{width:35.265000px;}
.w1d{width:35.625000px;}
.w19{width:35.670000px;}
.w7{width:36.022500px;}
.w9{width:36.382500px;}
.w8{width:36.720000px;}
.w22{width:36.827553px;}
.wa{width:37.065000px;}
.w6{width:57.276000px;}
.wc{width:87.156000px;}
.w10{width:95.076000px;}
.wd{width:95.112000px;}
.we{width:95.436000px;}
.w1e{width:96.870000px;}
.w13{width:106.581000px;}
.w1f{width:122.472000px;}
.w20{width:122.781000px;}
.w16{width:128.592000px;}
.w15{width:128.910000px;}
.w17{width:148.320000px;}
.w14{width:148.365000px;}
.w21{width:183.409294px;}
.w3{width:254.160000px;}
.w12{width:270.465000px;}
.w4{width:313.920000px;}
.wb{width:324.135000px;}
.wf{width:324.495000px;}
.w11{width:377.070000px;}
.w24{width:558.428805px;}
.w5{width:606.135000px;}
.w2{width:659.160000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7d{left:5.410206px;}
.x18{left:7.920000px;}
.x7e{left:9.378492px;}
.x29{left:10.822500px;}
.x7c{left:11.867457px;}
.x5c{left:12.945000px;}
.x4{left:15.555000px;}
.x7{left:17.430000px;}
.x45{left:19.080000px;}
.x3e{left:20.190000px;}
.x8{left:21.750000px;}
.x7a{left:23.371129px;}
.x63{left:24.465000px;}
.x5{left:25.995000px;}
.x3f{left:27.390000px;}
.x41{left:28.479000px;}
.x48{left:29.550000px;}
.x1e{left:30.645000px;}
.x49{left:33.150000px;}
.x53{left:34.545000px;}
.x75{left:36.405000px;}
.x42{left:37.800000px;}
.x1a{left:40.005000px;}
.x5d{left:41.070000px;}
.x43{left:43.590000px;}
.x60{left:44.625000px;}
.x61{left:45.720000px;}
.x5f{left:48.585000px;}
.x1b{left:50.439000px;}
.x1f{left:52.959000px;}
.x77{left:56.910000px;}
.x62{left:59.385000px;}
.x4e{left:61.605000px;}
.xa{left:80.430000px;}
.x21{left:84.639000px;}
.x1c{left:92.919000px;}
.x20{left:95.079000px;}
.x51{left:96.525000px;}
.x52{left:98.685000px;}
.x50{left:100.845000px;}
.x4d{left:101.925000px;}
.x17{left:119.556000px;}
.x2{left:127.476000px;}
.x11{left:132.192000px;}
.x69{left:133.632000px;}
.x3{left:135.000000px;}
.x27{left:136.152000px;}
.x1d{left:137.589000px;}
.x56{left:140.112000px;}
.x12{left:142.632000px;}
.x73{left:145.872000px;}
.x80{left:148.752000px;}
.x2f{left:149.832000px;}
.x2c{left:151.275000px;}
.x3c{left:161.695500px;}
.x59{left:169.995000px;}
.x30{left:172.515000px;}
.x3b{left:178.995000px;}
.x22{left:180.435000px;}
.x24{left:181.515000px;}
.x6c{left:186.915000px;}
.x54{left:194.115000px;}
.x58{left:202.755000px;}
.x38{left:207.435000px;}
.x25{left:208.515000px;}
.x3d{left:214.635000px;}
.x64{left:216.795000px;}
.x15{left:224.025000px;}
.x39{left:234.465000px;}
.x26{left:235.545000px;}
.x37{left:241.305000px;}
.x71{left:242.745000px;}
.x7f{left:257.145000px;}
.x4c{left:258.225000px;}
.x6e{left:259.305000px;}
.x9{left:265.320000px;}
.x6d{left:266.865000px;}
.x67{left:271.905000px;}
.x74{left:275.505000px;}
.x66{left:279.465000px;}
.x28{left:284.145000px;}
.x4b{left:287.745000px;}
.xb{left:292.425000px;}
.x6a{left:299.625000px;}
.x40{left:309.750000px;}
.x33{left:312.630000px;}
.xf{left:315.870000px;}
.x14{left:316.950000px;}
.xe{left:324.150000px;}
.x70{left:327.030000px;}
.x65{left:332.430000px;}
.x79{left:336.923804px;}
.x6{left:346.320000px;}
.xd{left:348.630000px;}
.x16{left:360.870000px;}
.x35{left:362.670000px;}
.x2d{left:366.990000px;}
.x13{left:368.430000px;}
.x76{left:372.390000px;}
.x10{left:375.990000px;}
.x32{left:387.510000px;}
.x7b{left:410.206414px;}
.x2a{left:434.340000px;}
.x2e{left:438.300000px;}
.x23{left:442.260000px;}
.xc{left:444.420000px;}
.x1{left:446.580000px;}
.x44{left:451.980000px;}
.x31{left:480.825000px;}
.x5a{left:483.330000px;}
.x5b{left:493.410000px;}
.x78{left:494.865000px;}
.x34{left:506.730000px;}
.x4f{left:528.705000px;}
.x46{left:547.050000px;}
.x5e{left:575.550000px;}
.x4a{left:599.655000px;}
.x36{left:603.975000px;}
.x47{left:642.135000px;}
.x3a{left:685.365000px;}
.x6f{left:708.765000px;}
.x68{left:712.365000px;}
.x19{left:725.685000px;}
.x2b{left:728.565000px;}
.x6b{left:732.165000px;}
.x55{left:735.765000px;}
.x57{left:739.005000px;}
.x72{left:748.050000px;}
@media print{
.v4{vertical-align:-12.800000pt;}
.v2{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.680000pt;}
.v5{vertical-align:12.800000pt;}
.v7{vertical-align:23.040000pt;}
.v1{vertical-align:29.440000pt;}
.v9{vertical-align:42.240000pt;}
.v8{vertical-align:48.640000pt;}
.v6{vertical-align:55.040000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls3a{letter-spacing:-0.565333pt;}
.ls31{letter-spacing:-0.554667pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls42{letter-spacing:-0.453563pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.412267pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.361067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.064000pt;}
.ls40{letter-spacing:0.079467pt;}
.lsc{letter-spacing:0.106667pt;}
.ls39{letter-spacing:0.117760pt;}
.ls7{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.344320pt;}
.ls3e{letter-spacing:0.353067pt;}
.ls2f{letter-spacing:0.363733pt;}
.ls34{letter-spacing:0.380160pt;}
.ls1{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.455467pt;}
.ls33{letter-spacing:0.486827pt;}
.ls23{letter-spacing:0.504320pt;}
.ls6{letter-spacing:0.512000pt;}
.ls3d{letter-spacing:0.570880pt;}
.lse{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.704000pt;}
.ls41{letter-spacing:0.773120pt;}
.ls44{letter-spacing:0.810667pt;}
.ls1a{letter-spacing:0.832000pt;}
.ls35{letter-spacing:0.864000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls38{letter-spacing:0.954880pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls3c{letter-spacing:1.061547pt;}
.ls14{letter-spacing:1.344000pt;}
.ls37{letter-spacing:1.408000pt;}
.ls18{letter-spacing:1.728000pt;}
.ls45{letter-spacing:1.792000pt;}
.ls2d{letter-spacing:1.856000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls2e{letter-spacing:2.053120pt;}
.ls29{letter-spacing:2.220800pt;}
.ls1d{letter-spacing:5.893120pt;}
.ls36{letter-spacing:6.016000pt;}
.ls3f{letter-spacing:8.576000pt;}
.ls3{letter-spacing:9.088000pt;}
.ls1f{letter-spacing:9.856000pt;}
.ls28{letter-spacing:11.520000pt;}
.ls1e{letter-spacing:12.293120pt;}
.ls3b{letter-spacing:12.416000pt;}
.ls2a{letter-spacing:14.720000pt;}
.ls27{letter-spacing:17.472000pt;}
.ls32{letter-spacing:17.536000pt;}
.ls25{letter-spacing:17.580800pt;}
.ls26{letter-spacing:21.420800pt;}
.ls22{letter-spacing:22.656000pt;}
.ls10{letter-spacing:38.528000pt;}
.lsb{letter-spacing:39.808000pt;}
.ls2c{letter-spacing:48.874667pt;}
.ls43{letter-spacing:121.738667pt;}
.ls1c{letter-spacing:173.834667pt;}
.ws11{word-spacing:-64.000000pt;}
.ws1a{word-spacing:-16.320000pt;}
.ws19{word-spacing:-15.424000pt;}
.ws4{word-spacing:-15.360000pt;}
.ws1e{word-spacing:-15.296000pt;}
.ws7{word-spacing:-15.104000pt;}
.ws9{word-spacing:-15.040000pt;}
.ws20{word-spacing:-14.976000pt;}
.ws2{word-spacing:-14.848000pt;}
.wsb{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.656000pt;}
.ws5{word-spacing:-14.592000pt;}
.wsf{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws6{word-spacing:-14.272000pt;}
.ws8{word-spacing:-14.144000pt;}
.ws14{word-spacing:-14.080000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws13{word-spacing:-13.952000pt;}
.wsc{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.762347pt;}
.ws1b{word-spacing:-13.670613pt;}
.ws21{word-spacing:-13.659947pt;}
.ws22{word-spacing:-13.386347pt;}
.ws1d{word-spacing:-13.306880pt;}
.ws12{word-spacing:-12.894613pt;}
.ws23{word-spacing:-12.104839pt;}
.ws18{word-spacing:-9.856000pt;}
.ws10{word-spacing:-9.546240pt;}
.ws1c{word-spacing:-8.991573pt;}
.ws1f{word-spacing:-7.823787pt;}
.wsa{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:5.802667pt;}
.ws17{word-spacing:6.976000pt;}
.ws16{word-spacing:12.529067pt;}
.ws24{word-spacing:217.920068pt;}
.ws25{word-spacing:231.090964pt;}
._2e{margin-left:-6.464000pt;}
._22{margin-left:-2.181333pt;}
._1{margin-left:-1.056000pt;}
._2{width:1.248000pt;}
._3{width:2.314667pt;}
._19{width:3.637333pt;}
._a{width:4.704000pt;}
._16{width:5.632000pt;}
._1b{width:6.560000pt;}
._1a{width:7.488000pt;}
._13{width:8.416000pt;}
._d{width:9.568000pt;}
._9{width:10.976000pt;}
._e{width:12.149333pt;}
._8{width:13.536000pt;}
._2f{width:14.570667pt;}
._11{width:16.096000pt;}
._12{width:17.664000pt;}
._2a{width:18.565333pt;}
._17{width:19.456000pt;}
._f{width:20.512000pt;}
._10{width:21.696000pt;}
._20{width:22.816000pt;}
._23{width:23.776000pt;}
._14{width:25.194667pt;}
._15{width:26.496000pt;}
._33{width:27.386667pt;}
._18{width:28.309333pt;}
._24{width:29.200000pt;}
._27{width:30.848000pt;}
._26{width:32.128000pt;}
._25{width:33.120000pt;}
._1f{width:34.144000pt;}
._2b{width:35.296000pt;}
._2c{width:36.736000pt;}
._b{width:37.792000pt;}
._c{width:39.488000pt;}
._37{width:41.920000pt;}
._38{width:43.029333pt;}
._30{width:50.720000pt;}
._31{width:52.021333pt;}
._28{width:53.157333pt;}
._29{width:54.858667pt;}
._1d{width:60.394667pt;}
._21{width:67.840000pt;}
._35{width:75.658667pt;}
._1c{width:96.330667pt;}
._36{width:110.794667pt;}
._7{width:156.627627pt;}
._2d{width:159.370667pt;}
._5{width:172.399787pt;}
._1e{width:173.834667pt;}
._39{width:236.739024pt;}
._32{width:752.405333pt;}
._34{width:753.909333pt;}
._0{width:755.098453pt;}
._6{width:1107.205120pt;}
._4{width:1121.285120pt;}
.fs8{font-size:2.560000pt;}
.fsc{font-size:10.240000pt;}
.fs9{font-size:21.760000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fse{font-size:43.542588pt;}
.fsf{font-size:43.732383pt;}
.fs7{font-size:44.800000pt;}
.fs10{font-size:48.640000pt;}
.fsb{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fsd{font-size:67.461249pt;}
.fs5{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs3{font-size:85.888000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f4{bottom:0.598193pt;}
.yb1{bottom:1.280000pt;}
.y1ca{bottom:1.906667pt;}
.y1ad{bottom:1.920000pt;}
.y1ab{bottom:2.226667pt;}
.y1f2{bottom:2.611976pt;}
.y1f0{bottom:2.804860pt;}
.y33{bottom:4.160000pt;}
.yaf{bottom:5.760000pt;}
.y1d6{bottom:7.666667pt;}
.y1f6{bottom:7.772519pt;}
.y1d8{bottom:10.546667pt;}
.y1de{bottom:10.560000pt;}
.y1dc{bottom:10.586667pt;}
.y1e2{bottom:10.880000pt;}
.y35{bottom:11.840000pt;}
.y11f{bottom:13.120000pt;}
.y37{bottom:15.040000pt;}
.y45{bottom:15.080000pt;}
.y4d{bottom:15.346667pt;}
.y2d{bottom:15.360000pt;}
.y40{bottom:15.386667pt;}
.y39{bottom:15.400000pt;}
.y1ef{bottom:15.579600pt;}
.y122{bottom:15.680000pt;}
.y130{bottom:15.706667pt;}
.y2b{bottom:18.560000pt;}
.y1f7{bottom:19.430632pt;}
.y6{bottom:20.026667pt;}
.y18d{bottom:23.346667pt;}
.y15d{bottom:23.360000pt;}
.y160{bottom:23.386667pt;}
.y163{bottom:23.400000pt;}
.y18f{bottom:23.666667pt;}
.y32{bottom:23.680000pt;}
.y4a{bottom:23.706667pt;}
.y18a{bottom:24.320000pt;}
.y1ee{bottom:28.380926pt;}
.y9{bottom:29.373333pt;}
.y11e{bottom:40.040000pt;}
.yb{bottom:48.026667pt;}
.y5{bottom:51.066667pt;}
.y2{bottom:51.200000pt;}
.y1f8{bottom:67.432282pt;}
.y1{bottom:68.832000pt;}
.y8{bottom:79.293333pt;}
.y19b{bottom:98.912000pt;}
.y6c{bottom:99.232000pt;}
.ye1{bottom:101.152000pt;}
.yb9{bottom:101.792000pt;}
.y178{bottom:102.112000pt;}
.y11a{bottom:103.712000pt;}
.yca{bottom:104.352000pt;}
.y16a{bottom:107.872000pt;}
.ybc{bottom:109.792000pt;}
.y217{bottom:111.712000pt;}
.y1d4{bottom:114.592000pt;}
.y1f9{bottom:115.429945pt;}
.yad{bottom:115.872000pt;}
.yef{bottom:118.112000pt;}
.ya{bottom:121.280000pt;}
.y205{bottom:121.312000pt;}
.yfd{bottom:122.272000pt;}
.y28{bottom:123.232000pt;}
.y1c7{bottom:123.552000pt;}
.y6b{bottom:128.352000pt;}
.ye0{bottom:130.272000pt;}
.y83{bottom:131.232000pt;}
.yc9{bottom:133.786667pt;}
.y177{bottom:134.106667pt;}
.y157{bottom:135.386667pt;}
.yc{bottom:137.306667pt;}
.y169{bottom:137.946667pt;}
.ybb{bottom:139.226667pt;}
.y119{bottom:142.426667pt;}
.y144{bottom:143.386667pt;}
.y1d3{bottom:144.026667pt;}
.y222{bottom:144.346667pt;}
.yac{bottom:144.986667pt;}
.y204{bottom:150.746667pt;}
.yfc{bottom:151.706667pt;}
.y1c6{bottom:152.666667pt;}
.y27{bottom:153.306667pt;}
.y19a{bottom:157.466667pt;}
.yee{bottom:158.106667pt;}
.ydf{bottom:159.706667pt;}
.y1a9{bottom:160.026667pt;}
.y82{bottom:160.346667pt;}
.y186{bottom:162.906667pt;}
.yc8{bottom:163.226667pt;}
.y1fa{bottom:163.431595pt;}
.y156{bottom:164.506667pt;}
.y22c{bottom:165.786667pt;}
.y6a{bottom:168.346667pt;}
.y118{bottom:169.666667pt;}
.y1d2{bottom:173.186667pt;}
.y221{bottom:173.826667pt;}
.y176{bottom:174.146667pt;}
.yab{bottom:174.466667pt;}
.y203{bottom:179.906667pt;}
.y29{bottom:180.866667pt;}
.y1ec{bottom:181.186667pt;}
.y1c5{bottom:182.146667pt;}
.y26{bottom:183.426667pt;}
.y70{bottom:186.946667pt;}
.y1a8{bottom:187.266667pt;}
.yed{bottom:187.586667pt;}
.yde{bottom:188.866667pt;}
.y81{bottom:189.826667pt;}
.yc7{bottom:192.386667pt;}
.y155{bottom:193.986667pt;}
.y22b{bottom:194.946667pt;}
.y117{bottom:195.906667pt;}
.y4c{bottom:195.920000pt;}
.y168{bottom:197.506667pt;}
.yba{bottom:197.826667pt;}
.y1be{bottom:199.426667pt;}
.yd5{bottom:200.386667pt;}
.y1d1{bottom:202.626667pt;}
.y239{bottom:202.946667pt;}
.yaa{bottom:203.586667pt;}
.y69{bottom:208.386667pt;}
.y202{bottom:209.346667pt;}
.yfb{bottom:210.306667pt;}
.y1eb{bottom:210.626667pt;}
.y1c4{bottom:211.266667pt;}
.y1fb{bottom:211.406659pt;}
.y143{bottom:212.546667pt;}
.y25{bottom:213.826667pt;}
.y199{bottom:216.386667pt;}
.ydd{bottom:218.306667pt;}
.y80{bottom:218.946667pt;}
.y185{bottom:221.506667pt;}
.yc6{bottom:221.826667pt;}
.y154{bottom:223.106667pt;}
.y1a7{bottom:224.386667pt;}
.y4b{bottom:226.626667pt;}
.y6f{bottom:226.946667pt;}
.yec{bottom:227.586667pt;}
.yd4{bottom:229.826667pt;}
.y1bc{bottom:230.786667pt;}
.y238{bottom:232.386667pt;}
.ya9{bottom:233.026667pt;}
.y167{bottom:237.506667pt;}
.y68{bottom:237.826667pt;}
.y201{bottom:238.466667pt;}
.yfa{bottom:239.426667pt;}
.y1ea{bottom:239.746667pt;}
.y142{bottom:241.986667pt;}
.y1d0{bottom:242.626667pt;}
.y220{bottom:242.946667pt;}
.y24{bottom:245.506667pt;}
.ydc{bottom:247.426667pt;}
.y7f{bottom:248.386667pt;}
.y1c3{bottom:249.666667pt;}
.y184{bottom:250.946667pt;}
.yd9{bottom:256.386667pt;}
.yeb{bottom:256.706667pt;}
.y49{bottom:257.346667pt;}
.y1bb{bottom:257.986667pt;}
.yd3{bottom:258.946667pt;}
.y1fc{bottom:259.408309pt;}
.y1bd{bottom:261.186667pt;}
.yc5{bottom:261.826667pt;}
.y175{bottom:262.146667pt;}
.ya8{bottom:262.466667pt;}
.y153{bottom:263.106667pt;}
.y22a{bottom:264.386667pt;}
.y166{bottom:266.626667pt;}
.y67{bottom:266.946667pt;}
.yf9{bottom:268.866667pt;}
.y1e9{bottom:269.186667pt;}
.y141{bottom:271.106667pt;}
.y1cf{bottom:271.746667pt;}
.y237{bottom:272.386667pt;}
.y198{bottom:274.946667pt;}
.y1c2{bottom:276.866667pt;}
.y23{bottom:277.186667pt;}
.y7e{bottom:277.826667pt;}
.y200{bottom:278.466667pt;}
.y183{bottom:280.066667pt;}
.y21f{bottom:282.973333pt;}
.yd8{bottom:285.533333pt;}
.ydb{bottom:286.173333pt;}
.ycf{bottom:288.413333pt;}
.yc4{bottom:290.973333pt;}
.y174{bottom:291.613333pt;}
.y1ba{bottom:292.253333pt;}
.y229{bottom:293.533333pt;}
.y48{bottom:296.413333pt;}
.yf8{bottom:298.013333pt;}
.y1e8{bottom:298.333333pt;}
.y1a6{bottom:299.613333pt;}
.y140{bottom:300.573333pt;}
.y1ce{bottom:301.213333pt;}
.y236{bottom:301.533333pt;}
.ya7{bottom:302.173333pt;}
.y1c1{bottom:302.813333pt;}
.y152{bottom:303.133333pt;}
.y197{bottom:304.093333pt;}
.y7d{bottom:306.973333pt;}
.y1fd{bottom:307.409960pt;}
.y165{bottom:307.613333pt;}
.y22{bottom:308.893333pt;}
.y182{bottom:309.533333pt;}
.y21e{bottom:312.413333pt;}
.yda{bottom:313.373333pt;}
.yce{bottom:317.533333pt;}
.yc3{bottom:320.413333pt;}
.y173{bottom:320.733333pt;}
.y228{bottom:322.973333pt;}
.y47{bottom:323.613333pt;}
.yea{bottom:324.893333pt;}
.y66{bottom:325.533333pt;}
.yf7{bottom:327.453333pt;}
.y1e7{bottom:327.773333pt;}
.y1ff{bottom:328.733333pt;}
.ya6{bottom:331.613333pt;}
.y151{bottom:332.573333pt;}
.y196{bottom:333.533333pt;}
.y164{bottom:335.773333pt;}
.y7c{bottom:336.413333pt;}
.y1a5{bottom:337.053333pt;}
.y181{bottom:338.653333pt;}
.y13f{bottom:340.573333pt;}
.y21{bottom:340.893333pt;}
.y1cd{bottom:341.213333pt;}
.y235{bottom:341.533333pt;}
.ycd{bottom:346.973333pt;}
.ye9{bottom:347.613333pt;}
.yc2{bottom:349.533333pt;}
.y172{bottom:350.173333pt;}
.y46{bottom:350.813333pt;}
.y21d{bottom:352.093333pt;}
.y1fe{bottom:354.653333pt;}
.y65{bottom:354.973333pt;}
.yf6{bottom:356.893333pt;}
.y1f1{bottom:360.473725pt;}
.ya5{bottom:360.733333pt;}
.y150{bottom:361.693333pt;}
.y195{bottom:362.653333pt;}
.y227{bottom:362.973333pt;}
.y7b{bottom:365.533333pt;}
.y13e{bottom:369.693333pt;}
.y234{bottom:370.973333pt;}
.y20{bottom:372.573333pt;}
.y1f5{bottom:374.202516pt;}
.y1a4{bottom:374.493333pt;}
.y162{bottom:374.813333pt;}
.ycc{bottom:376.413333pt;}
.y180{bottom:378.653333pt;}
.yc1{bottom:378.973333pt;}
.y171{bottom:379.293333pt;}
.y1cc{bottom:381.213333pt;}
.y44{bottom:381.533333pt;}
.y64{bottom:384.093333pt;}
.ye8{bottom:385.373333pt;}
.y216{bottom:386.013333pt;}
.y1e6{bottom:386.333333pt;}
.yd2{bottom:386.973333pt;}
.ya4{bottom:390.173333pt;}
.y14f{bottom:391.133333pt;}
.y194{bottom:392.093333pt;}
.y7a{bottom:395.013333pt;}
.yf5{bottom:395.333333pt;}
.y233{bottom:400.133333pt;}
.y116{bottom:403.013333pt;}
.y1f{bottom:404.293333pt;}
.y97{bottom:405.573333pt;}
.yc0{bottom:408.133333pt;}
.y13d{bottom:409.733333pt;}
.y21c{bottom:411.013333pt;}
.y43{bottom:411.973333pt;}
.y161{bottom:412.293333pt;}
.y63{bottom:413.573333pt;}
.ye7{bottom:414.853333pt;}
.y1e5{bottom:415.493333pt;}
.yd1{bottom:416.133333pt;}
.y170{bottom:419.333333pt;}
.ya3{bottom:419.653333pt;}
.y226{bottom:421.573333pt;}
.y79{bottom:424.133333pt;}
.yf4{bottom:429.893333pt;}
.y1ac{bottom:430.213333pt;}
.y14e{bottom:431.173333pt;}
.y193{bottom:432.133333pt;}
.y96{bottom:435.013333pt;}
.y1e{bottom:437.253333pt;}
.y109{bottom:439.813333pt;}
.y232{bottom:440.133333pt;}
.y42{bottom:442.693333pt;}
.y6e{bottom:443.013333pt;}
.ye6{bottom:443.973333pt;}
.y215{bottom:444.613333pt;}
.yd0{bottom:445.573333pt;}
.ybf{bottom:446.853333pt;}
.ya2{bottom:448.773333pt;}
.y13c{bottom:449.733333pt;}
.y21b{bottom:450.693333pt;}
.y62{bottom:453.573333pt;}
.y1e4{bottom:455.493333pt;}
.y14d{bottom:460.293333pt;}
.y225{bottom:461.573333pt;}
.y95{bottom:464.133333pt;}
.y17f{bottom:466.693333pt;}
.y231{bottom:469.573333pt;}
.y12b{bottom:469.600000pt;}
.y108{bottom:470.533333pt;}
.y1d{bottom:471.173333pt;}
.yd7{bottom:472.133333pt;}
.y41{bottom:473.413333pt;}
.ybe{bottom:474.053333pt;}
.yb8{bottom:475.013333pt;}
.y16f{bottom:477.893333pt;}
.ya1{bottom:478.213333pt;}
.y21a{bottom:480.133333pt;}
.y1cb{bottom:480.453333pt;}
.y61{bottom:482.693333pt;}
.y11c{bottom:483.360000pt;}
.ye5{bottom:483.973333pt;}
.ye2{bottom:487.173333pt;}
.y15f{bottom:487.493333pt;}
.y13b{bottom:489.733333pt;}
.y224{bottom:490.693333pt;}
.y94{bottom:493.573333pt;}
.y1e3{bottom:495.493333pt;}
.y17e{bottom:496.133333pt;}
.y230{bottom:498.693333pt;}
.y192{bottom:501.253333pt;}
.y115{bottom:501.573333pt;}
.y1c{bottom:502.853333pt;}
.y214{bottom:503.173333pt;}
.y3f{bottom:504.133333pt;}
.y11b{bottom:504.773333pt;}
.ya0{bottom:507.360000pt;}
.ybd{bottom:508.320000pt;}
.y107{bottom:509.600000pt;}
.y12a{bottom:510.240000pt;}
.y60{bottom:512.160000pt;}
.ye4{bottom:513.440000pt;}
.y1f3{bottom:518.053266pt;}
.y14c{bottom:518.880000pt;}
.y1e1{bottom:519.840000pt;}
.y223{bottom:520.160000pt;}
.y93{bottom:522.720000pt;}
.y1a3{bottom:524.640000pt;}
.y15e{bottom:524.960000pt;}
.y17d{bottom:525.280000pt;}
.y114{bottom:530.720000pt;}
.y213{bottom:532.640000pt;}
.yb7{bottom:533.600000pt;}
.y13a{bottom:534.240000pt;}
.y1b{bottom:534.880000pt;}
.y9f{bottom:536.800000pt;}
.y16e{bottom:537.440000pt;}
.y22f{bottom:538.720000pt;}
.y106{bottom:539.040000pt;}
.y129{bottom:539.680000pt;}
.y5f{bottom:541.600000pt;}
.ye3{bottom:542.560000pt;}
.y1e0{bottom:544.480000pt;}
.y14b{bottom:548.320000pt;}
.y219{bottom:549.280000pt;}
.y92{bottom:552.160000pt;}
.y17c{bottom:555.360000pt;}
.y191{bottom:559.840000pt;}
.y113{bottom:560.160000pt;}
.y212{bottom:561.760000pt;}
.y1a2{bottom:562.400000pt;}
.yb6{bottom:562.720000pt;}
.y139{bottom:563.360000pt;}
.y15c{bottom:563.680000pt;}
.y3e{bottom:565.600000pt;}
.y9e{bottom:565.920000pt;}
.y1a{bottom:566.560000pt;}
.y16d{bottom:566.880000pt;}
.y105{bottom:568.160000pt;}
.y1df{bottom:568.800000pt;}
.y128{bottom:569.120000pt;}
.y5e{bottom:570.720000pt;}
.y218{bottom:578.720000pt;}
.y91{bottom:581.280000pt;}
.y112{bottom:589.280000pt;}
.y211{bottom:591.200000pt;}
.yb5{bottom:592.160000pt;}
.y138{bottom:592.800000pt;}
.y1dd{bottom:593.120000pt;}
.y9d{bottom:595.360000pt;}
.y3d{bottom:596.000000pt;}
.y19{bottom:598.240000pt;}
.y1a1{bottom:599.840000pt;}
.y5d{bottom:600.160000pt;}
.y1c0{bottom:604.320000pt;}
.y16c{bottom:605.600000pt;}
.y22e{bottom:607.840000pt;}
.y1b9{bottom:609.760000pt;}
.yd6{bottom:610.720000pt;}
.y1db{bottom:617.440000pt;}
.y14a{bottom:618.426667pt;}
.y111{bottom:618.746667pt;}
.y210{bottom:620.666667pt;}
.y90{bottom:621.306667pt;}
.y137{bottom:621.946667pt;}
.y9c{bottom:624.506667pt;}
.y3c{bottom:626.746667pt;}
.y104{bottom:627.706667pt;}
.y1c9{bottom:627.720000pt;}
.y6d{bottom:629.306667pt;}
.y18{bottom:629.626667pt;}
.y17b{bottom:635.386667pt;}
.y1a0{bottom:637.306667pt;}
.y1b8{bottom:639.226667pt;}
.y5c{bottom:639.866667pt;}
.y16b{bottom:640.826667pt;}
.y1da{bottom:641.800000pt;}
.y110{bottom:647.866667pt;}
.y20f{bottom:649.786667pt;}
.y8f{bottom:650.746667pt;}
.y136{bottom:651.386667pt;}
.y103{bottom:656.826667pt;}
.y3b{bottom:657.466667pt;}
.y15b{bottom:658.106667pt;}
.y78{bottom:658.746667pt;}
.yb4{bottom:661.306667pt;}
.y17{bottom:662.906667pt;}
.y9b{bottom:664.506667pt;}
.y1d9{bottom:666.120000pt;}
.y1b7{bottom:668.346667pt;}
.y4{bottom:668.800000pt;}
.y5b{bottom:669.306667pt;}
.y17a{bottom:673.786667pt;}
.y19f{bottom:674.746667pt;}
.y149{bottom:676.986667pt;}
.y10f{bottom:677.306667pt;}
.y20e{bottom:679.226667pt;}
.y8e{bottom:679.866667pt;}
.y135{bottom:680.506667pt;}
.y102{bottom:686.266667pt;}
.y15a{bottom:687.866667pt;}
.y3a{bottom:688.186667pt;}
.yf3{bottom:689.786667pt;}
.y1d7{bottom:690.440000pt;}
.yb3{bottom:690.746667pt;}
.y16{bottom:694.906667pt;}
.y1b6{bottom:697.786667pt;}
.y1ed{bottom:697.923199pt;}
.y5a{bottom:698.746667pt;}
.y179{bottom:700.346667pt;}
.y9a{bottom:703.226667pt;}
.y22d{bottom:706.426667pt;}
.y20d{bottom:708.346667pt;}
.y8d{bottom:709.306667pt;}
.y134{bottom:709.946667pt;}
.y19e{bottom:712.506667pt;}
.y127{bottom:715.706667pt;}
.y1d5{bottom:716.040000pt;}
.y101{bottom:716.346667pt;}
.y148{bottom:716.986667pt;}
.y10e{bottom:717.306667pt;}
.y38{bottom:718.906667pt;}
.yb2{bottom:719.866667pt;}
.y1b5{bottom:726.906667pt;}
.y59{bottom:727.866667pt;}
.y190{bottom:729.840000pt;}
.y99{bottom:730.466667pt;}
.y15{bottom:733.346667pt;}
.y20c{bottom:737.826667pt;}
.ycb{bottom:738.466667pt;}
.y133{bottom:739.426667pt;}
.y126{bottom:744.866667pt;}
.y100{bottom:745.826667pt;}
.y10d{bottom:746.466667pt;}
.yf2{bottom:748.386667pt;}
.y8c{bottom:749.346667pt;}
.y36{bottom:749.666667pt;}
.y19d{bottom:749.986667pt;}
.y1b4{bottom:756.386667pt;}
.y147{bottom:757.026667pt;}
.y77{bottom:757.346667pt;}
.y14{bottom:763.426667pt;}
.y20b{bottom:766.946667pt;}
.y18e{bottom:767.280000pt;}
.y98{bottom:767.586667pt;}
.y58{bottom:767.906667pt;}
.y132{bottom:768.546667pt;}
.y1aa{bottom:771.120000pt;}
.y125{bottom:774.306667pt;}
.yff{bottom:774.946667pt;}
.y10c{bottom:775.906667pt;}
.yf1{bottom:777.826667pt;}
.y8b{bottom:778.466667pt;}
.y34{bottom:780.066667pt;}
.y1b3{bottom:785.506667pt;}
.y76{bottom:786.466667pt;}
.y19c{bottom:787.426667pt;}
.y13{bottom:793.826667pt;}
.y146{bottom:795.426667pt;}
.y20a{bottom:796.386667pt;}
.y57{bottom:797.346667pt;}
.y131{bottom:797.986667pt;}
.y124{bottom:803.426667pt;}
.yfe{bottom:804.066667pt;}
.y10b{bottom:805.026667pt;}
.y18c{bottom:805.040000pt;}
.yf0{bottom:806.946667pt;}
.y31{bottom:807.266667pt;}
.y8a{bottom:807.906667pt;}
.y1b2{bottom:814.946667pt;}
.y75{bottom:815.906667pt;}
.y7{bottom:821.440000pt;}
.y209{bottom:825.506667pt;}
.y12{bottom:825.826667pt;}
.y56{bottom:826.466667pt;}
.y12f{bottom:827.106667pt;}
.y145{bottom:830.306667pt;}
.y123{bottom:832.866667pt;}
.y10a{bottom:834.466667pt;}
.y89{bottom:837.026667pt;}
.y18b{bottom:842.493333pt;}
.y1b1{bottom:844.413333pt;}
.y74{bottom:845.053333pt;}
.y30{bottom:846.333333pt;}
.y208{bottom:854.973333pt;}
.y55{bottom:855.933333pt;}
.y12e{bottom:856.573333pt;}
.y11{bottom:857.533333pt;}
.y121{bottom:862.013333pt;}
.y159{bottom:863.933333pt;}
.y88{bottom:866.493333pt;}
.y1b0{bottom:873.533333pt;}
.y73{bottom:874.493333pt;}
.y2f{bottom:877.053333pt;}
.y189{bottom:879.933333pt;}
.y207{bottom:884.093333pt;}
.y54{bottom:885.053333pt;}
.y12d{bottom:885.693333pt;}
.y10{bottom:889.213333pt;}
.y120{bottom:891.453333pt;}
.y158{bottom:893.053333pt;}
.y87{bottom:895.933333pt;}
.y72{bottom:903.613333pt;}
.y2e{bottom:907.773333pt;}
.y1af{bottom:913.533333pt;}
.y53{bottom:914.493333pt;}
.y12c{bottom:915.773333pt;}
.y188{bottom:919.613333pt;}
.yf{bottom:920.893333pt;}
.y11d{bottom:921.213333pt;}
.y86{bottom:925.053333pt;}
.y71{bottom:933.053333pt;}
.y2c{bottom:938.493333pt;}
.y206{bottom:942.653333pt;}
.y52{bottom:943.613333pt;}
.ye{bottom:952.573333pt;}
.y1ae{bottom:953.533333pt;}
.y85{bottom:954.533333pt;}
.yae{bottom:962.213333pt;}
.yb0{bottom:965.413333pt;}
.y2a{bottom:969.253333pt;}
.y51{bottom:973.093333pt;}
.y187{bottom:982.693333pt;}
.y84{bottom:983.653333pt;}
.yd{bottom:983.973333pt;}
.y1c8{bottom:986.853333pt;}
.y1bf{bottom:990.053333pt;}
.y4f{bottom:1012.773333pt;}
.y50{bottom:1013.093333pt;}
.y3{bottom:1014.053333pt;}
.y4e{bottom:1061.733333pt;}
.h20{height:2.111250pt;}
.h3b{height:12.804915pt;}
.h30{height:15.986667pt;}
.h31{height:16.032000pt;}
.h2f{height:16.306667pt;}
.h19{height:16.626667pt;}
.h27{height:17.945625pt;}
.h17{height:21.106667pt;}
.h34{height:24.306667pt;}
.h36{height:24.320000pt;}
.h38{height:24.346667pt;}
.h35{height:24.352000pt;}
.h37{height:24.640000pt;}
.h32{height:26.258667pt;}
.h10{height:27.200000pt;}
.h22{height:29.120000pt;}
.h24{height:29.152000pt;}
.h23{height:29.440000pt;}
.h25{height:29.472000pt;}
.h11{height:30.400000pt;}
.h12{height:30.432000pt;}
.h13{height:30.706667pt;}
.hd{height:30.720000pt;}
.hc{height:30.752000pt;}
.h3c{height:33.158493pt;}
.hb{height:33.906667pt;}
.h2b{height:37.426667pt;}
.h28{height:37.440000pt;}
.h29{height:37.466667pt;}
.h2a{height:37.746667pt;}
.h2e{height:38.386667pt;}
.h39{height:38.542228pt;}
.hf{height:39.072000pt;}
.h2c{height:44.336250pt;}
.h14{height:44.907500pt;}
.h3a{height:45.413559pt;}
.h3d{height:45.611509pt;}
.h2d{height:46.840769pt;}
.h15{height:47.380000pt;}
.h2{height:48.558750pt;}
.h33{height:48.812500pt;}
.h3f{height:50.635000pt;}
.h16{height:51.500000pt;}
.h9{height:52.781250pt;}
.h21{height:53.792000pt;}
.h26{height:59.740000pt;}
.ha{height:61.226250pt;}
.h8{height:63.680000pt;}
.h1a{height:64.275625pt;}
.h18{height:65.781915pt;}
.h1e{height:66.625000pt;}
.he{height:66.750000pt;}
.h6{height:70.726875pt;}
.h7{height:70.832438pt;}
.h3{height:73.920000pt;}
.h4{height:79.171875pt;}
.h1b{height:81.500000pt;}
.h5{height:99.520000pt;}
.h1d{height:123.740000pt;}
.h1c{height:172.380000pt;}
.h3e{height:320.538298pt;}
.h1f{height:483.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:13.177418pt;}
.w1c{width:30.706667pt;}
.w1a{width:31.026667pt;}
.w18{width:31.066667pt;}
.w1b{width:31.346667pt;}
.w1d{width:31.666667pt;}
.w19{width:31.706667pt;}
.w7{width:32.020000pt;}
.w9{width:32.340000pt;}
.w8{width:32.640000pt;}
.w22{width:32.735602pt;}
.wa{width:32.946667pt;}
.w6{width:50.912000pt;}
.wc{width:77.472000pt;}
.w10{width:84.512000pt;}
.wd{width:84.544000pt;}
.we{width:84.832000pt;}
.w1e{width:86.106667pt;}
.w13{width:94.738667pt;}
.w1f{width:108.864000pt;}
.w20{width:109.138667pt;}
.w16{width:114.304000pt;}
.w15{width:114.586667pt;}
.w17{width:131.840000pt;}
.w14{width:131.880000pt;}
.w21{width:163.030483pt;}
.w3{width:225.920000pt;}
.w12{width:240.413333pt;}
.w4{width:279.040000pt;}
.wb{width:288.120000pt;}
.wf{width:288.440000pt;}
.w11{width:335.173333pt;}
.w24{width:496.381160pt;}
.w5{width:538.786667pt;}
.w2{width:585.920000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7d{left:4.809072pt;}
.x18{left:7.040000pt;}
.x7e{left:8.336437pt;}
.x29{left:9.620000pt;}
.x7c{left:10.548851pt;}
.x5c{left:11.506667pt;}
.x4{left:13.826667pt;}
.x7{left:15.493333pt;}
.x45{left:16.960000pt;}
.x3e{left:17.946667pt;}
.x8{left:19.333333pt;}
.x7a{left:20.774337pt;}
.x63{left:21.746667pt;}
.x5{left:23.106667pt;}
.x3f{left:24.346667pt;}
.x41{left:25.314667pt;}
.x48{left:26.266667pt;}
.x1e{left:27.240000pt;}
.x49{left:29.466667pt;}
.x53{left:30.706667pt;}
.x75{left:32.360000pt;}
.x42{left:33.600000pt;}
.x1a{left:35.560000pt;}
.x5d{left:36.506667pt;}
.x43{left:38.746667pt;}
.x60{left:39.666667pt;}
.x61{left:40.640000pt;}
.x5f{left:43.186667pt;}
.x1b{left:44.834667pt;}
.x1f{left:47.074667pt;}
.x77{left:50.586667pt;}
.x62{left:52.786667pt;}
.x4e{left:54.760000pt;}
.xa{left:71.493333pt;}
.x21{left:75.234667pt;}
.x1c{left:82.594667pt;}
.x20{left:84.514667pt;}
.x51{left:85.800000pt;}
.x52{left:87.720000pt;}
.x50{left:89.640000pt;}
.x4d{left:90.600000pt;}
.x17{left:106.272000pt;}
.x2{left:113.312000pt;}
.x11{left:117.504000pt;}
.x69{left:118.784000pt;}
.x3{left:120.000000pt;}
.x27{left:121.024000pt;}
.x1d{left:122.301333pt;}
.x56{left:124.544000pt;}
.x12{left:126.784000pt;}
.x73{left:129.664000pt;}
.x80{left:132.224000pt;}
.x2f{left:133.184000pt;}
.x2c{left:134.466667pt;}
.x3c{left:143.729333pt;}
.x59{left:151.106667pt;}
.x30{left:153.346667pt;}
.x3b{left:159.106667pt;}
.x22{left:160.386667pt;}
.x24{left:161.346667pt;}
.x6c{left:166.146667pt;}
.x54{left:172.546667pt;}
.x58{left:180.226667pt;}
.x38{left:184.386667pt;}
.x25{left:185.346667pt;}
.x3d{left:190.786667pt;}
.x64{left:192.706667pt;}
.x15{left:199.133333pt;}
.x39{left:208.413333pt;}
.x26{left:209.373333pt;}
.x37{left:214.493333pt;}
.x71{left:215.773333pt;}
.x7f{left:228.573333pt;}
.x4c{left:229.533333pt;}
.x6e{left:230.493333pt;}
.x9{left:235.840000pt;}
.x6d{left:237.213333pt;}
.x67{left:241.693333pt;}
.x74{left:244.893333pt;}
.x66{left:248.413333pt;}
.x28{left:252.573333pt;}
.x4b{left:255.773333pt;}
.xb{left:259.933333pt;}
.x6a{left:266.333333pt;}
.x40{left:275.333333pt;}
.x33{left:277.893333pt;}
.xf{left:280.773333pt;}
.x14{left:281.733333pt;}
.xe{left:288.133333pt;}
.x70{left:290.693333pt;}
.x65{left:295.493333pt;}
.x79{left:299.487826pt;}
.x6{left:307.840000pt;}
.xd{left:309.893333pt;}
.x16{left:320.773333pt;}
.x35{left:322.373333pt;}
.x2d{left:326.213333pt;}
.x13{left:327.493333pt;}
.x76{left:331.013333pt;}
.x10{left:334.213333pt;}
.x32{left:344.453333pt;}
.x7b{left:364.627923pt;}
.x2a{left:386.080000pt;}
.x2e{left:389.600000pt;}
.x23{left:393.120000pt;}
.xc{left:395.040000pt;}
.x1{left:396.960000pt;}
.x44{left:401.760000pt;}
.x31{left:427.400000pt;}
.x5a{left:429.626667pt;}
.x5b{left:438.586667pt;}
.x78{left:439.880000pt;}
.x34{left:450.426667pt;}
.x4f{left:469.960000pt;}
.x46{left:486.266667pt;}
.x5e{left:511.600000pt;}
.x4a{left:533.026667pt;}
.x36{left:536.866667pt;}
.x47{left:570.786667pt;}
.x3a{left:609.213333pt;}
.x6f{left:630.013333pt;}
.x68{left:633.213333pt;}
.x19{left:645.053333pt;}
.x2b{left:647.613333pt;}
.x6b{left:650.813333pt;}
.x55{left:654.013333pt;}
.x57{left:656.893333pt;}
.x72{left:664.933333pt;}
}




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