
    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_9646a9147b8c4c635c702fa1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_dbbde66fbb65564ffd83c563.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956000;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_865b70e10072d7269a1f3b1f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.189000;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_5d1e0a22c5a494830d2d0730.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947000;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_a5cb7558e0465678c2ac8d0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_b1eeb15225ce3893de3b8ff3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893036;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_7d0b79b30805717423461497.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689000;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_debb21b0b361274622563af3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688000;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_c60e4c3fe6327a09a10d555d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900341;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_966fce332b5fc129ae0805cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.514000;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_89ee8e721e11020f6a01b78a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.756000;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_c5c056a7694f54b8c19ae296.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.915000;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);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.381456px;}
.v2{vertical-align:-1.362884px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.439580px;}
.v5{vertical-align:17.348977px;}
.v4{vertical-align:21.835427px;}
.ls13{letter-spacing:-0.902612px;}
.lsa{letter-spacing:-0.896634px;}
.ls12{letter-spacing:-0.854791px;}
.lsb{letter-spacing:-0.771105px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.011955px;}
.lse{letter-spacing:0.047820px;}
.ls1b{letter-spacing:0.239106px;}
.ls10{letter-spacing:0.340721px;}
.ls15{letter-spacing:0.384652px;}
.ls18{letter-spacing:2.867382px;}
.lsc{letter-spacing:2.989044px;}
.ls16{letter-spacing:2.989644px;}
.ls1e{letter-spacing:4.710388px;}
.ls5{letter-spacing:6.288393px;}
.ls1d{letter-spacing:6.752353px;}
.ls1{letter-spacing:7.409771px;}
.ls11{letter-spacing:7.723124px;}
.ls2{letter-spacing:7.746905px;}
.ls3{letter-spacing:9.791227px;}
.ls19{letter-spacing:13.217780px;}
.ls1a{letter-spacing:13.557310px;}
.ls1c{letter-spacing:13.752582px;}
.ls6{letter-spacing:15.919677px;}
.ls7{letter-spacing:20.066669px;}
.ls17{letter-spacing:20.431300px;}
.lsd{letter-spacing:20.455210px;}
.ls9{letter-spacing:21.289642px;}
.lsf{letter-spacing:28.841244px;}
.ls4{letter-spacing:31.217157px;}
.ls14{letter-spacing:32.242644px;}
.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;}
}
.ws5{word-spacing:-21.361373px;}
.wsf{word-spacing:-0.059776px;}
.ws53{word-spacing:-0.047821px;}
.ws60{word-spacing:0.000000px;}
.ws177{word-spacing:6.360220px;}
.ws180{word-spacing:6.384130px;}
.ws189{word-spacing:6.451080px;}
.ws17f{word-spacing:6.470208px;}
.wsc0{word-spacing:6.699750px;}
.ws178{word-spacing:6.704532px;}
.wsbd{word-spacing:7.034499px;}
.ws18a{word-spacing:7.039281px;}
.ws16d{word-spacing:7.287951px;}
.ws161{word-spacing:7.292733px;}
.ws18c{word-spacing:7.335772px;}
.wsbe{word-spacing:7.397940px;}
.wsbf{word-spacing:7.727906px;}
.wsbc{word-spacing:7.895280px;}
.wsbb{word-spacing:7.967012px;}
.ws165{word-spacing:8.784754px;}
.ws59{word-spacing:8.923436px;}
.wsb9{word-spacing:8.995168px;}
.ws166{word-spacing:9.105156px;}
.wsba{word-spacing:9.258184px;}
.wsb5{word-spacing:9.382519px;}
.wsb4{word-spacing:9.506855px;}
.wsb6{word-spacing:9.669447px;}
.wsf1{word-spacing:9.898839px;}
.wsf2{word-spacing:9.940682px;}
.ws162{word-spacing:10.616306px;}
.ws17d{word-spacing:11.271457px;}
.ws14f{word-spacing:11.343189px;}
.ws146{word-spacing:11.362317px;}
.ws58{word-spacing:11.371881px;}
.ws10c{word-spacing:11.375297px;}
.ws147{word-spacing:11.486652px;}
.ws17b{word-spacing:11.577513px;}
.wsa{word-spacing:11.716018px;}
.ws9{word-spacing:11.739928px;}
.ws176{word-spacing:11.740105px;}
.ws3d{word-spacing:11.877412px;}
.ws119{word-spacing:11.889367px;}
.ws94{word-spacing:11.985008px;}
.wsb{word-spacing:12.056739px;}
.wse4{word-spacing:12.253998px;}
.ws187{word-spacing:12.266138px;}
.ws2e{word-spacing:12.415392px;}
.ws16b{word-spacing:12.529154px;}
.ws168{word-spacing:12.572193px;}
.wsd3{word-spacing:12.594719px;}
.ws16c{word-spacing:12.620015px;}
.ws13f{word-spacing:12.667836px;}
.ws15b{word-spacing:12.677400px;}
.ws186{word-spacing:12.696529px;}
.ws15d{word-spacing:12.706093px;}
.ws170{word-spacing:12.710875px;}
.ws184{word-spacing:12.734786px;}
.ws17e{word-spacing:12.753914px;}
.ws167{word-spacing:12.773043px;}
.ws157{word-spacing:12.777825px;}
.ws159{word-spacing:12.787389px;}
.ws171{word-spacing:12.792171px;}
.ws16f{word-spacing:12.806517px;}
.ws169{word-spacing:12.816082px;}
.ws185{word-spacing:12.820864px;}
.ws182{word-spacing:12.830428px;}
.ws15e{word-spacing:12.835210px;}
.ws14a{word-spacing:12.839992px;}
.ws14e{word-spacing:12.844774px;}
.ws15c{word-spacing:12.859121px;}
.ws139{word-spacing:12.863709px;}
.ws13e{word-spacing:12.868685px;}
.ws179{word-spacing:12.873467px;}
.ws16e{word-spacing:12.883031px;}
.ws164{word-spacing:12.887813px;}
.ws158{word-spacing:12.897378px;}
.ws152{word-spacing:12.902160px;}
.ws154{word-spacing:12.916506px;}
.ws28{word-spacing:12.935440px;}
.ws145{word-spacing:12.940417px;}
.ws155{word-spacing:12.945199px;}
.ws151{word-spacing:12.954763px;}
.ws14b{word-spacing:12.969109px;}
.ws142{word-spacing:12.988238px;}
.ws16a{word-spacing:13.002584px;}
.ws149{word-spacing:13.012149px;}
.ws143{word-spacing:13.016931px;}
.ws15f{word-spacing:13.021713px;}
.ws14d{word-spacing:13.031277px;}
.ws156{word-spacing:13.055188px;}
.ws17c{word-spacing:13.064752px;}
.ws153{word-spacing:13.069534px;}
.ws2d{word-spacing:13.072924px;}
.ws150{word-spacing:13.074316px;}
.ws144{word-spacing:13.098227px;}
.ws188{word-spacing:13.117355px;}
.ws15a{word-spacing:13.131702px;}
.ws140{word-spacing:13.160394px;}
.ws18b{word-spacing:13.165176px;}
.ws148{word-spacing:13.169958px;}
.ws4d{word-spacing:13.192475px;}
.ws173{word-spacing:13.193869px;}
.ws175{word-spacing:13.198651px;}
.ws160{word-spacing:13.222562px;}
.ws17a{word-spacing:13.270383px;}
.ws14c{word-spacing:13.284729px;}
.ws136{word-spacing:13.332551px;}
.wsfe{word-spacing:13.359847px;}
.ws163{word-spacing:13.361243px;}
.wsfb{word-spacing:13.371802px;}
.ws174{word-spacing:13.375590px;}
.ws172{word-spacing:13.437757px;}
.ws183{word-spacing:13.442539px;}
.ws181{word-spacing:13.456886px;}
.ws141{word-spacing:13.509489px;}
.ws132{word-spacing:13.519053px;}
.ws98{word-spacing:13.664702px;}
.ws37{word-spacing:13.718500px;}
.ws135{word-spacing:13.719902px;}
.wsb8{word-spacing:13.748595px;}
.ws131{word-spacing:13.753377px;}
.ws72{word-spacing:13.802186px;}
.ws137{word-spacing:13.815545px;}
.ws133{word-spacing:13.820327px;}
.wse{word-spacing:13.920751px;}
.ws3a{word-spacing:13.921737px;}
.wsdc{word-spacing:13.933692px;}
.wsc1{word-spacing:13.935098px;}
.ws134{word-spacing:13.968573px;}
.wsb7{word-spacing:14.040304px;}
.ws123{word-spacing:14.250503px;}
.ws57{word-spacing:14.284192px;}
.wsb3{word-spacing:14.360706px;}
.wse5{word-spacing:14.387987px;}
.wsd2{word-spacing:14.435807px;}
.ws104{word-spacing:14.447763px;}
.ws105{word-spacing:14.471673px;}
.wsdb{word-spacing:14.633067px;}
.ws11f{word-spacing:14.931945px;}
.wsd0{word-spacing:14.973788px;}
.wseb{word-spacing:14.979765px;}
.ws10{word-spacing:14.997698px;}
.wsfa{word-spacing:15.057474px;}
.wsc7{word-spacing:15.242778px;}
.ws20{word-spacing:15.248756px;}
.wsd5{word-spacing:15.278643px;}
.wsc9{word-spacing:15.290598px;}
.ws5b{word-spacing:15.379298px;}
.ws54{word-spacing:15.398426px;}
.ws52{word-spacing:15.484505px;}
.ws51{word-spacing:15.517746px;}
.ws5a{word-spacing:15.551454px;}
.ws55{word-spacing:15.584929px;}
.ws56{word-spacing:15.685354px;}
.ws86{word-spacing:15.798691px;}
.wsed{word-spacing:15.995951px;}
.ws138{word-spacing:16.079636px;}
.ws101{word-spacing:16.097569px;}
.wsef{word-spacing:16.169300px;}
.ws100{word-spacing:16.199188px;}
.ws2c{word-spacing:16.252986px;}
.ws18{word-spacing:16.264941px;}
.ws34{word-spacing:16.336671px;}
.wsca{word-spacing:16.420357px;}
.ws63{word-spacing:16.426335px;}
.ws4c{word-spacing:16.432312px;}
.wsee{word-spacing:16.450245px;}
.ws64{word-spacing:16.474155px;}
.wsd4{word-spacing:16.480133px;}
.wsf3{word-spacing:16.593707px;}
.wsb0{word-spacing:16.677392px;}
.wse7{word-spacing:16.701303px;}
.ws7b{word-spacing:16.761078px;}
.ws107{word-spacing:16.790966px;}
.ws3c{word-spacing:16.970293px;}
.ws8a{word-spacing:17.018113px;}
.ws12a{word-spacing:17.042024px;}
.ws33{word-spacing:17.101799px;}
.wscb{word-spacing:17.191463px;}
.ws2f{word-spacing:17.215373px;}
.wse6{word-spacing:17.299059px;}
.ws7e{word-spacing:17.358834px;}
.ws36{word-spacing:17.370789px;}
.ws99{word-spacing:17.376767px;}
.ws111{word-spacing:17.544139px;}
.ws93{word-spacing:17.663690px;}
.wsaa{word-spacing:17.675645px;}
.ws92{word-spacing:17.765308px;}
.wsff{word-spacing:17.783241px;}
.wsc{word-spacing:17.837039px;}
.wsb1{word-spacing:17.837308px;}
.wsf9{word-spacing:17.884860px;}
.wsf7{word-spacing:17.908770px;}
.ws8d{word-spacing:17.920725px;}
.wsb2{word-spacing:17.942514px;}
.wsc6{word-spacing:17.944635px;}
.ws108{word-spacing:17.956590px;}
.ws41{word-spacing:17.980500px;}
.ws8e{word-spacing:17.992456px;}
.wse8{word-spacing:18.034299px;}
.ws42{word-spacing:18.058209px;}
.ws10a{word-spacing:18.129939px;}
.wsd{word-spacing:18.177760px;}
.wsdd{word-spacing:18.267423px;}
.ws10d{word-spacing:18.339154px;}
.wsae{word-spacing:18.375019px;}
.wsf4{word-spacing:18.428817px;}
.wsa2{word-spacing:18.506526px;}
.ws61{word-spacing:18.578256px;}
.wsf5{word-spacing:18.590212px;}
.ws7c{word-spacing:18.608144px;}
.ws128{word-spacing:18.626077px;}
.ws103{word-spacing:18.638032px;}
.wsa3{word-spacing:18.715740px;}
.wse2{word-spacing:18.799426px;}
.ws70{word-spacing:18.907022px;}
.ws106{word-spacing:18.930933px;}
.ws39{word-spacing:18.936910px;}
.ws43{word-spacing:18.966798px;}
.wsc2{word-spacing:19.056461px;}
.wsf0{word-spacing:19.116237px;}
.ws10f{word-spacing:19.140147px;}
.ws66{word-spacing:19.259698px;}
.ws3f{word-spacing:19.349362px;}
.ws112{word-spacing:19.373272px;}
.wsaf{word-spacing:19.397182px;}
.wsa5{word-spacing:19.421092px;}
.ws5f{word-spacing:19.690083px;}
.ws5c{word-spacing:19.785724px;}
.ws5d{word-spacing:19.797679px;}
.ws129{word-spacing:19.821589px;}
.ws3b{word-spacing:19.947118px;}
.wsd1{word-spacing:20.042759px;}
.wsa4{word-spacing:20.102534px;}
.ws3e{word-spacing:20.126445px;}
.ws8c{word-spacing:20.216108px;}
.ws12d{word-spacing:20.222085px;}
.wsf6{word-spacing:20.419345px;}
.ws9d{word-spacing:20.443255px;}
.ws12b{word-spacing:20.467165px;}
.wsc5{word-spacing:20.479121px;}
.ws12c{word-spacing:20.503031px;}
.ws4e{word-spacing:20.556829px;}
.ws9f{word-spacing:20.592694px;}
.ws11e{word-spacing:20.616604px;}
.ws7f{word-spacing:20.712245px;}
.ws1f{word-spacing:20.718223px;}
.ws109{word-spacing:20.760066px;}
.ws24{word-spacing:20.789954px;}
.wsfd{word-spacing:20.843752px;}
.ws9e{word-spacing:20.933415px;}
.ws120{word-spacing:21.005146px;}
.wsc8{word-spacing:21.052966px;}
.wsab{word-spacing:21.058944px;}
.ws102{word-spacing:21.100787px;}
.ws50{word-spacing:21.154585px;}
.ws35{word-spacing:21.238271px;}
.ws6e{word-spacing:21.393687px;}
.wsdf{word-spacing:21.441508px;}
.ws4{word-spacing:21.447449px;}
.ws8{word-spacing:21.461796px;}
.ws3{word-spacing:21.497661px;}
.wse1{word-spacing:21.602902px;}
.ws7{word-spacing:21.648295px;}
.ws6{word-spacing:21.655468px;}
.ws117{word-spacing:21.776251px;}
.wsf8{word-spacing:21.859937px;}
.ws10b{word-spacing:21.907757px;}
.ws16{word-spacing:21.919713px;}
.ws89{word-spacing:22.033286px;}
.ws96{word-spacing:22.075129px;}
.ws9a{word-spacing:22.116972px;}
.ws118{word-spacing:22.140882px;}
.ws31{word-spacing:22.260433px;}
.ws19{word-spacing:22.457693px;}
.ws25{word-spacing:22.589199px;}
.ws6d{word-spacing:22.989696px;}
.ws32{word-spacing:23.001651px;}
.wsde{word-spacing:23.019584px;}
.wsec{word-spacing:23.139135px;}
.ws21{word-spacing:23.270641px;}
.ws6b{word-spacing:23.300529px;}
.ws84{word-spacing:23.503766px;}
.wsd6{word-spacing:23.509743px;}
.wse9{word-spacing:23.515721px;}
.ws65{word-spacing:23.539631px;}
.ws83{word-spacing:23.617340px;}
.ws11c{word-spacing:23.772756px;}
.wsa9{word-spacing:23.904262px;}
.ws85{word-spacing:23.910240px;}
.ws1b{word-spacing:23.952083px;}
.ws95{word-spacing:23.958060px;}
.ws7d{word-spacing:24.005881px;}
.ws90{word-spacing:24.065657px;}
.ws8f{word-spacing:24.101522px;}
.ws2a{word-spacing:24.125432px;}
.ws71{word-spacing:24.161298px;}
.ws97{word-spacing:24.244983px;}
.ws1e{word-spacing:24.298781px;}
.wsd9{word-spacing:24.555816px;}
.ws80{word-spacing:24.687323px;}
.ws88{word-spacing:24.842739px;}
.ws6c{word-spacing:25.028044px;}
.ws78{word-spacing:25.039999px;}
.ws7a{word-spacing:25.135640px;}
.ws40{word-spacing:25.177483px;}
.ws79{word-spacing:25.201393px;}
.ws6f{word-spacing:25.261169px;}
.wsea{word-spacing:25.601889px;}
.ws44{word-spacing:25.661665px;}
.ws12e{word-spacing:25.709486px;}
.wsa0{word-spacing:25.858925px;}
.wsa1{word-spacing:25.882835px;}
.ws114{word-spacing:25.960543px;}
.ws116{word-spacing:25.978476px;}
.ws9c{word-spacing:26.050206px;}
.wsfc{word-spacing:26.283331px;}
.ws115{word-spacing:26.378972px;}
.ws113{word-spacing:26.396905px;}
.ws9b{word-spacing:26.456681px;}
.ws45{word-spacing:26.480591px;}
.wse0{word-spacing:26.713716px;}
.ws73{word-spacing:26.731648px;}
.ws67{word-spacing:26.845222px;}
.ws74{word-spacing:26.910975px;}
.wscf{word-spacing:26.994661px;}
.wscc{word-spacing:27.221808px;}
.ws11a{word-spacing:27.281584px;}
.ws11b{word-spacing:27.365270px;}
.wsc3{word-spacing:27.562529px;}
.ws4b{word-spacing:27.747834px;}
.ws4a{word-spacing:27.879340px;}
.ws125{word-spacing:28.261904px;}
.ws124{word-spacing:28.327657px;}
.ws11{word-spacing:28.333634px;}
.ws82{word-spacing:28.339612px;}
.ws6a{word-spacing:28.369500px;}
.ws121{word-spacing:28.584692px;}
.ws38{word-spacing:28.596647px;}
.ws1a{word-spacing:28.674355px;}
.wsce{word-spacing:28.686310px;}
.wscd{word-spacing:28.919435px;}
.ws91{word-spacing:29.110717px;}
.wsa6{word-spacing:29.218313px;}
.wsc4{word-spacing:29.576967px;}
.ws11d{word-spacing:29.732383px;}
.ws4f{word-spacing:30.025284px;}
.wsd8{word-spacing:30.186678px;}
.wsda{word-spacing:30.575219px;}
.ws127{word-spacing:30.796389px;}
.ws126{word-spacing:31.077334px;}
.ws46{word-spacing:31.256661px;}
.ws75{word-spacing:31.280571px;}
.wsac{word-spacing:31.304482px;}
.ws48{word-spacing:31.364257px;}
.ws49{word-spacing:31.441966px;}
.ws47{word-spacing:31.489786px;}
.ws110{word-spacing:31.645203px;}
.ws12f{word-spacing:31.782687px;}
.ws23{word-spacing:32.099497px;}
.ws122{word-spacing:32.625522px;}
.ws87{word-spacing:32.685298px;}
.ws69{word-spacing:32.792894px;}
.ws2b{word-spacing:32.804849px;}
.ws27{word-spacing:33.456403px;}
.ws76{word-spacing:33.755281px;}
.ws1d{word-spacing:34.974704px;}
.ws14{word-spacing:35.010569px;}
.ws15{word-spacing:35.016546px;}
.ws0{word-spacing:35.566660px;}
.ws2{word-spacing:35.590571px;}
.ws77{word-spacing:35.913180px;}
.ws1{word-spacing:35.973137px;}
.ws12{word-spacing:36.194126px;}
.ws1c{word-spacing:36.546802px;}
.ws30{word-spacing:37.401593px;}
.wse3{word-spacing:37.814045px;}
.ws26{word-spacing:37.891753px;}
.ws130{word-spacing:38.316160px;}
.ws13a{word-spacing:38.788387px;}
.wsa8{word-spacing:39.607313px;}
.ws29{word-spacing:39.679043px;}
.ws10e{word-spacing:40.055630px;}
.ws62{word-spacing:40.169203px;}
.ws81{word-spacing:40.228979px;}
.ws17{word-spacing:42.327102px;}
.ws8b{word-spacing:42.918881px;}
.wsad{word-spacing:44.030707px;}
.ws68{word-spacing:45.596828px;}
.ws13b{word-spacing:47.946009px;}
.ws22{word-spacing:52.016727px;}
.wsd7{word-spacing:53.756197px;}
.ws13d{word-spacing:55.089193px;}
.wsa7{word-spacing:56.990057px;}
.ws5e{word-spacing:60.182074px;}
.ws13c{word-spacing:60.265760px;}
.ws13{word-spacing:62.740470px;}
._6{margin-left:-32.996131px;}
._2{margin-left:-21.289642px;}
._7{margin-left:-4.321776px;}
._3{margin-left:-3.245829px;}
._11{margin-left:-1.344951px;}
._0{width:1.362891px;}
._27{width:4.466500px;}
._26{width:6.427169px;}
._1f{width:8.239593px;}
._c{width:10.753437px;}
._24{width:11.877412px;}
._16{width:13.043036px;}
._1c{width:14.142907px;}
._15{width:15.200935px;}
._f{width:16.557841px;}
._a{width:17.585982px;}
._4{width:18.996686px;}
._5{width:20.138386px;}
._e{width:21.865914px;}
._1a{width:22.911987px;}
._b{width:23.940128px;}
._d{width:25.368765px;}
._17{width:27.335382px;}
._22{width:28.506984px;}
._8{width:29.845957px;}
._21{width:31.005604px;}
._18{width:32.655410px;}
._14{width:33.946556px;}
._1b{width:34.992643px;}
._1{width:37.204520px;}
._12{width:39.218764px;}
._13{width:41.089747px;}
._1e{width:45.202309px;}
._19{width:46.684744px;}
._10{width:53.283970px;}
._23{width:55.107126px;}
._25{width:56.242862px;}
._1d{width:58.131764px;}
._20{width:60.863502px;}
._9{width:64.121279px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:33.473400px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:39.846000px;}
.fs6{font-size:41.842800px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:43.200000px;}
.fs2{font-size:47.814000px;}
.fs5{font-size:47.821200px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.730600px;}
.fs0{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y58{bottom:41.244150px;}
.y120{bottom:74.233748px;}
.ye8{bottom:74.235109px;}
.y57{bottom:74.237273px;}
.y94{bottom:74.239165px;}
.ya4{bottom:74.489418px;}
.y12d{bottom:75.596718px;}
.y127{bottom:75.598213px;}
.y11f{bottom:90.646633px;}
.ye7{bottom:90.647995px;}
.y93{bottom:90.651715px;}
.ya3{bottom:90.987484px;}
.y12c{bottom:92.094784px;}
.y126{bottom:92.096278px;}
.y56{bottom:101.110396px;}
.y92{bottom:107.048193px;}
.y11e{bottom:107.059518px;}
.ye6{bottom:107.060880px;}
.ya2{bottom:107.400369px;}
.y12b{bottom:108.507669px;}
.y125{bottom:108.509164px;}
.y55{bottom:114.546958px;}
.y91{bottom:123.546259px;}
.y11d{bottom:123.557584px;}
.ye5{bottom:123.558946px;}
.ya1{bottom:123.813255px;}
.y12a{bottom:124.920555px;}
.y124{bottom:124.922049px;}
.y54{bottom:127.983520px;}
.y90{bottom:139.959144px;}
.y11c{bottom:139.970469px;}
.ye4{bottom:139.971831px;}
.ya0{bottom:140.226140px;}
.y129{bottom:141.418620px;}
.y123{bottom:141.420115px;}
.y53{bottom:141.504964px;}
.y8f{bottom:156.372030px;}
.y11b{bottom:156.383355px;}
.ye3{bottom:156.384717px;}
.y9f{bottom:156.724206px;}
.y128{bottom:157.831506px;}
.y122{bottom:157.833000px;}
.y52{bottom:168.207127px;}
.y8e{bottom:172.870095px;}
.y11a{bottom:172.881420px;}
.ye2{bottom:172.882782px;}
.y9e{bottom:173.137091px;}
.y51{bottom:181.643688px;}
.y8d{bottom:189.282980px;}
.y119{bottom:189.294306px;}
.ye1{bottom:189.295668px;}
.y9d{bottom:189.549976px;}
.y12f{bottom:192.699006px;}
.y50{bottom:195.080250px;}
.y8c{bottom:205.695866px;}
.y118{bottom:205.707191px;}
.ye0{bottom:205.708553px;}
.y9c{bottom:206.048042px;}
.y12e{bottom:206.220450px;}
.y8b{bottom:222.193931px;}
.y117{bottom:222.205257px;}
.ydf{bottom:222.206619px;}
.y9b{bottom:222.460927px;}
.y2c{bottom:228.845941px;}
.y4f{bottom:229.088032px;}
.y8a{bottom:238.606817px;}
.y116{bottom:238.618142px;}
.yde{bottom:238.619504px;}
.y9a{bottom:238.873813px;}
.y2b{bottom:245.258827px;}
.y4e{bottom:245.500918px;}
.y89{bottom:255.019702px;}
.y115{bottom:255.031027px;}
.ydd{bottom:255.032389px;}
.y99{bottom:255.371878px;}
.y4d{bottom:261.998983px;}
.y2a{bottom:269.239303px;}
.y88{bottom:271.432588px;}
.y114{bottom:271.443913px;}
.ydc{bottom:271.445275px;}
.y98{bottom:271.784764px;}
.y4c{bottom:278.411869px;}
.y87{bottom:287.930653px;}
.y113{bottom:287.941978px;}
.ydb{bottom:287.943340px;}
.y97{bottom:288.197649px;}
.y4b{bottom:294.824754px;}
.y86{bottom:304.343539px;}
.y112{bottom:304.354864px;}
.yda{bottom:304.356226px;}
.y96{bottom:304.695715px;}
.y4a{bottom:311.322820px;}
.y29{bottom:313.289437px;}
.y111{bottom:320.767749px;}
.y95{bottom:321.107909px;}
.y49{bottom:327.735705px;}
.y85{bottom:328.324015px;}
.yd9{bottom:328.336702px;}
.y28{bottom:331.147398px;}
.y110{bottom:337.265815px;}
.y48{bottom:344.148591px;}
.y27{bottom:349.090538px;}
.y84{bottom:352.304491px;}
.y10f{bottom:353.674532px;}
.yb2{bottom:359.714497px;}
.y47{bottom:360.646656px;}
.y26{bottom:367.033679px;}
.y10e{bottom:370.087417px;}
.y157{bottom:371.791494px;}
.yb1{bottom:373.235942px;}
.y18b{bottom:374.584252px;}
.y46{bottom:377.059542px;}
.yd8{bottom:381.995764px;}
.y25{bottom:384.976820px;}
.y156{bottom:385.312938px;}
.y10d{bottom:386.585483px;}
.yb0{bottom:386.672503px;}
.y18a{bottom:388.020814px;}
.y45{bottom:393.472427px;}
.yd7{bottom:398.493829px;}
.y155{bottom:398.739769px;}
.yaf{bottom:400.109065px;}
.y189{bottom:401.542258px;}
.y24{bottom:402.919960px;}
.y83{bottom:402.988222px;}
.y10c{bottom:402.998368px;}
.y44{bottom:409.970492px;}
.y154{bottom:412.176331px;}
.yae{bottom:413.545627px;}
.yd6{bottom:414.906715px;}
.y188{bottom:414.978820px;}
.y82{bottom:419.401108px;}
.y10b{bottom:419.411254px;}
.y23{bottom:420.863101px;}
.y153{bottom:425.612893px;}
.y43{bottom:426.383378px;}
.yad{bottom:426.982188px;}
.y187{bottom:428.415381px;}
.yd5{bottom:431.311875px;}
.y81{bottom:435.899173px;}
.y10a{bottom:435.909319px;}
.y22{bottom:438.806242px;}
.y152{bottom:439.049454px;}
.yac{bottom:440.418750px;}
.y186{bottom:441.851943px;}
.y42{bottom:442.796263px;}
.yd4{bottom:447.724760px;}
.y80{bottom:452.312059px;}
.y109{bottom:452.322205px;}
.y151{bottom:452.486016px;}
.y185{bottom:455.288505px;}
.y21{bottom:456.749383px;}
.y41{bottom:459.209149px;}
.yd3{bottom:464.222826px;}
.y150{bottom:465.922578px;}
.y7f{bottom:468.724944px;}
.y184{bottom:468.725066px;}
.y108{bottom:468.735090px;}
.y20{bottom:474.607343px;}
.y40{bottom:475.707214px;}
.y14f{bottom:479.444022px;}
.yd2{bottom:480.635711px;}
.y183{bottom:482.161628px;}
.y7e{bottom:485.137830px;}
.y107{bottom:485.147975px;}
.y3f{bottom:492.120100px;}
.y1f{bottom:492.550484px;}
.y14e{bottom:492.880584px;}
.y182{bottom:495.683072px;}
.yd1{bottom:497.048597px;}
.y7d{bottom:501.635895px;}
.y106{bottom:501.646041px;}
.y14d{bottom:506.317145px;}
.y3e{bottom:508.532985px;}
.y181{bottom:509.119634px;}
.y1e{bottom:510.493625px;}
.yd0{bottom:513.546662px;}
.y7c{bottom:518.048780px;}
.y105{bottom:518.058926px;}
.y14c{bottom:519.753707px;}
.y180{bottom:522.556196px;}
.y3d{bottom:525.031051px;}
.y1d{bottom:528.436765px;}
.ycf{bottom:529.959548px;}
.y14b{bottom:533.190269px;}
.y7b{bottom:534.461666px;}
.y104{bottom:534.471812px;}
.y17f{bottom:535.992757px;}
.y3c{bottom:541.443936px;}
.yce{bottom:546.372433px;}
.y1c{bottom:546.379906px;}
.y14a{bottom:546.626830px;}
.y17e{bottom:549.429319px;}
.y7a{bottom:550.959731px;}
.y3b{bottom:557.856821px;}
.y103{bottom:558.452288px;}
.y149{bottom:560.148275px;}
.y17d{bottom:562.865881px;}
.ycd{bottom:562.870499px;}
.y1b{bottom:564.323047px;}
.y79{bottom:567.372617px;}
.y148{bottom:573.584836px;}
.y3a{bottom:574.354887px;}
.y17c{bottom:576.387325px;}
.ycc{bottom:579.283384px;}
.y1a{bottom:582.266188px;}
.y78{bottom:583.785502px;}
.y147{bottom:587.021398px;}
.y17b{bottom:589.823887px;}
.y39{bottom:590.767772px;}
.ycb{bottom:595.696269px;}
.y19{bottom:600.209328px;}
.y77{bottom:600.283568px;}
.y146{bottom:600.457960px;}
.y17a{bottom:603.260448px;}
.y38{bottom:607.180658px;}
.y102{bottom:608.454577px;}
.yca{bottom:612.194335px;}
.y145{bottom:613.894521px;}
.y76{bottom:616.696453px;}
.y179{bottom:616.697010px;}
.y18{bottom:618.067289px;}
.y37{bottom:623.593543px;}
.y101{bottom:624.952643px;}
.y144{bottom:627.331083px;}
.yc9{bottom:628.607220px;}
.y178{bottom:630.133572px;}
.y75{bottom:633.109339px;}
.y17{bottom:636.010430px;}
.y36{bottom:640.091609px;}
.y143{bottom:640.767645px;}
.y100{bottom:641.365528px;}
.y177{bottom:643.570133px;}
.yc8{bottom:645.020106px;}
.y74{bottom:649.607404px;}
.y16{bottom:653.953570px;}
.y142{bottom:654.289089px;}
.y35{bottom:656.504494px;}
.y176{bottom:657.006695px;}
.yff{bottom:657.778414px;}
.yc7{bottom:661.432991px;}
.y73{bottom:666.020290px;}
.y141{bottom:667.725651px;}
.y175{bottom:670.528139px;}
.y15{bottom:671.896711px;}
.y34{bottom:672.917379px;}
.yfe{bottom:674.191299px;}
.yc6{bottom:677.931057px;}
.y140{bottom:681.162212px;}
.y72{bottom:682.433175px;}
.y174{bottom:683.964701px;}
.y33{bottom:689.415445px;}
.y14{bottom:689.839852px;}
.yfd{bottom:690.689365px;}
.yab{bottom:691.113715px;}
.yc5{bottom:694.343942px;}
.y13f{bottom:694.598774px;}
.y173{bottom:697.401263px;}
.y71{bottom:698.846060px;}
.yaa{bottom:704.550277px;}
.y32{bottom:705.828330px;}
.yfc{bottom:707.089847px;}
.y13{bottom:707.782992px;}
.y13e{bottom:708.035336px;}
.yc4{bottom:710.756827px;}
.y172{bottom:710.837824px;}
.y70{bottom:715.344126px;}
.ya9{bottom:717.986838px;}
.y13d{bottom:721.471897px;}
.y31{bottom:722.241216px;}
.yfb{bottom:723.502733px;}
.y171{bottom:724.274386px;}
.y12{bottom:725.726133px;}
.yc3{bottom:727.254893px;}
.ya8{bottom:731.423400px;}
.y6f{bottom:731.757011px;}
.y13c{bottom:734.993342px;}
.y170{bottom:737.710948px;}
.y30{bottom:738.739281px;}
.yfa{bottom:740.000798px;}
.yc2{bottom:743.667778px;}
.y11{bottom:743.669274px;}
.y6e{bottom:748.169897px;}
.y13b{bottom:748.429903px;}
.y16f{bottom:751.232392px;}
.y2f{bottom:755.152167px;}
.yf9{bottom:756.413684px;}
.yc1{bottom:760.080664px;}
.y10{bottom:761.527234px;}
.y13a{bottom:761.866465px;}
.y6d{bottom:764.667962px;}
.y16e{bottom:764.668954px;}
.ya5{bottom:765.068100px;}
.y2e{bottom:771.565052px;}
.yf8{bottom:772.826569px;}
.y139{bottom:775.303027px;}
.yc0{bottom:776.578729px;}
.y16d{bottom:778.105515px;}
.y6c{bottom:781.080848px;}
.yf{bottom:786.869100px;}
.y2d{bottom:788.063118px;}
.y138{bottom:788.739588px;}
.yf7{bottom:789.324635px;}
.y16c{bottom:791.542077px;}
.ybf{bottom:792.991615px;}
.y6b{bottom:797.493733px;}
.ya6{bottom:801.193950px;}
.y137{bottom:802.176150px;}
.y16b{bottom:804.978639px;}
.yf6{bottom:805.737520px;}
.ybe{bottom:809.401032px;}
.y6a{bottom:813.991799px;}
.y16a{bottom:818.415200px;}
.yf5{bottom:822.150405px;}
.ybd{bottom:825.813918px;}
.y136{bottom:826.156133px;}
.y69{bottom:830.404684px;}
.ye{bottom:831.854850px;}
.y169{bottom:831.936645px;}
.ya7{bottom:835.926300px;}
.yf4{bottom:838.648471px;}
.ybc{bottom:842.311983px;}
.y168{bottom:845.373206px;}
.y68{bottom:846.817569px;}
.yf3{bottom:855.061356px;}
.ybb{bottom:858.724869px;}
.y167{bottom:858.809768px;}
.y67{bottom:863.230455px;}
.yd{bottom:867.486609px;}
.yf2{bottom:871.474242px;}
.y166{bottom:872.246330px;}
.yba{bottom:875.137754px;}
.y66{bottom:879.728520px;}
.y135{bottom:882.026892px;}
.y9{bottom:885.429750px;}
.y165{bottom:885.682891px;}
.ya{bottom:885.770471px;}
.yb{bottom:886.960005px;}
.yf1{bottom:887.887127px;}
.yb9{bottom:891.635820px;}
.yc{bottom:892.062750px;}
.y65{bottom:896.141406px;}
.y134{bottom:898.439777px;}
.y164{bottom:899.119453px;}
.yf0{bottom:904.385193px;}
.yb8{bottom:908.048705px;}
.y64{bottom:912.554291px;}
.y163{bottom:912.556015px;}
.y133{bottom:914.852663px;}
.yef{bottom:920.798078px;}
.y6{bottom:921.317144px;}
.y7{bottom:921.912508px;}
.yb7{bottom:924.461590px;}
.y162{bottom:926.077459px;}
.y63{bottom:929.052357px;}
.y8{bottom:929.310000px;}
.y132{bottom:931.350728px;}
.yee{bottom:937.210964px;}
.y161{bottom:939.514021px;}
.yb6{bottom:940.959656px;}
.y4{bottom:945.212400px;}
.y62{bottom:945.465242px;}
.y5{bottom:945.807764px;}
.y131{bottom:947.763614px;}
.y160{bottom:952.950582px;}
.yb5{bottom:957.372541px;}
.yed{bottom:961.191440px;}
.y61{bottom:961.878127px;}
.y15f{bottom:966.387144px;}
.y130{bottom:971.744090px;}
.y60{bottom:978.376193px;}
.y15e{bottom:979.823706px;}
.y3{bottom:980.930107px;}
.yb4{bottom:981.353018px;}
.y15d{bottom:993.260267px;}
.y5f{bottom:994.789078px;}
.y15c{bottom:1006.781712px;}
.yec{bottom:1011.193729px;}
.y5e{bottom:1011.201964px;}
.y2{bottom:1013.839728px;}
.y15b{bottom:1020.218273px;}
.yeb{bottom:1027.691795px;}
.y5d{bottom:1027.700029px;}
.y15a{bottom:1033.654835px;}
.yea{bottom:1044.104680px;}
.y5c{bottom:1044.112915px;}
.y1{bottom:1046.749350px;}
.y159{bottom:1047.091397px;}
.ye9{bottom:1060.517566px;}
.y5b{bottom:1060.525800px;}
.y158{bottom:1060.527958px;}
.y5a{bottom:1096.407524px;}
.y121{bottom:1112.900551px;}
.y59{bottom:1112.905590px;}
.yb3{bottom:1112.910000px;}
.h12{height:25.776000px;}
.h6{height:29.366502px;}
.h13{height:30.931200px;}
.h11{height:30.954000px;}
.hb{height:32.900986px;}
.h14{height:33.044449px;}
.h8{height:35.244224px;}
.h3{height:35.621430px;}
.h19{height:36.027134px;}
.h1a{height:36.065480px;}
.hc{height:40.903589px;}
.ha{height:41.125613px;}
.hd{height:41.304940px;}
.h5{height:41.783144px;}
.h4{height:44.054617px;}
.h9{height:44.532822px;}
.hf{height:45.119424px;}
.h10{height:45.121445px;}
.h15{height:45.132553px;}
.h18{height:45.134755px;}
.h16{height:45.148983px;}
.h17{height:45.167693px;}
.he{height:45.183710px;}
.h7{height:47.222724px;}
.h2{height:53.439297px;}
.h1{height:89.066091px;}
.h0{height:1191.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:61.228350px;}
.x1d{left:67.266150px;}
.x7{left:74.326358px;}
.x1c{left:76.280283px;}
.x1e{left:82.148107px;}
.x14{left:85.039350px;}
.x15{left:100.005666px;}
.x8{left:108.766012px;}
.x9{left:177.307050px;}
.xa{left:300.018422px;}
.x2{left:307.332452px;}
.xb{left:316.516488px;}
.xc{left:330.802856px;}
.xd{left:336.669832px;}
.x3{left:375.449623px;}
.xe{left:407.932808px;}
.x4{left:435.997423px;}
.x12{left:460.231974px;}
.x13{left:475.283470px;}
.x1b{left:477.240900px;}
.x1f{left:481.151556px;}
.x16{left:484.043568px;}
.x5{left:491.273023px;}
.x17{left:499.013391px;}
.x1a{left:508.972950px;}
.x6{left:547.059704px;}
.x18{left:604.625250px;}
.x19{left:614.625150px;}
.x11{left:645.874190px;}
.xf{left:657.524250px;}
.x10{left:663.732150px;}
@media print{
.v1{vertical-align:-2.116850pt;}
.v2{vertical-align:-1.211452pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.835182pt;}
.v5{vertical-align:15.421313pt;}
.v4{vertical-align:19.409269pt;}
.ls13{letter-spacing:-0.802321pt;}
.lsa{letter-spacing:-0.797008pt;}
.ls12{letter-spacing:-0.759814pt;}
.lsb{letter-spacing:-0.685427pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010627pt;}
.lse{letter-spacing:0.042507pt;}
.ls1b{letter-spacing:0.212539pt;}
.ls10{letter-spacing:0.302863pt;}
.ls15{letter-spacing:0.341913pt;}
.ls18{letter-spacing:2.548784pt;}
.lsc{letter-spacing:2.656928pt;}
.ls16{letter-spacing:2.657461pt;}
.ls1e{letter-spacing:4.187012pt;}
.ls5{letter-spacing:5.589683pt;}
.ls1d{letter-spacing:6.002092pt;}
.ls1{letter-spacing:6.586463pt;}
.ls11{letter-spacing:6.864999pt;}
.ls2{letter-spacing:6.886138pt;}
.ls3{letter-spacing:8.703313pt;}
.ls19{letter-spacing:11.749137pt;}
.ls1a{letter-spacing:12.050942pt;}
.ls1c{letter-spacing:12.224517pt;}
.ls6{letter-spacing:14.150824pt;}
.ls7{letter-spacing:17.837039pt;}
.ls17{letter-spacing:18.161156pt;}
.lsd{letter-spacing:18.182409pt;}
.ls9{letter-spacing:18.924126pt;}
.lsf{letter-spacing:25.636661pt;}
.ls4{letter-spacing:27.748584pt;}
.ls14{letter-spacing:28.660128pt;}
.ws5{word-spacing:-18.987887pt;}
.wsf{word-spacing:-0.053134pt;}
.ws53{word-spacing:-0.042508pt;}
.ws60{word-spacing:0.000000pt;}
.ws177{word-spacing:5.653529pt;}
.ws180{word-spacing:5.674782pt;}
.ws189{word-spacing:5.734293pt;}
.ws17f{word-spacing:5.751296pt;}
.wsc0{word-spacing:5.955333pt;}
.ws178{word-spacing:5.959584pt;}
.wsbd{word-spacing:6.252888pt;}
.ws18a{word-spacing:6.257138pt;}
.ws16d{word-spacing:6.478179pt;}
.ws161{word-spacing:6.482429pt;}
.ws18c{word-spacing:6.520686pt;}
.wsbe{word-spacing:6.575946pt;}
.wsbf{word-spacing:6.869250pt;}
.wsbc{word-spacing:7.018027pt;}
.wsbb{word-spacing:7.081788pt;}
.ws165{word-spacing:7.808671pt;}
.ws59{word-spacing:7.931943pt;}
.wsb9{word-spacing:7.995705pt;}
.ws166{word-spacing:8.093472pt;}
.wsba{word-spacing:8.229497pt;}
.wsb5{word-spacing:8.340017pt;}
.wsb4{word-spacing:8.450537pt;}
.wsb6{word-spacing:8.595064pt;}
.wsf1{word-spacing:8.798968pt;}
.wsf2{word-spacing:8.836162pt;}
.ws162{word-spacing:9.436717pt;}
.ws17d{word-spacing:10.019073pt;}
.ws14f{word-spacing:10.082834pt;}
.ws146{word-spacing:10.099837pt;}
.ws58{word-spacing:10.108339pt;}
.ws10c{word-spacing:10.111375pt;}
.ws147{word-spacing:10.210358pt;}
.ws17b{word-spacing:10.291122pt;}
.wsa{word-spacing:10.414238pt;}
.ws9{word-spacing:10.435491pt;}
.ws176{word-spacing:10.435649pt;}
.ws3d{word-spacing:10.557699pt;}
.ws119{word-spacing:10.568326pt;}
.ws94{word-spacing:10.653340pt;}
.wsb{word-spacing:10.717101pt;}
.wse4{word-spacing:10.892443pt;}
.ws187{word-spacing:10.903234pt;}
.ws2e{word-spacing:11.035904pt;}
.ws16b{word-spacing:11.137026pt;}
.ws168{word-spacing:11.175283pt;}
.wsd3{word-spacing:11.195306pt;}
.ws16c{word-spacing:11.217791pt;}
.ws13f{word-spacing:11.260299pt;}
.ws15b{word-spacing:11.268800pt;}
.ws186{word-spacing:11.285803pt;}
.ws15d{word-spacing:11.294305pt;}
.ws170{word-spacing:11.298556pt;}
.ws184{word-spacing:11.319809pt;}
.ws17e{word-spacing:11.336812pt;}
.ws167{word-spacing:11.353816pt;}
.ws157{word-spacing:11.358066pt;}
.ws159{word-spacing:11.366568pt;}
.ws171{word-spacing:11.370819pt;}
.ws16f{word-spacing:11.383571pt;}
.ws169{word-spacing:11.392073pt;}
.ws185{word-spacing:11.396323pt;}
.ws182{word-spacing:11.404825pt;}
.ws15e{word-spacing:11.409076pt;}
.ws14a{word-spacing:11.413326pt;}
.ws14e{word-spacing:11.417577pt;}
.ws15c{word-spacing:11.430329pt;}
.ws139{word-spacing:11.434408pt;}
.ws13e{word-spacing:11.438831pt;}
.ws179{word-spacing:11.443082pt;}
.ws16e{word-spacing:11.451583pt;}
.ws164{word-spacing:11.455834pt;}
.ws158{word-spacing:11.464336pt;}
.ws152{word-spacing:11.468586pt;}
.ws154{word-spacing:11.481339pt;}
.ws28{word-spacing:11.498169pt;}
.ws145{word-spacing:11.502593pt;}
.ws155{word-spacing:11.506843pt;}
.ws151{word-spacing:11.515345pt;}
.ws14b{word-spacing:11.528097pt;}
.ws142{word-spacing:11.545100pt;}
.ws16a{word-spacing:11.557853pt;}
.ws149{word-spacing:11.566354pt;}
.ws143{word-spacing:11.570605pt;}
.ws15f{word-spacing:11.574856pt;}
.ws14d{word-spacing:11.583357pt;}
.ws156{word-spacing:11.604611pt;}
.ws17c{word-spacing:11.613113pt;}
.ws153{word-spacing:11.617364pt;}
.ws2d{word-spacing:11.620377pt;}
.ws150{word-spacing:11.621614pt;}
.ws144{word-spacing:11.642868pt;}
.ws188{word-spacing:11.659871pt;}
.ws15a{word-spacing:11.672624pt;}
.ws140{word-spacing:11.698128pt;}
.ws18b{word-spacing:11.702379pt;}
.ws148{word-spacing:11.706630pt;}
.ws4d{word-spacing:11.726644pt;}
.ws173{word-spacing:11.727884pt;}
.ws175{word-spacing:11.732134pt;}
.ws160{word-spacing:11.753388pt;}
.ws17a{word-spacing:11.795896pt;}
.ws14c{word-spacing:11.808648pt;}
.ws136{word-spacing:11.851156pt;}
.wsfe{word-spacing:11.875419pt;}
.ws163{word-spacing:11.876661pt;}
.wsfb{word-spacing:11.886046pt;}
.ws174{word-spacing:11.889413pt;}
.ws172{word-spacing:11.944673pt;}
.ws183{word-spacing:11.948924pt;}
.ws181{word-spacing:11.961676pt;}
.ws141{word-spacing:12.008435pt;}
.ws132{word-spacing:12.016936pt;}
.ws98{word-spacing:12.146402pt;}
.ws37{word-spacing:12.194222pt;}
.ws135{word-spacing:12.195469pt;}
.wsb8{word-spacing:12.220973pt;}
.ws131{word-spacing:12.225224pt;}
.ws72{word-spacing:12.268610pt;}
.ws137{word-spacing:12.280484pt;}
.ws133{word-spacing:12.284735pt;}
.wse{word-spacing:12.374001pt;}
.ws3a{word-spacing:12.374878pt;}
.wsdc{word-spacing:12.385504pt;}
.wsc1{word-spacing:12.386753pt;}
.ws134{word-spacing:12.416509pt;}
.wsb7{word-spacing:12.480271pt;}
.ws123{word-spacing:12.667114pt;}
.ws57{word-spacing:12.697060pt;}
.wsb3{word-spacing:12.765072pt;}
.wse5{word-spacing:12.789322pt;}
.wsd2{word-spacing:12.831829pt;}
.ws104{word-spacing:12.842456pt;}
.ws105{word-spacing:12.863709pt;}
.wsdb{word-spacing:13.007171pt;}
.ws11f{word-spacing:13.272840pt;}
.wsd0{word-spacing:13.310034pt;}
.wseb{word-spacing:13.315347pt;}
.ws10{word-spacing:13.331287pt;}
.wsfa{word-spacing:13.384421pt;}
.wsc7{word-spacing:13.549136pt;}
.ws20{word-spacing:13.554449pt;}
.wsd5{word-spacing:13.581016pt;}
.wsc9{word-spacing:13.591643pt;}
.ws5b{word-spacing:13.670487pt;}
.ws54{word-spacing:13.687490pt;}
.ws52{word-spacing:13.764004pt;}
.ws51{word-spacing:13.793552pt;}
.ws5a{word-spacing:13.823515pt;}
.ws55{word-spacing:13.853270pt;}
.ws56{word-spacing:13.942537pt;}
.ws86{word-spacing:14.043281pt;}
.wsed{word-spacing:14.218623pt;}
.ws138{word-spacing:14.293010pt;}
.ws101{word-spacing:14.308950pt;}
.wsef{word-spacing:14.372711pt;}
.ws100{word-spacing:14.399278pt;}
.ws2c{word-spacing:14.447098pt;}
.ws18{word-spacing:14.457725pt;}
.ws34{word-spacing:14.521486pt;}
.wsca{word-spacing:14.595873pt;}
.ws63{word-spacing:14.601187pt;}
.ws4c{word-spacing:14.606500pt;}
.wsee{word-spacing:14.622440pt;}
.ws64{word-spacing:14.643694pt;}
.wsd4{word-spacing:14.649007pt;}
.wsf3{word-spacing:14.749961pt;}
.wsb0{word-spacing:14.824349pt;}
.wse7{word-spacing:14.845602pt;}
.ws7b{word-spacing:14.898736pt;}
.ws107{word-spacing:14.925303pt;}
.ws3c{word-spacing:15.084705pt;}
.ws8a{word-spacing:15.127212pt;}
.ws12a{word-spacing:15.148465pt;}
.ws33{word-spacing:15.201599pt;}
.wscb{word-spacing:15.281300pt;}
.ws2f{word-spacing:15.302554pt;}
.wse6{word-spacing:15.376941pt;}
.ws7e{word-spacing:15.430075pt;}
.ws36{word-spacing:15.440702pt;}
.ws99{word-spacing:15.446015pt;}
.ws111{word-spacing:15.594790pt;}
.ws93{word-spacing:15.701058pt;}
.wsaa{word-spacing:15.711684pt;}
.ws92{word-spacing:15.791385pt;}
.wsff{word-spacing:15.807325pt;}
.wsc{word-spacing:15.855146pt;}
.wsb1{word-spacing:15.855385pt;}
.wsf9{word-spacing:15.897653pt;}
.wsf7{word-spacing:15.918906pt;}
.ws8d{word-spacing:15.929533pt;}
.wsb2{word-spacing:15.948902pt;}
.wsc6{word-spacing:15.950787pt;}
.ws108{word-spacing:15.961414pt;}
.ws41{word-spacing:15.982667pt;}
.ws8e{word-spacing:15.993294pt;}
.wse8{word-spacing:16.030488pt;}
.ws42{word-spacing:16.051741pt;}
.ws10a{word-spacing:16.115502pt;}
.wsd{word-spacing:16.158009pt;}
.wsdd{word-spacing:16.237710pt;}
.ws10d{word-spacing:16.301470pt;}
.wsae{word-spacing:16.333351pt;}
.wsf4{word-spacing:16.381171pt;}
.wsa2{word-spacing:16.450245pt;}
.ws61{word-spacing:16.514006pt;}
.wsf5{word-spacing:16.524633pt;}
.ws7c{word-spacing:16.540573pt;}
.ws128{word-spacing:16.556513pt;}
.ws103{word-spacing:16.567140pt;}
.wsa3{word-spacing:16.636214pt;}
.wse2{word-spacing:16.710601pt;}
.ws70{word-spacing:16.806242pt;}
.ws106{word-spacing:16.827496pt;}
.ws39{word-spacing:16.832809pt;}
.ws43{word-spacing:16.859376pt;}
.wsc2{word-spacing:16.939077pt;}
.wsf0{word-spacing:16.992211pt;}
.ws10f{word-spacing:17.013464pt;}
.ws66{word-spacing:17.119732pt;}
.ws3f{word-spacing:17.199433pt;}
.ws112{word-spacing:17.220686pt;}
.wsaf{word-spacing:17.241940pt;}
.wsa5{word-spacing:17.263193pt;}
.ws5f{word-spacing:17.502296pt;}
.ws5c{word-spacing:17.587310pt;}
.ws5d{word-spacing:17.597937pt;}
.ws129{word-spacing:17.619190pt;}
.ws3b{word-spacing:17.730771pt;}
.wsd1{word-spacing:17.815785pt;}
.wsa4{word-spacing:17.868919pt;}
.ws3e{word-spacing:17.890173pt;}
.ws8c{word-spacing:17.969874pt;}
.ws12d{word-spacing:17.975187pt;}
.wsf6{word-spacing:18.150529pt;}
.ws9d{word-spacing:18.171782pt;}
.ws12b{word-spacing:18.193036pt;}
.wsc5{word-spacing:18.203663pt;}
.ws12c{word-spacing:18.224916pt;}
.ws4e{word-spacing:18.272737pt;}
.ws9f{word-spacing:18.304617pt;}
.ws11e{word-spacing:18.325871pt;}
.ws7f{word-spacing:18.410885pt;}
.ws1f{word-spacing:18.416198pt;}
.ws109{word-spacing:18.453392pt;}
.ws24{word-spacing:18.479959pt;}
.wsfd{word-spacing:18.527779pt;}
.ws9e{word-spacing:18.607480pt;}
.ws120{word-spacing:18.671241pt;}
.wsc8{word-spacing:18.713748pt;}
.wsab{word-spacing:18.719061pt;}
.ws102{word-spacing:18.756255pt;}
.ws50{word-spacing:18.804075pt;}
.ws35{word-spacing:18.878463pt;}
.ws6e{word-spacing:19.016611pt;}
.wsdf{word-spacing:19.059118pt;}
.ws4{word-spacing:19.064399pt;}
.ws8{word-spacing:19.077152pt;}
.ws3{word-spacing:19.109032pt;}
.wse1{word-spacing:19.202579pt;}
.ws7{word-spacing:19.242929pt;}
.ws6{word-spacing:19.249305pt;}
.ws117{word-spacing:19.356668pt;}
.wsf8{word-spacing:19.431055pt;}
.ws10b{word-spacing:19.473562pt;}
.ws16{word-spacing:19.484189pt;}
.ws89{word-spacing:19.585143pt;}
.ws96{word-spacing:19.622337pt;}
.ws9a{word-spacing:19.659531pt;}
.ws118{word-spacing:19.680784pt;}
.ws31{word-spacing:19.787052pt;}
.ws19{word-spacing:19.962394pt;}
.ws25{word-spacing:20.079288pt;}
.ws6d{word-spacing:20.435285pt;}
.ws32{word-spacing:20.445912pt;}
.wsde{word-spacing:20.461852pt;}
.wsec{word-spacing:20.568120pt;}
.ws21{word-spacing:20.685014pt;}
.ws6b{word-spacing:20.711581pt;}
.ws84{word-spacing:20.892236pt;}
.wsd6{word-spacing:20.897550pt;}
.wse9{word-spacing:20.902863pt;}
.ws65{word-spacing:20.924117pt;}
.ws83{word-spacing:20.993191pt;}
.ws11c{word-spacing:21.131339pt;}
.wsa9{word-spacing:21.248233pt;}
.ws85{word-spacing:21.253547pt;}
.ws1b{word-spacing:21.290740pt;}
.ws95{word-spacing:21.296054pt;}
.ws7d{word-spacing:21.338561pt;}
.ws90{word-spacing:21.391695pt;}
.ws8f{word-spacing:21.423575pt;}
.ws2a{word-spacing:21.444829pt;}
.ws71{word-spacing:21.476709pt;}
.ws97{word-spacing:21.551096pt;}
.ws1e{word-spacing:21.598917pt;}
.wsd9{word-spacing:21.827392pt;}
.ws80{word-spacing:21.944287pt;}
.ws88{word-spacing:22.082435pt;}
.ws6c{word-spacing:22.247150pt;}
.ws78{word-spacing:22.257777pt;}
.ws7a{word-spacing:22.342791pt;}
.ws40{word-spacing:22.379985pt;}
.ws79{word-spacing:22.401238pt;}
.ws6f{word-spacing:22.454372pt;}
.wsea{word-spacing:22.757235pt;}
.ws44{word-spacing:22.810369pt;}
.ws12e{word-spacing:22.852876pt;}
.wsa0{word-spacing:22.985711pt;}
.wsa1{word-spacing:23.006964pt;}
.ws114{word-spacing:23.076038pt;}
.ws116{word-spacing:23.091978pt;}
.ws9c{word-spacing:23.155739pt;}
.wsfc{word-spacing:23.362961pt;}
.ws115{word-spacing:23.447975pt;}
.ws113{word-spacing:23.463916pt;}
.ws9b{word-spacing:23.517049pt;}
.ws45{word-spacing:23.538303pt;}
.wse0{word-spacing:23.745525pt;}
.ws73{word-spacing:23.761465pt;}
.ws67{word-spacing:23.862420pt;}
.ws74{word-spacing:23.920867pt;}
.wscf{word-spacing:23.995254pt;}
.wscc{word-spacing:24.197163pt;}
.ws11a{word-spacing:24.250297pt;}
.ws11b{word-spacing:24.324684pt;}
.wsc3{word-spacing:24.500026pt;}
.ws4b{word-spacing:24.664741pt;}
.ws4a{word-spacing:24.781635pt;}
.ws125{word-spacing:25.121692pt;}
.ws124{word-spacing:25.180139pt;}
.ws11{word-spacing:25.185453pt;}
.ws82{word-spacing:25.190766pt;}
.ws6a{word-spacing:25.217333pt;}
.ws121{word-spacing:25.408615pt;}
.ws38{word-spacing:25.419242pt;}
.ws1a{word-spacing:25.488316pt;}
.wsce{word-spacing:25.498943pt;}
.wscd{word-spacing:25.706165pt;}
.ws91{word-spacing:25.876193pt;}
.wsa6{word-spacing:25.971834pt;}
.wsc4{word-spacing:26.290637pt;}
.ws11d{word-spacing:26.428785pt;}
.ws4f{word-spacing:26.689141pt;}
.wsd8{word-spacing:26.832603pt;}
.wsda{word-spacing:27.177973pt;}
.ws127{word-spacing:27.374568pt;}
.ws126{word-spacing:27.624297pt;}
.ws46{word-spacing:27.783699pt;}
.ws75{word-spacing:27.804952pt;}
.wsac{word-spacing:27.826206pt;}
.ws48{word-spacing:27.879340pt;}
.ws49{word-spacing:27.948414pt;}
.ws47{word-spacing:27.990921pt;}
.ws110{word-spacing:28.129069pt;}
.ws12f{word-spacing:28.251277pt;}
.ws23{word-spacing:28.532886pt;}
.ws122{word-spacing:29.000464pt;}
.ws87{word-spacing:29.053598pt;}
.ws69{word-spacing:29.149239pt;}
.ws2b{word-spacing:29.159866pt;}
.ws27{word-spacing:29.739025pt;}
.ws76{word-spacing:30.004695pt;}
.ws1d{word-spacing:31.088625pt;}
.ws14{word-spacing:31.120506pt;}
.ws15{word-spacing:31.125819pt;}
.ws0{word-spacing:31.614809pt;}
.ws2{word-spacing:31.636063pt;}
.ws77{word-spacing:31.922827pt;}
.ws1{word-spacing:31.976121pt;}
.ws12{word-spacing:32.172556pt;}
.ws1c{word-spacing:32.486046pt;}
.ws30{word-spacing:33.245860pt;}
.wse3{word-spacing:33.612484pt;}
.ws26{word-spacing:33.681558pt;}
.ws130{word-spacing:34.058809pt;}
.ws13a{word-spacing:34.478566pt;}
.wsa8{word-spacing:35.206500pt;}
.ws29{word-spacing:35.270261pt;}
.ws10e{word-spacing:35.605004pt;}
.ws62{word-spacing:35.705958pt;}
.ws81{word-spacing:35.759092pt;}
.ws17{word-spacing:37.624091pt;}
.ws8b{word-spacing:38.150116pt;}
.wsad{word-spacing:39.138406pt;}
.ws68{word-spacing:40.530513pt;}
.ws13b{word-spacing:42.618674pt;}
.ws22{word-spacing:46.237091pt;}
.wsd7{word-spacing:47.783286pt;}
.ws13d{word-spacing:48.968172pt;}
.wsa7{word-spacing:50.657828pt;}
.ws5e{word-spacing:53.495177pt;}
.ws13c{word-spacing:53.569564pt;}
.ws13{word-spacing:55.769306pt;}
._6{margin-left:-29.329894pt;}
._2{margin-left:-18.924126pt;}
._7{margin-left:-3.841579pt;}
._3{margin-left:-2.885181pt;}
._11{margin-left:-1.195512pt;}
._0{width:1.211458pt;}
._27{width:3.970222pt;}
._26{width:5.713039pt;}
._1f{width:7.324082pt;}
._c{width:9.558611pt;}
._24{width:10.557699pt;}
._16{width:11.593810pt;}
._1c{width:12.571473pt;}
._15{width:13.511942pt;}
._f{width:14.718081pt;}
._a{width:15.631984pt;}
._4{width:16.885943pt;}
._5{width:17.900788pt;}
._e{width:19.436368pt;}
._1a{width:20.366211pt;}
._b{width:21.280114pt;}
._d{width:22.550013pt;}
._17{width:24.298117pt;}
._22{width:25.339541pt;}
._8{width:26.529740pt;}
._21{width:27.560537pt;}
._18{width:29.027031pt;}
._14{width:30.174717pt;}
._1b{width:31.104572pt;}
._1{width:33.070685pt;}
._12{width:34.861124pt;}
._13{width:36.524220pt;}
._1e{width:40.179830pt;}
._19{width:41.497550pt;}
._10{width:47.363529pt;}
._23{width:48.984112pt;}
._25{width:49.993655pt;}
._1d{width:51.672679pt;}
._20{width:54.100891pt;}
._9{width:56.996693pt;}
.fsa{font-size:29.754133pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:35.418667pt;}
.fs6{font-size:37.193600pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:38.400000pt;}
.fs2{font-size:42.501333pt;}
.fs5{font-size:42.507733pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.760533pt;}
.fs0{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:36.661467pt;}
.y120{bottom:65.985553pt;}
.ye8{bottom:65.986764pt;}
.y57{bottom:65.988687pt;}
.y94{bottom:65.990369pt;}
.ya4{bottom:66.212816pt;}
.y12d{bottom:67.197083pt;}
.y127{bottom:67.198411pt;}
.y11f{bottom:80.574785pt;}
.ye7{bottom:80.575995pt;}
.y93{bottom:80.579302pt;}
.ya3{bottom:80.877763pt;}
.y12c{bottom:81.862030pt;}
.y126{bottom:81.863358pt;}
.y56{bottom:89.875908pt;}
.y92{bottom:95.153949pt;}
.y11e{bottom:95.164016pt;}
.ye6{bottom:95.165227pt;}
.ya2{bottom:95.466995pt;}
.y12b{bottom:96.451262pt;}
.y125{bottom:96.452590pt;}
.y55{bottom:101.819518pt;}
.y91{bottom:109.818897pt;}
.y11d{bottom:109.828963pt;}
.ye5{bottom:109.830174pt;}
.ya1{bottom:110.056226pt;}
.y12a{bottom:111.040493pt;}
.y124{bottom:111.041821pt;}
.y54{bottom:113.763129pt;}
.y90{bottom:124.408128pt;}
.y11c{bottom:124.418195pt;}
.ye4{bottom:124.419406pt;}
.ya0{bottom:124.645458pt;}
.y129{bottom:125.705440pt;}
.y123{bottom:125.706769pt;}
.y53{bottom:125.782190pt;}
.y8f{bottom:138.997360pt;}
.y11b{bottom:139.007426pt;}
.ye3{bottom:139.008637pt;}
.y9f{bottom:139.310405pt;}
.y128{bottom:140.294672pt;}
.y122{bottom:140.296000pt;}
.y52{bottom:149.517446pt;}
.y8e{bottom:153.662307pt;}
.y11a{bottom:153.672374pt;}
.ye2{bottom:153.673584pt;}
.y9e{bottom:153.899636pt;}
.y51{bottom:161.461056pt;}
.y8d{bottom:168.251538pt;}
.y119{bottom:168.261605pt;}
.ye1{bottom:168.262816pt;}
.y9d{bottom:168.488868pt;}
.y12f{bottom:171.288005pt;}
.y50{bottom:173.404667pt;}
.y8c{bottom:182.840770pt;}
.y118{bottom:182.850836pt;}
.ye0{bottom:182.852047pt;}
.y9c{bottom:183.153815pt;}
.y12e{bottom:183.307067pt;}
.y8b{bottom:197.505717pt;}
.y117{bottom:197.515784pt;}
.ydf{bottom:197.516994pt;}
.y9b{bottom:197.743047pt;}
.y2c{bottom:203.418615pt;}
.y4f{bottom:203.633807pt;}
.y8a{bottom:212.094948pt;}
.y116{bottom:212.105015pt;}
.yde{bottom:212.106226pt;}
.y9a{bottom:212.332278pt;}
.y2b{bottom:218.007846pt;}
.y4e{bottom:218.223038pt;}
.y89{bottom:226.684180pt;}
.y115{bottom:226.694247pt;}
.ydd{bottom:226.695457pt;}
.y99{bottom:226.997225pt;}
.y4d{bottom:232.887985pt;}
.y2a{bottom:239.323825pt;}
.y88{bottom:241.273411pt;}
.y114{bottom:241.283478pt;}
.ydc{bottom:241.284689pt;}
.y98{bottom:241.586457pt;}
.y4c{bottom:247.477217pt;}
.y87{bottom:255.938358pt;}
.y113{bottom:255.948425pt;}
.ydb{bottom:255.949636pt;}
.y97{bottom:256.175688pt;}
.y4b{bottom:262.066448pt;}
.y86{bottom:270.527590pt;}
.y112{bottom:270.537657pt;}
.yda{bottom:270.538867pt;}
.y96{bottom:270.840635pt;}
.y4a{bottom:276.731395pt;}
.y29{bottom:278.479500pt;}
.y111{bottom:285.126888pt;}
.y95{bottom:285.429253pt;}
.y49{bottom:291.320627pt;}
.y85{bottom:291.843569pt;}
.yd9{bottom:291.854846pt;}
.y28{bottom:294.353242pt;}
.y110{bottom:299.791835pt;}
.y48{bottom:305.909858pt;}
.y27{bottom:310.302701pt;}
.y84{bottom:313.159548pt;}
.y10f{bottom:314.377362pt;}
.yb2{bottom:319.746220pt;}
.y47{bottom:320.574805pt;}
.y26{bottom:326.252159pt;}
.y10e{bottom:328.966593pt;}
.y157{bottom:330.481328pt;}
.yb1{bottom:331.765281pt;}
.y18b{bottom:332.963780pt;}
.y46{bottom:335.164037pt;}
.yd8{bottom:339.551790pt;}
.y25{bottom:342.201618pt;}
.y156{bottom:342.500390pt;}
.y10d{bottom:343.631540pt;}
.yb0{bottom:343.708892pt;}
.y18a{bottom:344.907390pt;}
.y45{bottom:349.753268pt;}
.yd7{bottom:354.216737pt;}
.y155{bottom:354.435351pt;}
.yaf{bottom:355.652502pt;}
.y189{bottom:356.926452pt;}
.y24{bottom:358.151076pt;}
.y83{bottom:358.211753pt;}
.y10c{bottom:358.220772pt;}
.y44{bottom:364.418216pt;}
.y154{bottom:366.378961pt;}
.yae{bottom:367.596113pt;}
.yd6{bottom:368.805969pt;}
.y188{bottom:368.870062pt;}
.y82{bottom:372.800985pt;}
.y10b{bottom:372.810003pt;}
.y23{bottom:374.100534pt;}
.y153{bottom:378.322571pt;}
.y43{bottom:379.007447pt;}
.yad{bottom:379.539723pt;}
.y187{bottom:380.813672pt;}
.yd5{bottom:383.388333pt;}
.y81{bottom:387.465932pt;}
.y10a{bottom:387.474950pt;}
.y22{bottom:390.049993pt;}
.y152{bottom:390.266182pt;}
.yac{bottom:391.483333pt;}
.y186{bottom:392.757283pt;}
.y42{bottom:393.596678pt;}
.yd4{bottom:397.977565pt;}
.y80{bottom:402.055163pt;}
.y109{bottom:402.064182pt;}
.y151{bottom:402.209792pt;}
.y185{bottom:404.700893pt;}
.y21{bottom:405.999451pt;}
.y41{bottom:408.185910pt;}
.yd3{bottom:412.642512pt;}
.y150{bottom:414.153402pt;}
.y7f{bottom:416.644395pt;}
.y184{bottom:416.644503pt;}
.y108{bottom:416.653413pt;}
.y20{bottom:421.873194pt;}
.y40{bottom:422.850857pt;}
.y14f{bottom:426.172464pt;}
.yd2{bottom:427.231743pt;}
.y183{bottom:428.588114pt;}
.y7e{bottom:431.233626pt;}
.y107{bottom:431.242645pt;}
.y3f{bottom:437.440089pt;}
.y1f{bottom:437.822652pt;}
.y14e{bottom:438.116074pt;}
.y182{bottom:440.607175pt;}
.yd1{bottom:441.820975pt;}
.y7d{bottom:445.898573pt;}
.y106{bottom:445.907592pt;}
.y14d{bottom:450.059685pt;}
.y3e{bottom:452.029320pt;}
.y181{bottom:452.550786pt;}
.y1e{bottom:453.772111pt;}
.yd0{bottom:456.485922pt;}
.y7c{bottom:460.487805pt;}
.y105{bottom:460.496823pt;}
.y14c{bottom:462.003295pt;}
.y180{bottom:464.494396pt;}
.y3d{bottom:466.694267pt;}
.y1d{bottom:469.721569pt;}
.ycf{bottom:471.075153pt;}
.y14b{bottom:473.946906pt;}
.y7b{bottom:475.077036pt;}
.y104{bottom:475.086055pt;}
.y17f{bottom:476.438007pt;}
.y3c{bottom:481.283499pt;}
.yce{bottom:485.664385pt;}
.y1c{bottom:485.671028pt;}
.y14a{bottom:485.890516pt;}
.y17e{bottom:488.381617pt;}
.y7a{bottom:489.741984pt;}
.y3b{bottom:495.872730pt;}
.y103{bottom:496.402034pt;}
.y149{bottom:497.909577pt;}
.y17d{bottom:500.325227pt;}
.ycd{bottom:500.329332pt;}
.y1b{bottom:501.620486pt;}
.y79{bottom:504.331215pt;}
.y148{bottom:509.853188pt;}
.y3a{bottom:510.537677pt;}
.y17c{bottom:512.344289pt;}
.ycc{bottom:514.918563pt;}
.y1a{bottom:517.569944pt;}
.y78{bottom:518.920446pt;}
.y147{bottom:521.796798pt;}
.y17b{bottom:524.287899pt;}
.y39{bottom:525.126909pt;}
.ycb{bottom:529.507795pt;}
.y19{bottom:533.519403pt;}
.y77{bottom:533.585394pt;}
.y146{bottom:533.740409pt;}
.y17a{bottom:536.231510pt;}
.y38{bottom:539.716140pt;}
.y102{bottom:540.848513pt;}
.yca{bottom:544.172742pt;}
.y145{bottom:545.684019pt;}
.y76{bottom:548.174625pt;}
.y179{bottom:548.175120pt;}
.y18{bottom:549.393146pt;}
.y37{bottom:554.305372pt;}
.y101{bottom:555.513460pt;}
.y144{bottom:557.627629pt;}
.yc9{bottom:558.761974pt;}
.y178{bottom:560.118730pt;}
.y75{bottom:562.763856pt;}
.y17{bottom:565.342604pt;}
.y36{bottom:568.970319pt;}
.y143{bottom:569.571240pt;}
.y100{bottom:570.102692pt;}
.y177{bottom:572.062341pt;}
.yc8{bottom:573.351205pt;}
.y74{bottom:577.428804pt;}
.y16{bottom:581.292062pt;}
.y142{bottom:581.590301pt;}
.y35{bottom:583.559550pt;}
.y176{bottom:584.005951pt;}
.yff{bottom:584.691923pt;}
.yc7{bottom:587.940436pt;}
.y73{bottom:592.018035pt;}
.y141{bottom:593.533912pt;}
.y175{bottom:596.025013pt;}
.y15{bottom:597.241521pt;}
.y34{bottom:598.148782pt;}
.yfe{bottom:599.281155pt;}
.yc6{bottom:602.605384pt;}
.y140{bottom:605.477522pt;}
.y72{bottom:606.607267pt;}
.y174{bottom:607.968623pt;}
.y33{bottom:612.813729pt;}
.y14{bottom:613.190979pt;}
.yfd{bottom:613.946102pt;}
.yab{bottom:614.323302pt;}
.yc5{bottom:617.194615pt;}
.y13f{bottom:617.421132pt;}
.y173{bottom:619.912234pt;}
.y71{bottom:621.196498pt;}
.yaa{bottom:626.266913pt;}
.y32{bottom:627.402960pt;}
.yfc{bottom:628.524309pt;}
.y13{bottom:629.140438pt;}
.y13e{bottom:629.364743pt;}
.yc4{bottom:631.783847pt;}
.y172{bottom:631.855844pt;}
.y70{bottom:635.861445pt;}
.ya9{bottom:638.210523pt;}
.y13d{bottom:641.308353pt;}
.y31{bottom:641.992192pt;}
.yfb{bottom:643.113540pt;}
.y171{bottom:643.799454pt;}
.y12{bottom:645.089896pt;}
.yc3{bottom:646.448794pt;}
.ya8{bottom:650.154133pt;}
.y6f{bottom:650.450677pt;}
.y13c{bottom:653.327415pt;}
.y170{bottom:655.743065pt;}
.y30{bottom:656.657139pt;}
.yfa{bottom:657.778487pt;}
.yc2{bottom:661.038025pt;}
.y11{bottom:661.039355pt;}
.y6e{bottom:665.039908pt;}
.y13b{bottom:665.271025pt;}
.y16f{bottom:667.762126pt;}
.y2f{bottom:671.246370pt;}
.yf9{bottom:672.367719pt;}
.yc1{bottom:675.627257pt;}
.y10{bottom:676.913097pt;}
.y13a{bottom:677.214636pt;}
.y6d{bottom:679.704855pt;}
.y16e{bottom:679.705737pt;}
.ya5{bottom:680.060533pt;}
.y2e{bottom:685.835602pt;}
.yf8{bottom:686.956950pt;}
.y139{bottom:689.158246pt;}
.yc0{bottom:690.292204pt;}
.y16d{bottom:691.649347pt;}
.y6c{bottom:694.294087pt;}
.yf{bottom:699.439200pt;}
.y2d{bottom:700.500549pt;}
.y138{bottom:701.101856pt;}
.yf7{bottom:701.621898pt;}
.y16c{bottom:703.592957pt;}
.ybf{bottom:704.881435pt;}
.y6b{bottom:708.883318pt;}
.ya6{bottom:712.172400pt;}
.y137{bottom:713.045467pt;}
.y16b{bottom:715.536568pt;}
.yf6{bottom:716.211129pt;}
.ybe{bottom:719.467584pt;}
.y6a{bottom:723.548265pt;}
.y16a{bottom:727.480178pt;}
.yf5{bottom:730.800360pt;}
.ybd{bottom:734.056816pt;}
.y136{bottom:734.361007pt;}
.y69{bottom:738.137497pt;}
.ye{bottom:739.426533pt;}
.y169{bottom:739.499240pt;}
.ya7{bottom:743.045600pt;}
.yf4{bottom:745.465308pt;}
.ybc{bottom:748.721763pt;}
.y168{bottom:751.442850pt;}
.y68{bottom:752.726728pt;}
.yf3{bottom:760.054539pt;}
.ybb{bottom:763.310994pt;}
.y167{bottom:763.386460pt;}
.y67{bottom:767.315960pt;}
.yd{bottom:771.099208pt;}
.yf2{bottom:774.643771pt;}
.y166{bottom:775.330071pt;}
.yba{bottom:777.900226pt;}
.y66{bottom:781.980907pt;}
.y135{bottom:784.023904pt;}
.y9{bottom:787.048667pt;}
.y165{bottom:787.273681pt;}
.ya{bottom:787.351530pt;}
.yb{bottom:788.408894pt;}
.yf1{bottom:789.233002pt;}
.yb9{bottom:792.565173pt;}
.yc{bottom:792.944667pt;}
.y65{bottom:796.570138pt;}
.y134{bottom:798.613135pt;}
.y164{bottom:799.217292pt;}
.yf0{bottom:803.897949pt;}
.yb8{bottom:807.154405pt;}
.y64{bottom:811.159370pt;}
.y163{bottom:811.160902pt;}
.y133{bottom:813.202367pt;}
.yef{bottom:818.487181pt;}
.y6{bottom:818.948572pt;}
.y7{bottom:819.477785pt;}
.yb7{bottom:821.743636pt;}
.y162{bottom:823.179964pt;}
.y63{bottom:825.824317pt;}
.y8{bottom:826.053333pt;}
.y132{bottom:827.867314pt;}
.yee{bottom:833.076412pt;}
.y161{bottom:835.123574pt;}
.yb6{bottom:836.408583pt;}
.y4{bottom:840.188800pt;}
.y62{bottom:840.413548pt;}
.y5{bottom:840.718012pt;}
.y131{bottom:842.456546pt;}
.y160{bottom:847.067184pt;}
.yb5{bottom:850.997815pt;}
.yed{bottom:854.392391pt;}
.y61{bottom:855.002780pt;}
.y15f{bottom:859.010795pt;}
.y130{bottom:863.772525pt;}
.y60{bottom:869.667727pt;}
.y15e{bottom:870.954405pt;}
.y3{bottom:871.937872pt;}
.yb4{bottom:872.313794pt;}
.y15d{bottom:882.898015pt;}
.y5f{bottom:884.256958pt;}
.y15c{bottom:894.917077pt;}
.yec{bottom:898.838870pt;}
.y5e{bottom:898.846190pt;}
.y2{bottom:901.190870pt;}
.y15b{bottom:906.860687pt;}
.yeb{bottom:913.503818pt;}
.y5d{bottom:913.511137pt;}
.y15a{bottom:918.804298pt;}
.yea{bottom:928.093049pt;}
.y5c{bottom:928.100369pt;}
.y1{bottom:930.443867pt;}
.y159{bottom:930.747908pt;}
.ye9{bottom:942.682281pt;}
.y5b{bottom:942.689600pt;}
.y158{bottom:942.691519pt;}
.y5a{bottom:974.584466pt;}
.y121{bottom:989.244934pt;}
.y59{bottom:989.249413pt;}
.yb3{bottom:989.253333pt;}
.h12{height:22.912000pt;}
.h6{height:26.103557pt;}
.h13{height:27.494400pt;}
.h11{height:27.514667pt;}
.hb{height:29.245321pt;}
.h14{height:29.372844pt;}
.h8{height:31.328199pt;}
.h3{height:31.663493pt;}
.h19{height:32.024119pt;}
.h1a{height:32.058204pt;}
.hc{height:36.358746pt;}
.ha{height:36.556100pt;}
.hd{height:36.715502pt;}
.h5{height:37.140573pt;}
.h4{height:39.159660pt;}
.h9{height:39.584731pt;}
.hf{height:40.106155pt;}
.h10{height:40.107951pt;}
.h15{height:40.117825pt;}
.h18{height:40.119782pt;}
.h16{height:40.132429pt;}
.h17{height:40.149060pt;}
.he{height:40.163297pt;}
.h7{height:41.975755pt;}
.h2{height:47.501597pt;}
.h1{height:79.169859pt;}
.h0{height:1058.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:54.425200pt;}
.x1d{left:59.792133pt;}
.x7{left:66.067873pt;}
.x1c{left:67.804696pt;}
.x1e{left:73.020540pt;}
.x14{left:75.590533pt;}
.x15{left:88.893925pt;}
.x8{left:96.680899pt;}
.x9{left:157.606267pt;}
.xa{left:266.683042pt;}
.x2{left:273.184402pt;}
.xb{left:281.347989pt;}
.xc{left:294.046984pt;}
.xd{left:299.262073pt;}
.x3{left:333.732998pt;}
.xe{left:362.606940pt;}
.x4{left:387.553264pt;}
.x12{left:409.095088pt;}
.x13{left:422.474196pt;}
.x1b{left:424.214133pt;}
.x1f{left:427.690272pt;}
.x16{left:430.260949pt;}
.x5{left:436.687131pt;}
.x17{left:443.567459pt;}
.x1a{left:452.420400pt;}
.x6{left:486.275292pt;}
.x18{left:537.444667pt;}
.x19{left:546.333467pt;}
.x11{left:574.110391pt;}
.xf{left:584.466000pt;}
.x10{left:589.984133pt;}
}




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