
    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_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_778b2e249be8cdcf5a7fb32f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.111816;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_2add0f22d93d30fe3b9725b2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.111816;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_8c019b036dd47744f54ef65a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1df6837c3ad971e56f21cd08.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_1e4799a45f68ff75374e10a4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.117188;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_fbde9b45b5375a07351ebffc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_1c1d1e30e8283ba51820219e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1fcd1f1c24b9a66e1ccc7e62.woff')format("woff");}.ffa{font-family:ffa;line-height:1.117188;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_a8a5f45c15f0c5ef3e17d3d4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_748c3ec2423ab164c4a52436.woff')format("woff");}.ffd{font-family:ffd;line-height:1.117188;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_a7533117ca4b28075ad96345.woff')format("woff");}.ffe{font-family:ffe;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f55a5ec6d564a9e07477ae40.woff')format("woff");}.ff10{font-family:ff10;line-height:1.117188;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:ff11;src:url('chunks/assets/font_a0290bf5ea4f362bc6b6a063.woff')format("woff");}.ff11{font-family:ff11;line-height:0.915082;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:ff12;src:url('chunks/assets/font_a3a4c045dc8212be797eed93.woff')format("woff");}.ff12{font-family:ff12;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff13{font-family:ff13;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_52b8779776dce2674f81cb22.woff')format("woff");}.ff14{font-family:ff14;line-height:1.117188;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:ff15;src:url('chunks/assets/font_36b469d1ec2e9d90d28ef9b5.woff')format("woff");}.ff15{font-family:ff15;line-height:0.893677;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:ff16;src:url('chunks/assets/font_93f8a6ae71a620193cbad6e8.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_b785753656a86dc35503b1cb.woff')format("woff");}.ff17{font-family:ff17;line-height:1.120117;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:ff18;src:url('chunks/assets/font_55edf3ebce3bb944245a915c.woff')format("woff");}.ff18{font-family:ff18;line-height:1.107422;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:ff19;src:url('chunks/assets/font_3597474b17a06c5c13f0bfaf.woff')format("woff");}.ff19{font-family:ff19;line-height:1.107422;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:ff1a;src:url('chunks/assets/font_00afa1bfc527ab91718e8b7d.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.111816;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:ff1b;src:url('chunks/assets/font_2add0f22d93d30fe3b9725b2.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.111816;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:ff1c;src:url('chunks/assets/font_f4c58ffe6090b5c8dc5ed083.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_320103ce6fb05daa398890b9.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.117188;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:ff1f;src:url('chunks/assets/font_da66d03742e2ddd611e834d4.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff20{font-family:ff20;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_81577fef4e3bcc556433a3e9.woff')format("woff");}.ff21{font-family:ff21;line-height:1.117188;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:ff22;src:url('chunks/assets/font_7d8478b93937352b55c3ea2f.woff')format("woff");}.ff22{font-family:ff22;line-height:1.117188;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:ff23;src:url('chunks/assets/font_ab2b86199bb58fa48c6f9a1a.woff')format("woff");}.ff23{font-family:ff23;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff24{font-family:ff24;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_65cbb039e5865609b1d25890.woff')format("woff");}.ff25{font-family:ff25;line-height:1.117188;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:ff26;src:url('chunks/assets/font_8b4aa16f8450f44846409df3.woff')format("woff");}.ff26{font-family:ff26;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff27{font-family:ff27;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_8cbd974a9f61ad4520cf104c.woff')format("woff");}.ff28{font-family:ff28;line-height:1.117188;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:ff29;src:url('chunks/assets/font_fd90be6a203ccdf5b2e96530.woff')format("woff");}.ff29{font-family:ff29;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_d15787b0be6901202d4359a9.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.117188;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:ff2c;src:url('chunks/assets/font_7d8478b93937352b55c3ea2f.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.117188;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:ff2d;src:url('chunks/assets/font_9b62a9e834359a2249926a07.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_c398427f4d1206fa1b564ce6.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.117188;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:ff30;src:url('chunks/assets/font_9900ac557d26213041be9839.woff')format("woff");}.ff30{font-family:ff30;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_f3bd034c39f18f92fa9d1662.woff')format("woff");}.ff31{font-family:ff31;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_9235ee940fed2a5fa931bac8.woff')format("woff");}.ff32{font-family:ff32;line-height:1.117188;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:ff33;src:url('chunks/assets/font_5db410408ab27a3d2e8b6b8d.woff')format("woff");}.ff33{font-family:ff33;line-height:1.120117;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:ff34;src:url('chunks/assets/font_c55a241d0cc795c69909d218.woff')format("woff");}.ff34{font-family:ff34;line-height:1.107422;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:ff35;src:url('chunks/assets/font_3597474b17a06c5c13f0bfaf.woff')format("woff");}.ff35{font-family:ff35;line-height:1.107422;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:ff36;src:url('chunks/assets/font_2efe918682a797cf9f89d0f4.woff')format("woff");}.ff36{font-family:ff36;line-height:1.111816;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:ff37;src:url('chunks/assets/font_a895b549408a0e793e9f7ea3.woff')format("woff");}.ff37{font-family:ff37;line-height:1.111816;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:ff38;src:url('chunks/assets/font_596fb046edd6264240baae8a.woff')format("woff");}.ff38{font-family:ff38;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff39{font-family:ff39;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_e35832a8b6859d1b8b6ceb9f.woff')format("woff");}.ff3a{font-family:ff3a;line-height:1.117188;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:ff3b;src:url('chunks/assets/font_9978f337434a97d61e030392.woff')format("woff");}.ff3b{font-family:ff3b;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff3c{font-family:ff3c;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_ee72e02b10fc931af6de70fa.woff')format("woff");}.ff3d{font-family:ff3d;line-height:1.117188;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:ff3e;src:url('chunks/assets/font_03175824ccd7fb2ad4361a79.woff')format("woff");}.ff3e{font-family:ff3e;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff3f{font-family:ff3f;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_e6122a6c15f8fd1d272680e3.woff')format("woff");}.ff40{font-family:ff40;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff41{font-family:ff41;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_af756b8828b9e37b62221227.woff')format("woff");}.ff42{font-family:ff42;line-height:1.117188;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:ff43;src:url('chunks/assets/font_b3b4639ad3d37de0bc795105.woff')format("woff");}.ff43{font-family:ff43;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff44{font-family:ff44;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_1e6d635328b2081e39816bca.woff')format("woff");}.ff45{font-family:ff45;line-height:1.120117;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:ff46;src:url('chunks/assets/font_1d2d9a4171248d3de243c74c.woff')format("woff");}.ff46{font-family:ff46;line-height:1.107422;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:ff47;src:url('chunks/assets/font_3597474b17a06c5c13f0bfaf.woff')format("woff");}.ff47{font-family:ff47;line-height:1.107422;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:ff48;src:url('chunks/assets/font_587ee2eeb78d7411a81defb9.woff')format("woff");}.ff48{font-family:ff48;line-height:1.111816;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:ff49;src:url('chunks/assets/font_2add0f22d93d30fe3b9725b2.woff')format("woff");}.ff49{font-family:ff49;line-height:1.111816;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:ff4a;src:url('chunks/assets/font_a175cf243892d2637c193a65.woff')format("woff");}.ff4a{font-family:ff4a;line-height:1.117188;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:ff4b;src:url('chunks/assets/font_7d8478b93937352b55c3ea2f.woff')format("woff");}.ff4b{font-family:ff4b;line-height:1.117188;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:ff4c;src:url('chunks/assets/font_882ee64b3adf1643a235370a.woff')format("woff");}.ff4c{font-family:ff4c;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff4d{font-family:ff4d;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_7668824144d92a324638b47e.woff')format("woff");}.ff4e{font-family:ff4e;line-height:1.117188;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:ff4f;src:url('chunks/assets/font_88f348c88a9192c9a2c4d08c.woff')format("woff");}.ff4f{font-family:ff4f;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff50{font-family:ff50;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_81e506429041a7f40970fe02.woff')format("woff");}.ff51{font-family:ff51;line-height:1.117188;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:ff52;src:url('chunks/assets/font_1139ad4bfd77d1abd6aa60e4.woff')format("woff");}.ff52{font-family:ff52;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff53{font-family:ff53;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_754e53c104ebe35bd99b1cab.woff')format("woff");}.ff54{font-family:ff54;line-height:1.117188;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:ff55;src:url('chunks/assets/font_ac7fb4cc3b1331afc3aa0f40.woff')format("woff");}.ff55{font-family:ff55;line-height:1.120117;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:ff56;src:url('chunks/assets/font_ef3a925e632c48d99bbc67e9.woff')format("woff");}.ff56{font-family:ff56;line-height:1.107422;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:ff57;src:url('chunks/assets/font_3597474b17a06c5c13f0bfaf.woff')format("woff");}.ff57{font-family:ff57;line-height:1.107422;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:ff58;src:url('chunks/assets/font_2add0f22d93d30fe3b9725b2.woff')format("woff");}.ff58{font-family:ff58;line-height:1.111816;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:ff59;src:url('chunks/assets/font_4e596787759d98c501699f0a.woff')format("woff");}.ff59{font-family:ff59;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff5a{font-family:ff5a;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_32107ccf33ae320c7083cffe.woff')format("woff");}.ff5b{font-family:ff5b;line-height:1.120117;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:ff5c;src:url('chunks/assets/font_b7e73d9d289835fbbf93b509.woff')format("woff");}.ff5c{font-family:ff5c;line-height:1.107422;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:ff5d;src:url('chunks/assets/font_3597474b17a06c5c13f0bfaf.woff')format("woff");}.ff5d{font-family:ff5d;line-height:1.107422;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:ff5e;src:url('chunks/assets/font_56e3828d08f400a60f0fb8db.woff')format("woff");}.ff5e{font-family:ff5e;line-height:1.111816;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:ff5f;src:url('chunks/assets/font_2add0f22d93d30fe3b9725b2.woff')format("woff");}.ff5f{font-family:ff5f;line-height:1.111816;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:ff60;src:url('chunks/assets/font_b12992ed4e22e782d0384706.woff')format("woff");}.ff60{font-family:ff60;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_adc81fd7c2a011cf1b32abc2.woff')format("woff");}.ff61{font-family:ff61;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_eec13f79f3f9dbe8275f384f.woff')format("woff");}.ff62{font-family:ff62;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.624960px;}
.lsd{letter-spacing:-0.546840px;}
.ls25{letter-spacing:-0.135600px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000001px;}
.ls15{letter-spacing:0.000003px;}
.ls1f{letter-spacing:0.023040px;}
.ls1d{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.191520px;}
.ls8{letter-spacing:0.193320px;}
.ls3{letter-spacing:0.219960px;}
.ls1b{letter-spacing:0.224400px;}
.lse{letter-spacing:0.239400px;}
.ls17{letter-spacing:0.247680px;}
.ls19{letter-spacing:0.247800px;}
.ls7{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.270600px;}
.ls13{letter-spacing:0.273600px;}
.ls20{letter-spacing:0.276480px;}
.ls24{letter-spacing:0.284400px;}
.ls9{letter-spacing:0.287280px;}
.ls0{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.336960px;}
.lsa{letter-spacing:0.359424px;}
.ls12{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.373320px;}
.ls23{letter-spacing:0.382800px;}
.ls6{letter-spacing:0.413280px;}
.ls11{letter-spacing:0.414720px;}
.lsf{letter-spacing:0.414828px;}
.ls1c{letter-spacing:0.449280px;}
.ls27{letter-spacing:0.472200px;}
.ls1e{letter-spacing:0.495360px;}
.ls1{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.513360px;}
.ls16{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.541080px;}
.ls21{letter-spacing:0.592320px;}
.ls1a{letter-spacing:5.040000px;}
.ls26{letter-spacing:9.000000px;}
.ls18{letter-spacing:15.120000px;}
.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;}
}
.wse{word-spacing:-69.120000px;}
.ws13{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.694720px;}
.wsd{word-spacing:-17.640000px;}
.ws3{word-spacing:-17.639424px;}
.wsc{word-spacing:-17.553600px;}
.ws10{word-spacing:-17.550600px;}
.ws12{word-spacing:-17.280003px;}
.ws4{word-spacing:-17.280000px;}
.ws11{word-spacing:-17.144400px;}
.ws1{word-spacing:-16.416000px;}
.ws5{word-spacing:-15.571080px;}
.ws7{word-spacing:-15.444828px;}
.ws9{word-spacing:-15.030000px;}
.ws0{word-spacing:-15.020640px;}
.wsf{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.257280px;}
.ws6{word-spacing:-12.209400px;}
.wsa{word-spacing:-11.970000px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-5.171280px;}
._c{margin-left:-3.980760px;}
._3{margin-left:-2.540160px;}
._2{margin-left:-1.340640px;}
._0{width:1.142280px;}
._1{width:3.129240px;}
._6{width:4.237200px;}
._5{width:5.389320px;}
._4{width:6.536400px;}
._7{width:7.948800px;}
._8{width:9.961200px;}
._9{width:11.299320px;}
._b{width:13.271040px;}
._a{width:15.142920px;}
._d{width:16.152360px;}
._11{width:18.593280px;}
._f{width:35.196480px;}
._e{width:36.353520px;}
._12{width:846.840000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y2{bottom:24.929908px;}
.y27{bottom:89.459908px;}
.y132{bottom:89.549908px;}
.yb8{bottom:91.439908px;}
.y10f{bottom:92.429908px;}
.y106{bottom:96.569908px;}
.y64{bottom:101.249908px;}
.y95{bottom:101.699908px;}
.y83{bottom:103.409908px;}
.ya7{bottom:104.129908px;}
.y178{bottom:105.029908px;}
.y26{bottom:107.279908px;}
.y10e{bottom:108.809908px;}
.y1a6{bottom:109.259908px;}
.y164{bottom:109.439908px;}
.y194{bottom:111.419908px;}
.y131{bottom:112.409908px;}
.yb7{bottom:114.209908px;}
.y14b{bottom:117.179908px;}
.y105{bottom:119.339908px;}
.y12c{bottom:121.319908px;}
.y63{bottom:124.019908px;}
.y25{bottom:125.099908px;}
.y10d{bottom:125.189908px;}
.y94{bottom:125.819908px;}
.y82{bottom:126.179908px;}
.ya6{bottom:126.899908px;}
.y1ad{bottom:127.709908px;}
.y177{bottom:127.799908px;}
.yd6{bottom:127.979908px;}
.y10c{bottom:128.969908px;}
.y1a5{bottom:132.029908px;}
.y163{bottom:132.209908px;}
.y193{bottom:134.189908px;}
.y130{bottom:135.179908px;}
.yb6{bottom:136.979908px;}
.y14a{bottom:140.039908px;}
.y104{bottom:142.199908px;}
.y24{bottom:142.919908px;}
.y10b{bottom:145.259908px;}
.y12b{bottom:146.159908px;}
.y62{bottom:146.879908px;}
.y43{bottom:148.499908px;}
.y93{bottom:148.679908px;}
.y81{bottom:149.039908px;}
.ya5{bottom:149.789908px;}
.y176{bottom:150.689908px;}
.yd5{bottom:150.869908px;}
.y1a4{bottom:154.919908px;}
.y162{bottom:155.099908px;}
.y192{bottom:157.079908px;}
.y12f{bottom:158.069908px;}
.y1ac{bottom:159.509908px;}
.ybf{bottom:159.869908px;}
.y23{bottom:160.679908px;}
.y149{bottom:162.839908px;}
.y103{bottom:164.999908px;}
.y61{bottom:169.679908px;}
.y12a{bottom:170.939908px;}
.y42{bottom:171.389908px;}
.y92{bottom:171.479908px;}
.yb5{bottom:171.749908px;}
.y80{bottom:171.839908px;}
.ya4{bottom:172.559908px;}
.y175{bottom:173.459908px;}
.yd4{bottom:173.639908px;}
.y1a3{bottom:177.689908px;}
.y161{bottom:177.869908px;}
.y22{bottom:178.499908px;}
.y191{bottom:179.849908px;}
.y12e{bottom:180.839908px;}
.y1ab{bottom:182.369908px;}
.ybe{bottom:182.639908px;}
.y148{bottom:185.699908px;}
.y102{bottom:187.769908px;}
.y10a{bottom:191.909908px;}
.y60{bottom:192.449908px;}
.y41{bottom:194.159908px;}
.y91{bottom:194.339908px;}
.y7f{bottom:194.699908px;}
.ya3{bottom:195.419908px;}
.y129{bottom:195.779908px;}
.y21{bottom:196.319908px;}
.yd3{bottom:196.499908px;}
.y1a2{bottom:200.459908px;}
.y160{bottom:200.729908px;}
.y190{bottom:202.709908px;}
.y12d{bottom:203.699908px;}
.y1aa{bottom:205.139908px;}
.y174{bottom:205.319908px;}
.ybd{bottom:205.499908px;}
.y147{bottom:208.469908px;}
.y101{bottom:210.629908px;}
.y20{bottom:212.699908px;}
.y5f{bottom:215.309908px;}
.y40{bottom:217.019908px;}
.y90{bottom:217.109908px;}
.ye7{bottom:217.469908px;}
.y109{bottom:218.819908px;}
.yd2{bottom:219.269908px;}
.y128{bottom:220.529908px;}
.y1a1{bottom:223.319908px;}
.y15f{bottom:223.499908px;}
.y18f{bottom:225.479908px;}
.y7e{bottom:226.469908px;}
.y173{bottom:228.089908px;}
.ybc{bottom:228.269908px;}
.y1f{bottom:229.169908px;}
.ya2{bottom:230.159908px;}
.y146{bottom:231.329908px;}
.y1bd{bottom:232.769908px;}
.y100{bottom:233.399908px;}
.yb4{bottom:235.469908px;}
.y5e{bottom:238.079908px;}
.y3f{bottom:239.789908px;}
.y8f{bottom:239.969908px;}
.ye6{bottom:240.329908px;}
.yd1{bottom:242.129908px;}
.y1a9{bottom:242.399908px;}
.y1e{bottom:245.549908px;}
.y15e{bottom:246.269908px;}
.y18e{bottom:248.339908px;}
.y7d{bottom:249.329908px;}
.y172{bottom:250.949908px;}
.ybb{bottom:251.129908px;}
.y145{bottom:254.099908px;}
.y127{bottom:254.369908px;}
.y1a0{bottom:255.089908px;}
.yff{bottom:256.259908px;}
.yb3{bottom:258.329908px;}
.y5d{bottom:260.939908px;}
.y3e{bottom:262.559908px;}
.ye5{bottom:263.099908px;}
.y1bc{bottom:264.539908px;}
.yd0{bottom:264.899908px;}
.ya1{bottom:267.509908px;}
.y15d{bottom:269.129908px;}
.y1a8{bottom:269.219908px;}
.y18d{bottom:271.109908px;}
.y7c{bottom:272.099908px;}
.y171{bottom:273.719908px;}
.ye0{bottom:273.899908px;}
.y1d{bottom:274.079908px;}
.y8e{bottom:274.619908px;}
.y144{bottom:276.959908px;}
.y19f{bottom:277.949908px;}
.y126{bottom:279.119908px;}
.y1d3{bottom:279.929908px;}
.yb2{bottom:281.099908px;}
.y5c{bottom:283.709908px;}
.yba{bottom:285.869908px;}
.y1bb{bottom:287.399908px;}
.ycf{bottom:287.759908px;}
.yfe{bottom:288.029908px;}
.y18c{bottom:293.879908px;}
.ya0{bottom:294.329908px;}
.y3d{bottom:294.419908px;}
.y7b{bottom:294.959908px;}
.y170{bottom:296.579908px;}
.ydf{bottom:296.759908px;}
.y143{bottom:299.729908px;}
.y19e{bottom:300.719908px;}
.y15c{bottom:301.619908px;}
.y125{bottom:303.959908px;}
.y5b{bottom:306.569908px;}
.y1c{bottom:306.839908px;}
.y1d2{bottom:306.929908px;}
.y1ba{bottom:310.169908px;}
.yfd{bottom:310.889908px;}
.yb1{bottom:312.959908px;}
.y8d{bottom:315.569908px;}
.y18b{bottom:316.739908px;}
.y3c{bottom:317.189908px;}
.y7a{bottom:317.729908px;}
.y16f{bottom:319.349908px;}
.yce{bottom:319.529908px;}
.y15b{bottom:319.979908px;}
.y142{bottom:322.499908px;}
.y19d{bottom:323.579908px;}
.yb9{bottom:326.729908px;}
.y124{bottom:328.709908px;}
.y1b{bottom:332.489908px;}
.y1b9{bottom:333.029908px;}
.yfc{bottom:333.659908px;}
.y1d1{bottom:333.929908px;}
.yb0{bottom:335.729908px;}
.y5a{bottom:338.339908px;}
.y15a{bottom:338.429908px;}
.y18a{bottom:339.509908px;}
.y3b{bottom:340.049908px;}
.ye4{bottom:340.499908px;}
.y16e{bottom:342.209908px;}
.ycd{bottom:342.389908px;}
.y141{bottom:345.359908px;}
.y19c{bottom:346.349908px;}
.y79{bottom:349.499908px;}
.y1a{bottom:352.289908px;}
.y123{bottom:353.549908px;}
.y1b8{bottom:355.799908px;}
.yfb{bottom:356.519908px;}
.yaf{bottom:358.499908px;}
.y59{bottom:361.199908px;}
.y189{bottom:362.369908px;}
.y3a{bottom:362.819908px;}
.ye3{bottom:363.359908px;}
.y16d{bottom:364.979908px;}
.ycc{bottom:365.159908px;}
.y1d0{bottom:367.319908px;}
.y140{bottom:368.129908px;}
.y159{bottom:368.759908px;}
.y19b{bottom:369.209908px;}
.y19{bottom:372.089908px;}
.y78{bottom:372.359908px;}
.y122{bottom:378.299908px;}
.y1b7{bottom:378.659908px;}
.yfa{bottom:379.289908px;}
.yae{bottom:381.359908px;}
.y58{bottom:383.969908px;}
.y188{bottom:385.139908px;}
.ye2{bottom:386.129908px;}
.y158{bottom:387.209908px;}
.y16c{bottom:387.749908px;}
.ycb{bottom:387.929908px;}
.y13f{bottom:390.989908px;}
.y18{bottom:391.889908px;}
.y39{bottom:394.679908px;}
.y77{bottom:395.129908px;}
.y1b6{bottom:401.429908px;}
.yf9{bottom:402.149908px;}
.yad{bottom:404.129908px;}
.y1cf{bottom:404.759908px;}
.y157{bottom:405.569908px;}
.y57{bottom:406.829908px;}
.y19a{bottom:407.279908px;}
.yca{bottom:410.789908px;}
.y17{bottom:411.689908px;}
.y121{bottom:412.139908px;}
.y13e{bottom:413.759908px;}
.y187{bottom:416.999908px;}
.y38{bottom:417.449908px;}
.y76{bottom:417.989908px;}
.y1b5{bottom:424.199908px;}
.yf8{bottom:424.919908px;}
.y16b{bottom:425.909908px;}
.yac{bottom:426.989908px;}
.y56{bottom:429.599908px;}
.y199{bottom:431.039908px;}
.y16{bottom:431.489908px;}
.y1ce{bottom:431.759908px;}
.yc9{bottom:433.559908px;}
.y156{bottom:435.989908px;}
.y120{bottom:436.889908px;}
.y186{bottom:439.769908px;}
.y37{bottom:440.309908px;}
.y75{bottom:440.759908px;}
.y8c{bottom:444.899908px;}
.y13d{bottom:445.619908px;}
.y1b4{bottom:447.059908px;}
.yf7{bottom:447.779908px;}
.yab{bottom:449.759908px;}
.y15{bottom:451.199908px;}
.y55{bottom:452.459908px;}
.y155{bottom:454.349908px;}
.yc8{bottom:456.419908px;}
.y1cd{bottom:458.759908px;}
.y11f{bottom:461.729908px;}
.y185{bottom:462.629908px;}
.y36{bottom:463.079908px;}
.y74{bottom:463.619908px;}
.y13c{bottom:468.389908px;}
.y1b3{bottom:469.829908px;}
.yf6{bottom:470.549908px;}
.y14{bottom:470.999908px;}
.yaa{bottom:472.619908px;}
.y154{bottom:472.799908px;}
.y54{bottom:475.229908px;}
.y16a{bottom:476.399908px;}
.yde{bottom:479.189908px;}
.y198{bottom:481.619908px;}
.y184{bottom:485.399908px;}
.y1cc{bottom:485.759908px;}
.y35{bottom:485.939908px;}
.y73{bottom:486.389908px;}
.y11e{bottom:486.479908px;}
.yc7{bottom:491.159908px;}
.y13b{bottom:491.249908px;}
.y13{bottom:491.339908px;}
.y1b2{bottom:492.719908px;}
.yf5{bottom:493.349908px;}
.y8b{bottom:495.419908px;}
.y53{bottom:498.029908px;}
.y169{bottom:499.199908px;}
.y153{bottom:503.249908px;}
.y1cb{bottom:503.789908px;}
.y197{bottom:504.419908px;}
.y183{bottom:508.289908px;}
.y34{bottom:508.739908px;}
.y72{bottom:509.279908px;}
.ydd{bottom:511.079908px;}
.y11d{bottom:511.349908px;}
.y12{bottom:513.149908px;}
.y13a{bottom:514.049908px;}
.y8a{bottom:518.279908px;}
.y52{bottom:520.889908px;}
.y152{bottom:521.609908px;}
.y168{bottom:522.059908px;}
.y196{bottom:527.279908px;}
.y1b1{bottom:529.979908px;}
.y1ca{bottom:530.789908px;}
.y182{bottom:531.059908px;}
.yf4{bottom:531.419908px;}
.yc6{bottom:532.049908px;}
.ydc{bottom:533.849908px;}
.y11{bottom:535.379908px;}
.y11c{bottom:536.099908px;}
.y139{bottom:536.909908px;}
.y9f{bottom:538.259908px;}
.y71{bottom:541.049908px;}
.y51{bottom:543.659908px;}
.y33{bottom:546.809908px;}
.y195{bottom:550.049908px;}
.y151{bottom:552.029908px;}
.y181{bottom:553.829908px;}
.yc5{bottom:554.909908px;}
.ydb{bottom:556.709908px;}
.y1b0{bottom:556.799908px;}
.y1c9{bottom:557.789908px;}
.y10{bottom:558.149908px;}
.y167{bottom:559.319908px;}
.y138{bottom:559.679908px;}
.y11b{bottom:560.939908px;}
.y70{bottom:563.909908px;}
.y50{bottom:566.519908px;}
.y108{bottom:566.969908px;}
.y150{bottom:570.389908px;}
.y89{bottom:572.909908px;}
.y1c8{bottom:575.789908px;}
.y180{bottom:576.689908px;}
.yc4{bottom:577.679908px;}
.yf3{bottom:578.489908px;}
.yda{bottom:579.479908px;}
.y9e{bottom:580.739908px;}
.yf{bottom:581.009908px;}
.y137{bottom:582.449908px;}
.y11a{bottom:585.689908px;}
.y166{bottom:586.139908px;}
.y6f{bottom:586.679908px;}
.y4f{bottom:589.289908px;}
.y32{bottom:593.879908px;}
.y88{bottom:595.679908px;}
.yf2{bottom:595.769908px;}
.y17f{bottom:599.459908px;}
.yc3{bottom:600.449908px;}
.y14f{bottom:600.809908px;}
.y1c7{bottom:602.789908px;}
.y9d{bottom:603.599908px;}
.ye{bottom:603.779908px;}
.y6e{bottom:609.449908px;}
.y119{bottom:610.529908px;}
.y31{bottom:611.159908px;}
.yd9{bottom:611.339908px;}
.y4e{bottom:612.149908px;}
.yf1{bottom:613.049908px;}
.y136{bottom:614.309908px;}
.y87{bottom:618.449908px;}
.y14e{bottom:619.169908px;}
.y17e{bottom:622.319908px;}
.yc2{bottom:623.309908px;}
.y9c{bottom:626.369908px;}
.yd{bottom:626.639908px;}
.y1c6{bottom:629.789908px;}
.yf0{bottom:630.329908px;}
.y30{bottom:631.409908px;}
.y6d{bottom:632.309908px;}
.yd8{bottom:634.109908px;}
.y4d{bottom:634.919908px;}
.y135{bottom:637.079908px;}
.y14d{bottom:637.619908px;}
.y86{bottom:641.309908px;}
.y118{bottom:644.279908px;}
.yc1{bottom:646.079908px;}
.yef{bottom:647.519908px;}
.yc{bottom:649.409908px;}
.y17d{bottom:653.639908px;}
.y6c{bottom:655.079908px;}
.y1c5{bottom:656.789908px;}
.y2f{bottom:657.599908px;}
.y4c{bottom:657.779908px;}
.y9b{bottom:658.229908px;}
.y85{bottom:664.079908px;}
.yee{bottom:664.799908px;}
.y14c{bottom:668.039908px;}
.yd7{bottom:668.849908px;}
.ye1{bottom:668.939908px;}
.y117{bottom:669.119908px;}
.y17c{bottom:670.919908px;}
.yb{bottom:672.179908px;}
.y1c4{bottom:674.789908px;}
.y2e{bottom:677.849908px;}
.y6b{bottom:677.939908px;}
.y9a{bottom:680.999908px;}
.yed{bottom:681.989908px;}
.y84{bottom:686.939908px;}
.y17b{bottom:688.199908px;}
.y134{bottom:691.709908px;}
.y116{bottom:693.869908px;}
.ya{bottom:695.039908px;}
.y4b{bottom:695.849908px;}
.yec{bottom:699.269908px;}
.ya9{bottom:700.709908px;}
.y1c3{bottom:701.789908px;}
.y99{bottom:703.859908px;}
.y2d{bottom:704.129908px;}
.y17a{bottom:705.389908px;}
.y6a{bottom:709.709908px;}
.y133{bottom:714.569908px;}
.yeb{bottom:716.549908px;}
.y115{bottom:718.709908px;}
.y179{bottom:722.669908px;}
.ya8{bottom:723.569908px;}
.y2c{bottom:724.379908px;}
.y9{bottom:725.909908px;}
.y98{bottom:728.249908px;}
.y1c2{bottom:728.789908px;}
.y69{bottom:732.569908px;}
.yea{bottom:733.739908px;}
.y114{bottom:743.459908px;}
.y8{bottom:745.709908px;}
.y4a{bottom:746.339908px;}
.ye9{bottom:751.019908px;}
.y97{bottom:752.369908px;}
.y68{bottom:755.339908px;}
.y1c1{bottom:755.789908px;}
.y1a7{bottom:758.489908px;}
.y107{bottom:762.089908px;}
.y7{bottom:765.509908px;}
.ye8{bottom:768.299908px;}
.y49{bottom:769.199908px;}
.y96{bottom:776.849908px;}
.y67{bottom:778.199908px;}
.y2b{bottom:782.789908px;}
.y48{bottom:791.969908px;}
.y113{bottom:793.049908px;}
.y6{bottom:795.569908px;}
.y66{bottom:800.969908px;}
.y2a{bottom:808.439908px;}
.y1c0{bottom:809.789908px;}
.y47{bottom:814.829908px;}
.y5{bottom:815.459908px;}
.y112{bottom:817.889908px;}
.y65{bottom:823.829908px;}
.y1bf{bottom:827.789908px;}
.y29{bottom:834.299908px;}
.y4{bottom:835.289908px;}
.yc0{bottom:837.629908px;}
.y111{bottom:842.669908px;}
.y46{bottom:846.629908px;}
.y1af{bottom:848.699908px;}
.y1be{bottom:854.819908px;}
.y3{bottom:862.289908px;}
.y110{bottom:867.509908px;}
.y45{bottom:869.489908px;}
.y1ae{bottom:891.539908px;}
.y44{bottom:892.259908px;}
.y165{bottom:893.519908px;}
.y28{bottom:894.329908px;}
.h10{height:32.449219px;}
.hb{height:40.070215px;}
.hf{height:40.341797px;}
.h7{height:48.673828px;}
.h11{height:51.269766px;}
.h9{height:53.896641px;}
.h4{height:54.190195px;}
.he{height:54.689238px;}
.h5{height:59.382070px;}
.h3{height:61.965000px;}
.hd{height:62.302500px;}
.hc{height:64.546875px;}
.h6{height:64.898438px;}
.ha{height:70.033359px;}
.h8{height:993.419850px;}
.h2{height:993.419908px;}
.h0{height:993.420000px;}
.h1{height:993.750000px;}
.w3{width:663.389980px;}
.w2{width:663.389990px;}
.w0{width:663.390000px;}
.w1{width:663.750000px;}
.x0{left:0.000000px;}
.x3{left:85.049990px;}
.x15{left:89.189990px;}
.x7{left:123.569990px;}
.x17{left:138.269990px;}
.x11{left:148.889990px;}
.x14{left:179.579990px;}
.xf{left:181.919990px;}
.x8{left:205.229990px;}
.x6{left:207.029990px;}
.x2{left:217.829990px;}
.x16{left:229.169990px;}
.xe{left:301.799990px;}
.x4{left:302.879990px;}
.x10{left:303.959990px;}
.x1{left:331.679990px;}
.xc{left:366.689990px;}
.x9{left:430.529990px;}
.xa{left:440.069990px;}
.xb{left:457.169990px;}
.x5{left:498.209990px;}
.x12{left:568.499980px;}
.x13{left:574.169990px;}
.xd{left:578.399990px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.555520pt;}
.lsd{letter-spacing:-0.486080pt;}
.ls25{letter-spacing:-0.120533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000001pt;}
.ls15{letter-spacing:0.000003pt;}
.ls1f{letter-spacing:0.020480pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.170240pt;}
.ls8{letter-spacing:0.171840pt;}
.ls3{letter-spacing:0.195520pt;}
.ls1b{letter-spacing:0.199467pt;}
.lse{letter-spacing:0.212800pt;}
.ls17{letter-spacing:0.220160pt;}
.ls19{letter-spacing:0.220267pt;}
.ls7{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.240533pt;}
.ls13{letter-spacing:0.243200pt;}
.ls20{letter-spacing:0.245760pt;}
.ls24{letter-spacing:0.252800pt;}
.ls9{letter-spacing:0.255360pt;}
.ls0{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.299520pt;}
.lsa{letter-spacing:0.319488pt;}
.ls12{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.331840pt;}
.ls23{letter-spacing:0.340267pt;}
.ls6{letter-spacing:0.367360pt;}
.ls11{letter-spacing:0.368640pt;}
.lsf{letter-spacing:0.368736pt;}
.ls1c{letter-spacing:0.399360pt;}
.ls27{letter-spacing:0.419733pt;}
.ls1e{letter-spacing:0.440320pt;}
.ls1{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.456320pt;}
.ls16{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.480960pt;}
.ls21{letter-spacing:0.526507pt;}
.ls1a{letter-spacing:4.480000pt;}
.ls26{letter-spacing:8.000000pt;}
.ls18{letter-spacing:13.440000pt;}
.wse{word-spacing:-61.440000pt;}
.ws13{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.728640pt;}
.wsd{word-spacing:-15.680000pt;}
.ws3{word-spacing:-15.679488pt;}
.wsc{word-spacing:-15.603200pt;}
.ws10{word-spacing:-15.600533pt;}
.ws12{word-spacing:-15.360003pt;}
.ws4{word-spacing:-15.360000pt;}
.ws11{word-spacing:-15.239467pt;}
.ws1{word-spacing:-14.592000pt;}
.ws5{word-spacing:-13.840960pt;}
.ws7{word-spacing:-13.728736pt;}
.ws9{word-spacing:-13.360000pt;}
.ws0{word-spacing:-13.351680pt;}
.wsf{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.895360pt;}
.ws6{word-spacing:-10.852800pt;}
.wsa{word-spacing:-10.640000pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-4.596693pt;}
._c{margin-left:-3.538453pt;}
._3{margin-left:-2.257920pt;}
._2{margin-left:-1.191680pt;}
._0{width:1.015360pt;}
._1{width:2.781547pt;}
._6{width:3.766400pt;}
._5{width:4.790507pt;}
._4{width:5.810133pt;}
._7{width:7.065600pt;}
._8{width:8.854400pt;}
._9{width:10.043840pt;}
._b{width:11.796480pt;}
._a{width:13.460373pt;}
._d{width:14.357653pt;}
._11{width:16.527360pt;}
._f{width:31.285760pt;}
._e{width:32.314240pt;}
._12{width:752.746667pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y2{bottom:22.159919pt;}
.y27{bottom:79.519919pt;}
.y132{bottom:79.599919pt;}
.yb8{bottom:81.279919pt;}
.y10f{bottom:82.159919pt;}
.y106{bottom:85.839919pt;}
.y64{bottom:89.999919pt;}
.y95{bottom:90.399919pt;}
.y83{bottom:91.919919pt;}
.ya7{bottom:92.559919pt;}
.y178{bottom:93.359919pt;}
.y26{bottom:95.359919pt;}
.y10e{bottom:96.719919pt;}
.y1a6{bottom:97.119919pt;}
.y164{bottom:97.279919pt;}
.y194{bottom:99.039919pt;}
.y131{bottom:99.919919pt;}
.yb7{bottom:101.519919pt;}
.y14b{bottom:104.159919pt;}
.y105{bottom:106.079919pt;}
.y12c{bottom:107.839919pt;}
.y63{bottom:110.239919pt;}
.y25{bottom:111.199919pt;}
.y10d{bottom:111.279919pt;}
.y94{bottom:111.839919pt;}
.y82{bottom:112.159919pt;}
.ya6{bottom:112.799919pt;}
.y1ad{bottom:113.519919pt;}
.y177{bottom:113.599919pt;}
.yd6{bottom:113.759919pt;}
.y10c{bottom:114.639919pt;}
.y1a5{bottom:117.359919pt;}
.y163{bottom:117.519919pt;}
.y193{bottom:119.279919pt;}
.y130{bottom:120.159919pt;}
.yb6{bottom:121.759919pt;}
.y14a{bottom:124.479919pt;}
.y104{bottom:126.399919pt;}
.y24{bottom:127.039919pt;}
.y10b{bottom:129.119919pt;}
.y12b{bottom:129.919919pt;}
.y62{bottom:130.559919pt;}
.y43{bottom:131.999919pt;}
.y93{bottom:132.159919pt;}
.y81{bottom:132.479919pt;}
.ya5{bottom:133.146585pt;}
.y176{bottom:133.946585pt;}
.yd5{bottom:134.106585pt;}
.y1a4{bottom:137.706585pt;}
.y162{bottom:137.866585pt;}
.y192{bottom:139.626585pt;}
.y12f{bottom:140.506585pt;}
.y1ac{bottom:141.786585pt;}
.ybf{bottom:142.106585pt;}
.y23{bottom:142.826585pt;}
.y149{bottom:144.746585pt;}
.y103{bottom:146.666585pt;}
.y61{bottom:150.826585pt;}
.y12a{bottom:151.946585pt;}
.y42{bottom:152.346585pt;}
.y92{bottom:152.426585pt;}
.yb5{bottom:152.666585pt;}
.y80{bottom:152.746585pt;}
.ya4{bottom:153.386585pt;}
.y175{bottom:154.186585pt;}
.yd4{bottom:154.346585pt;}
.y1a3{bottom:157.946585pt;}
.y161{bottom:158.106585pt;}
.y22{bottom:158.666585pt;}
.y191{bottom:159.866585pt;}
.y12e{bottom:160.746585pt;}
.y1ab{bottom:162.106585pt;}
.ybe{bottom:162.346585pt;}
.y148{bottom:165.066585pt;}
.y102{bottom:166.906585pt;}
.y10a{bottom:170.586585pt;}
.y60{bottom:171.066585pt;}
.y41{bottom:172.586585pt;}
.y91{bottom:172.746585pt;}
.y7f{bottom:173.066585pt;}
.ya3{bottom:173.706585pt;}
.y129{bottom:174.026585pt;}
.y21{bottom:174.506585pt;}
.yd3{bottom:174.666585pt;}
.y1a2{bottom:178.186585pt;}
.y160{bottom:178.426585pt;}
.y190{bottom:180.186585pt;}
.y12d{bottom:181.066585pt;}
.y1aa{bottom:182.346585pt;}
.y174{bottom:182.506585pt;}
.ybd{bottom:182.666585pt;}
.y147{bottom:185.306585pt;}
.y101{bottom:187.226585pt;}
.y20{bottom:189.066585pt;}
.y5f{bottom:191.386585pt;}
.y40{bottom:192.906585pt;}
.y90{bottom:192.986585pt;}
.ye7{bottom:193.306585pt;}
.y109{bottom:194.506585pt;}
.yd2{bottom:194.906585pt;}
.y128{bottom:196.026585pt;}
.y1a1{bottom:198.506585pt;}
.y15f{bottom:198.666585pt;}
.y18f{bottom:200.426585pt;}
.y7e{bottom:201.306585pt;}
.y173{bottom:202.746585pt;}
.ybc{bottom:202.906585pt;}
.y1f{bottom:203.706585pt;}
.ya2{bottom:204.586585pt;}
.y146{bottom:205.626585pt;}
.y1bd{bottom:206.906585pt;}
.y100{bottom:207.466585pt;}
.yb4{bottom:209.306585pt;}
.y5e{bottom:211.626585pt;}
.y3f{bottom:213.146585pt;}
.y8f{bottom:213.306585pt;}
.ye6{bottom:213.626585pt;}
.yd1{bottom:215.226585pt;}
.y1a9{bottom:215.466585pt;}
.y1e{bottom:218.266585pt;}
.y15e{bottom:218.906585pt;}
.y18e{bottom:220.746585pt;}
.y7d{bottom:221.626585pt;}
.y172{bottom:223.066585pt;}
.ybb{bottom:223.226585pt;}
.y145{bottom:225.866585pt;}
.y127{bottom:226.106585pt;}
.y1a0{bottom:226.746585pt;}
.yff{bottom:227.786585pt;}
.yb3{bottom:229.626585pt;}
.y5d{bottom:231.946585pt;}
.y3e{bottom:233.386585pt;}
.ye5{bottom:233.866585pt;}
.y1bc{bottom:235.146585pt;}
.yd0{bottom:235.466585pt;}
.ya1{bottom:237.786585pt;}
.y15d{bottom:239.226585pt;}
.y1a8{bottom:239.306585pt;}
.y18d{bottom:240.986585pt;}
.y7c{bottom:241.866585pt;}
.y171{bottom:243.306585pt;}
.ye0{bottom:243.466585pt;}
.y1d{bottom:243.626585pt;}
.y8e{bottom:244.106585pt;}
.y144{bottom:246.186585pt;}
.y19f{bottom:247.066585pt;}
.y126{bottom:248.106585pt;}
.y1d3{bottom:248.826585pt;}
.yb2{bottom:249.866585pt;}
.y5c{bottom:252.186585pt;}
.yba{bottom:254.106585pt;}
.y1bb{bottom:255.466585pt;}
.ycf{bottom:255.786585pt;}
.yfe{bottom:256.026585pt;}
.y18c{bottom:261.226585pt;}
.ya0{bottom:261.626585pt;}
.y3d{bottom:261.706585pt;}
.y7b{bottom:262.186585pt;}
.y170{bottom:263.626585pt;}
.ydf{bottom:263.786585pt;}
.y143{bottom:266.426585pt;}
.y19e{bottom:267.306585pt;}
.y15c{bottom:268.106585pt;}
.y125{bottom:270.186585pt;}
.y5b{bottom:272.506585pt;}
.y1c{bottom:272.746585pt;}
.y1d2{bottom:272.826585pt;}
.y1ba{bottom:275.706585pt;}
.yfd{bottom:276.346585pt;}
.yb1{bottom:278.186585pt;}
.y8d{bottom:280.506585pt;}
.y18b{bottom:281.546585pt;}
.y3c{bottom:281.946585pt;}
.y7a{bottom:282.426585pt;}
.y16f{bottom:283.866585pt;}
.yce{bottom:284.026585pt;}
.y15b{bottom:284.426585pt;}
.y142{bottom:286.666585pt;}
.y19d{bottom:287.626585pt;}
.yb9{bottom:290.426585pt;}
.y124{bottom:292.186585pt;}
.y1b{bottom:295.546585pt;}
.y1b9{bottom:296.026585pt;}
.yfc{bottom:296.586585pt;}
.y1d1{bottom:296.826585pt;}
.yb0{bottom:298.426585pt;}
.y5a{bottom:300.746585pt;}
.y15a{bottom:300.826585pt;}
.y18a{bottom:301.786585pt;}
.y3b{bottom:302.266585pt;}
.ye4{bottom:302.666585pt;}
.y16e{bottom:304.186585pt;}
.ycd{bottom:304.346585pt;}
.y141{bottom:306.986585pt;}
.y19c{bottom:307.866585pt;}
.y79{bottom:310.666585pt;}
.y1a{bottom:313.146585pt;}
.y123{bottom:314.266585pt;}
.y1b8{bottom:316.266585pt;}
.yfb{bottom:316.906585pt;}
.yaf{bottom:318.666585pt;}
.y59{bottom:321.066585pt;}
.y189{bottom:322.106585pt;}
.y3a{bottom:322.506585pt;}
.ye3{bottom:322.986585pt;}
.y16d{bottom:324.426585pt;}
.ycc{bottom:324.586585pt;}
.y1d0{bottom:326.506585pt;}
.y140{bottom:327.226585pt;}
.y159{bottom:327.786585pt;}
.y19b{bottom:328.186585pt;}
.y19{bottom:330.746585pt;}
.y78{bottom:330.986585pt;}
.y122{bottom:336.266585pt;}
.y1b7{bottom:336.586585pt;}
.yfa{bottom:337.146585pt;}
.yae{bottom:338.986585pt;}
.y58{bottom:341.306585pt;}
.y188{bottom:342.346585pt;}
.ye2{bottom:343.226585pt;}
.y158{bottom:344.186585pt;}
.y16c{bottom:344.666585pt;}
.ycb{bottom:344.826585pt;}
.y13f{bottom:347.546585pt;}
.y18{bottom:348.346585pt;}
.y39{bottom:350.826585pt;}
.y77{bottom:351.226585pt;}
.y1b6{bottom:356.826585pt;}
.yf9{bottom:357.466585pt;}
.yad{bottom:359.226585pt;}
.y1cf{bottom:359.786585pt;}
.y157{bottom:360.506585pt;}
.y57{bottom:361.626585pt;}
.y19a{bottom:362.026585pt;}
.yca{bottom:365.146585pt;}
.y17{bottom:365.946585pt;}
.y121{bottom:366.346585pt;}
.y13e{bottom:367.786585pt;}
.y187{bottom:370.666585pt;}
.y38{bottom:371.066585pt;}
.y76{bottom:371.546585pt;}
.y1b5{bottom:377.066585pt;}
.yf8{bottom:377.706585pt;}
.y16b{bottom:378.586585pt;}
.yac{bottom:379.546585pt;}
.y56{bottom:381.866585pt;}
.y199{bottom:383.146585pt;}
.y16{bottom:383.546585pt;}
.y1ce{bottom:383.786585pt;}
.yc9{bottom:385.386585pt;}
.y156{bottom:387.546585pt;}
.y120{bottom:388.346585pt;}
.y186{bottom:390.906585pt;}
.y37{bottom:391.386585pt;}
.y75{bottom:391.786585pt;}
.y8c{bottom:395.466585pt;}
.y13d{bottom:396.106585pt;}
.y1b4{bottom:397.386585pt;}
.yf7{bottom:398.026585pt;}
.yab{bottom:399.786585pt;}
.y15{bottom:401.066585pt;}
.y55{bottom:402.186585pt;}
.y155{bottom:403.866585pt;}
.yc8{bottom:405.706585pt;}
.y1cd{bottom:407.786585pt;}
.y11f{bottom:410.426585pt;}
.y185{bottom:411.226585pt;}
.y36{bottom:411.626585pt;}
.y74{bottom:412.106585pt;}
.y13c{bottom:416.346585pt;}
.y1b3{bottom:417.626585pt;}
.yf6{bottom:418.266585pt;}
.y14{bottom:418.666585pt;}
.yaa{bottom:420.106585pt;}
.y154{bottom:420.266585pt;}
.y54{bottom:422.426585pt;}
.y16a{bottom:423.466585pt;}
.yde{bottom:425.946585pt;}
.y198{bottom:428.106585pt;}
.y184{bottom:431.466585pt;}
.y1cc{bottom:431.786585pt;}
.y35{bottom:431.946585pt;}
.y73{bottom:432.346585pt;}
.y11e{bottom:432.426585pt;}
.yc7{bottom:436.586585pt;}
.y13b{bottom:436.666585pt;}
.y13{bottom:436.746585pt;}
.y1b2{bottom:437.973252pt;}
.yf5{bottom:438.533252pt;}
.y8b{bottom:440.373252pt;}
.y53{bottom:442.693252pt;}
.y169{bottom:443.733252pt;}
.y153{bottom:447.333252pt;}
.y1cb{bottom:447.813252pt;}
.y197{bottom:448.373252pt;}
.y183{bottom:451.813252pt;}
.y34{bottom:452.213252pt;}
.y72{bottom:452.693252pt;}
.ydd{bottom:454.293252pt;}
.y11d{bottom:454.533252pt;}
.y12{bottom:456.133252pt;}
.y13a{bottom:456.933252pt;}
.y8a{bottom:460.693252pt;}
.y52{bottom:463.013252pt;}
.y152{bottom:463.653252pt;}
.y168{bottom:464.053252pt;}
.y196{bottom:468.693252pt;}
.y1b1{bottom:471.093252pt;}
.y1ca{bottom:471.813252pt;}
.y182{bottom:472.053252pt;}
.yf4{bottom:472.373252pt;}
.yc6{bottom:472.933252pt;}
.ydc{bottom:474.533252pt;}
.y11{bottom:475.893252pt;}
.y11c{bottom:476.533252pt;}
.y139{bottom:477.253252pt;}
.y9f{bottom:478.453252pt;}
.y71{bottom:480.933252pt;}
.y51{bottom:483.253252pt;}
.y33{bottom:486.053252pt;}
.y195{bottom:488.933252pt;}
.y151{bottom:490.693252pt;}
.y181{bottom:492.293252pt;}
.yc5{bottom:493.253252pt;}
.ydb{bottom:494.853252pt;}
.y1b0{bottom:494.933252pt;}
.y1c9{bottom:495.813252pt;}
.y10{bottom:496.133252pt;}
.y167{bottom:497.173252pt;}
.y138{bottom:497.493252pt;}
.y11b{bottom:498.613252pt;}
.y70{bottom:501.253252pt;}
.y50{bottom:503.573252pt;}
.y108{bottom:503.973252pt;}
.y150{bottom:507.013252pt;}
.y89{bottom:509.253252pt;}
.y1c8{bottom:511.813252pt;}
.y180{bottom:512.613252pt;}
.yc4{bottom:513.493252pt;}
.yf3{bottom:514.213252pt;}
.yda{bottom:515.093252pt;}
.y9e{bottom:516.213252pt;}
.yf{bottom:516.453252pt;}
.y137{bottom:517.733252pt;}
.y11a{bottom:520.613252pt;}
.y166{bottom:521.013252pt;}
.y6f{bottom:521.493252pt;}
.y4f{bottom:523.813252pt;}
.y32{bottom:527.893252pt;}
.y88{bottom:529.493252pt;}
.yf2{bottom:529.573252pt;}
.y17f{bottom:532.853252pt;}
.yc3{bottom:533.733252pt;}
.y14f{bottom:534.053252pt;}
.y1c7{bottom:535.813252pt;}
.y9d{bottom:536.533252pt;}
.ye{bottom:536.693252pt;}
.y6e{bottom:541.733252pt;}
.y119{bottom:542.693252pt;}
.y31{bottom:543.253252pt;}
.yd9{bottom:543.413252pt;}
.y4e{bottom:544.133252pt;}
.yf1{bottom:544.933252pt;}
.y136{bottom:546.053252pt;}
.y87{bottom:549.733252pt;}
.y14e{bottom:550.373252pt;}
.y17e{bottom:553.173252pt;}
.yc2{bottom:554.053252pt;}
.y9c{bottom:556.773252pt;}
.yd{bottom:557.013252pt;}
.y1c6{bottom:559.813252pt;}
.yf0{bottom:560.293252pt;}
.y30{bottom:561.253252pt;}
.y6d{bottom:562.053252pt;}
.yd8{bottom:563.653252pt;}
.y4d{bottom:564.373252pt;}
.y135{bottom:566.293252pt;}
.y14d{bottom:566.773252pt;}
.y86{bottom:570.053252pt;}
.y118{bottom:572.693252pt;}
.yc1{bottom:574.293252pt;}
.yef{bottom:575.573252pt;}
.yc{bottom:577.253252pt;}
.y17d{bottom:581.013252pt;}
.y6c{bottom:582.293252pt;}
.y1c5{bottom:583.813252pt;}
.y2f{bottom:584.533252pt;}
.y4c{bottom:584.693252pt;}
.y9b{bottom:585.093252pt;}
.y85{bottom:590.293252pt;}
.yee{bottom:590.933252pt;}
.y14c{bottom:593.813252pt;}
.yd7{bottom:594.533252pt;}
.ye1{bottom:594.613252pt;}
.y117{bottom:594.773252pt;}
.y17c{bottom:596.373252pt;}
.yb{bottom:597.493252pt;}
.y1c4{bottom:599.813252pt;}
.y2e{bottom:602.533252pt;}
.y6b{bottom:602.613252pt;}
.y9a{bottom:605.333252pt;}
.yed{bottom:606.213252pt;}
.y84{bottom:610.613252pt;}
.y17b{bottom:611.733252pt;}
.y134{bottom:614.853252pt;}
.y116{bottom:616.773252pt;}
.ya{bottom:617.813252pt;}
.y4b{bottom:618.533252pt;}
.yec{bottom:621.573252pt;}
.ya9{bottom:622.853252pt;}
.y1c3{bottom:623.813252pt;}
.y99{bottom:625.653252pt;}
.y2d{bottom:625.893252pt;}
.y17a{bottom:627.013252pt;}
.y6a{bottom:630.853252pt;}
.y133{bottom:635.173252pt;}
.yeb{bottom:636.933252pt;}
.y115{bottom:638.853252pt;}
.y179{bottom:642.373252pt;}
.ya8{bottom:643.173252pt;}
.y2c{bottom:643.893252pt;}
.y9{bottom:645.253252pt;}
.y98{bottom:647.333252pt;}
.y1c2{bottom:647.813252pt;}
.y69{bottom:651.173252pt;}
.yea{bottom:652.213252pt;}
.y114{bottom:660.853252pt;}
.y8{bottom:662.853252pt;}
.y4a{bottom:663.413252pt;}
.ye9{bottom:667.573252pt;}
.y97{bottom:668.773252pt;}
.y68{bottom:671.413252pt;}
.y1c1{bottom:671.813252pt;}
.y1a7{bottom:674.213252pt;}
.y107{bottom:677.413252pt;}
.y7{bottom:680.453252pt;}
.ye8{bottom:682.933252pt;}
.y49{bottom:683.733252pt;}
.y96{bottom:690.533252pt;}
.y67{bottom:691.733252pt;}
.y2b{bottom:695.813252pt;}
.y48{bottom:703.973252pt;}
.y113{bottom:704.933252pt;}
.y6{bottom:707.173252pt;}
.y66{bottom:711.973252pt;}
.y2a{bottom:718.613252pt;}
.y1c0{bottom:719.813252pt;}
.y47{bottom:724.293252pt;}
.y5{bottom:724.853252pt;}
.y112{bottom:727.013252pt;}
.y65{bottom:732.293252pt;}
.y1bf{bottom:735.813252pt;}
.y29{bottom:741.599919pt;}
.y4{bottom:742.479919pt;}
.yc0{bottom:744.559919pt;}
.y111{bottom:749.039919pt;}
.y46{bottom:752.559919pt;}
.y1af{bottom:754.399919pt;}
.y1be{bottom:759.839919pt;}
.y3{bottom:766.479919pt;}
.y110{bottom:771.119919pt;}
.y45{bottom:772.879919pt;}
.y1ae{bottom:792.479919pt;}
.y44{bottom:793.119919pt;}
.y165{bottom:794.239919pt;}
.y28{bottom:794.959919pt;}
.h10{height:28.843750pt;}
.hb{height:35.617969pt;}
.hf{height:35.859375pt;}
.h7{height:43.265625pt;}
.h11{height:45.573125pt;}
.h9{height:47.908125pt;}
.h4{height:48.169062pt;}
.he{height:48.612656pt;}
.h5{height:52.784062pt;}
.h3{height:55.080000pt;}
.hd{height:55.380000pt;}
.hc{height:57.375000pt;}
.h6{height:57.687500pt;}
.ha{height:62.251875pt;}
.h8{height:883.039867pt;}
.h2{height:883.039919pt;}
.h0{height:883.040000pt;}
.h1{height:883.333333pt;}
.w3{width:589.679982pt;}
.w2{width:589.679991pt;}
.w0{width:589.680000pt;}
.w1{width:590.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.599991pt;}
.x15{left:79.279991pt;}
.x7{left:109.839991pt;}
.x17{left:122.906658pt;}
.x11{left:132.346658pt;}
.x14{left:159.626658pt;}
.xf{left:161.706658pt;}
.x8{left:182.426658pt;}
.x6{left:184.026658pt;}
.x2{left:193.626658pt;}
.x16{left:203.706658pt;}
.xe{left:268.266658pt;}
.x4{left:269.226658pt;}
.x10{left:270.186658pt;}
.x1{left:294.826658pt;}
.xc{left:325.946658pt;}
.x9{left:382.693325pt;}
.xa{left:391.173325pt;}
.xb{left:406.373325pt;}
.x5{left:442.853325pt;}
.x12{left:505.333316pt;}
.x13{left:510.373325pt;}
.xd{left:514.133325pt;}
}




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