
    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_a1037487c76e6fa64ff5db19.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070000;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_9ee7d2bf8ab2f934d22dd827.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_a77ff47da90495db38647447.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962000;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_3190c97ac261387d7fabe2f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_11047c341b43d4d17cdb284f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.965000;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_71ffb0de82bf4a6978dbed27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972000;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_0429c084cfad6663e1d9015f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972000;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_9ee7d2bf8ab2f934d22dd827.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962000;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_db90de8f09e46d5ed1dd8cc7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.070000;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_9ee7d2bf8ab2f934d22dd827.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962000;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_db90de8f09e46d5ed1dd8cc7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070000;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_3190c97ac261387d7fabe2f1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972000;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;}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.976400px;}
.v2{vertical-align:25.500000px;}
.v3{vertical-align:51.000000px;}
.ls3{letter-spacing:-0.630000px;}
.ls2{letter-spacing:-0.126000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:14.758800px;}
.ls0{letter-spacing:1284.910800px;}
.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;}
}
.wsa7{word-spacing:-20.904000px;}
.ws3{word-spacing:-16.884000px;}
.ws2{word-spacing:-16.317000px;}
.ws1a{word-spacing:-15.750000px;}
.ws0{word-spacing:-12.432000px;}
.ws1{word-spacing:-10.780836px;}
.wsaa{word-spacing:-9.513000px;}
.wsb9{word-spacing:-5.985000px;}
.wsbf{word-spacing:-5.103000px;}
.wsbe{word-spacing:-4.977000px;}
.wsab{word-spacing:-3.654000px;}
.wsac{word-spacing:-3.528000px;}
.ws35{word-spacing:-3.465000px;}
.ws71{word-spacing:-3.276000px;}
.ws9{word-spacing:-3.150000px;}
.ws85{word-spacing:-3.087000px;}
.ws29{word-spacing:-3.024000px;}
.ws5a{word-spacing:-2.961000px;}
.ws86{word-spacing:-2.898000px;}
.ws21{word-spacing:-2.835000px;}
.ws92{word-spacing:-2.772000px;}
.ws24{word-spacing:-2.709000px;}
.ws97{word-spacing:-2.646000px;}
.ws33{word-spacing:-2.583000px;}
.ws65{word-spacing:-2.331000px;}
.ws54{word-spacing:-2.268000px;}
.ws8{word-spacing:-2.205000px;}
.ws3c{word-spacing:-2.142000px;}
.ws12{word-spacing:-2.079000px;}
.ws52{word-spacing:-1.953000px;}
.ws53{word-spacing:-1.890000px;}
.ws44{word-spacing:-1.827000px;}
.ws75{word-spacing:-1.701000px;}
.ws7f{word-spacing:-1.638000px;}
.ws50{word-spacing:-1.575000px;}
.ws82{word-spacing:-1.512000px;}
.ws5b{word-spacing:-1.449000px;}
.wsa5{word-spacing:-1.386000px;}
.ws1f{word-spacing:-1.323000px;}
.ws56{word-spacing:-1.260000px;}
.ws3e{word-spacing:-1.197000px;}
.ws5c{word-spacing:-1.071000px;}
.ws7e{word-spacing:-1.008000px;}
.ws51{word-spacing:-0.945000px;}
.ws8e{word-spacing:-0.882000px;}
.ws57{word-spacing:-0.819000px;}
.ws2d{word-spacing:-0.756000px;}
.wsa{word-spacing:-0.693000px;}
.ws7{word-spacing:-0.672000px;}
.ws6f{word-spacing:-0.630000px;}
.wse{word-spacing:-0.567000px;}
.ws16{word-spacing:-0.504000px;}
.ws5d{word-spacing:-0.441000px;}
.ws4e{word-spacing:-0.378000px;}
.ws87{word-spacing:-0.252000px;}
.ws74{word-spacing:-0.189000px;}
.ws55{word-spacing:-0.126000px;}
.ws14{word-spacing:-0.063000px;}
.ws4{word-spacing:0.000000px;}
.ws3f{word-spacing:0.063000px;}
.ws38{word-spacing:0.126000px;}
.ws78{word-spacing:0.189000px;}
.ws2e{word-spacing:0.252000px;}
.ws1c{word-spacing:0.315000px;}
.wsf{word-spacing:0.378000px;}
.wsc{word-spacing:0.441000px;}
.wsd{word-spacing:0.504000px;}
.ws32{word-spacing:0.567000px;}
.ws42{word-spacing:0.630000px;}
.ws23{word-spacing:0.693000px;}
.ws37{word-spacing:0.756000px;}
.ws34{word-spacing:0.819000px;}
.ws28{word-spacing:0.882000px;}
.ws22{word-spacing:0.945000px;}
.ws4f{word-spacing:1.008000px;}
.ws1b{word-spacing:1.071000px;}
.ws72{word-spacing:1.134000px;}
.wsb{word-spacing:1.197000px;}
.ws26{word-spacing:1.260000px;}
.ws59{word-spacing:1.323000px;}
.ws13{word-spacing:1.386000px;}
.ws6c{word-spacing:1.449000px;}
.ws7a{word-spacing:1.512000px;}
.ws62{word-spacing:1.575000px;}
.ws77{word-spacing:1.638000px;}
.ws39{word-spacing:1.701000px;}
.ws43{word-spacing:1.764000px;}
.ws8c{word-spacing:1.827000px;}
.ws6b{word-spacing:1.890000px;}
.ws93{word-spacing:1.953000px;}
.ws17{word-spacing:2.016000px;}
.ws61{word-spacing:2.079000px;}
.ws27{word-spacing:2.142000px;}
.ws69{word-spacing:2.205000px;}
.ws15{word-spacing:2.268000px;}
.ws3a{word-spacing:2.331000px;}
.ws4b{word-spacing:2.394000px;}
.ws5e{word-spacing:2.457000px;}
.ws3b{word-spacing:2.520000px;}
.ws64{word-spacing:2.583000px;}
.wsa6{word-spacing:2.646000px;}
.ws8d{word-spacing:2.709000px;}
.ws30{word-spacing:2.772000px;}
.ws31{word-spacing:2.835000px;}
.ws8a{word-spacing:2.898000px;}
.ws91{word-spacing:2.961000px;}
.ws63{word-spacing:3.024000px;}
.ws4c{word-spacing:3.087000px;}
.ws80{word-spacing:3.150000px;}
.ws41{word-spacing:3.213000px;}
.ws6d{word-spacing:3.276000px;}
.ws73{word-spacing:3.402000px;}
.ws47{word-spacing:3.465000px;}
.ws58{word-spacing:3.528000px;}
.ws60{word-spacing:3.591000px;}
.ws40{word-spacing:3.654000px;}
.ws2a{word-spacing:3.717000px;}
.ws5f{word-spacing:3.780000px;}
.ws90{word-spacing:3.843000px;}
.ws1d{word-spacing:3.906000px;}
.ws46{word-spacing:3.969000px;}
.ws3d{word-spacing:4.032000px;}
.ws81{word-spacing:4.095000px;}
.ws45{word-spacing:4.158000px;}
.ws1e{word-spacing:4.221000px;}
.ws84{word-spacing:4.347000px;}
.ws7b{word-spacing:4.410000px;}
.ws48{word-spacing:4.473000px;}
.ws4d{word-spacing:4.536000px;}
.ws18{word-spacing:4.599000px;}
.ws70{word-spacing:4.662000px;}
.ws20{word-spacing:4.725000px;}
.ws94{word-spacing:4.788000px;}
.ws76{word-spacing:4.851000px;}
.ws88{word-spacing:4.914000px;}
.ws8f{word-spacing:4.977000px;}
.wsa8{word-spacing:5.040000px;}
.ws68{word-spacing:5.229000px;}
.ws83{word-spacing:5.292000px;}
.ws49{word-spacing:5.418000px;}
.ws2c{word-spacing:5.481000px;}
.ws89{word-spacing:5.544000px;}
.ws4a{word-spacing:5.607000px;}
.ws2b{word-spacing:5.670000px;}
.wsaf{word-spacing:5.733000px;}
.ws8b{word-spacing:5.859000px;}
.ws6e{word-spacing:5.922000px;}
.ws79{word-spacing:5.985000px;}
.ws6a{word-spacing:6.048000px;}
.wsb0{word-spacing:6.111000px;}
.wsba{word-spacing:6.174000px;}
.ws7c{word-spacing:6.300000px;}
.ws19{word-spacing:6.363000px;}
.ws11{word-spacing:6.489000px;}
.ws10{word-spacing:6.741000px;}
.ws96{word-spacing:6.930000px;}
.ws67{word-spacing:6.993000px;}
.ws36{word-spacing:7.056000px;}
.ws66{word-spacing:7.308000px;}
.wsb5{word-spacing:7.623000px;}
.ws2f{word-spacing:7.686000px;}
.ws95{word-spacing:7.749000px;}
.wsb4{word-spacing:7.938000px;}
.ws25{word-spacing:8.127000px;}
.ws7d{word-spacing:8.253000px;}
.wsa9{word-spacing:8.568000px;}
.wsbd{word-spacing:9.135000px;}
.wsa4{word-spacing:9.198000px;}
.wsbc{word-spacing:9.450000px;}
.wsb6{word-spacing:10.017000px;}
.wsb2{word-spacing:10.584000px;}
.wsb1{word-spacing:10.962000px;}
.wsae{word-spacing:11.718000px;}
.wsb8{word-spacing:14.238000px;}
.wsb7{word-spacing:14.742000px;}
.wsb3{word-spacing:16.128000px;}
.wsbb{word-spacing:17.136000px;}
.wsad{word-spacing:28.728000px;}
.ws98{word-spacing:75.976200px;}
.wsa3{word-spacing:130.799400px;}
.ws99{word-spacing:144.311400px;}
.ws9a{word-spacing:146.745600px;}
.wsa0{word-spacing:158.806200px;}
.ws9e{word-spacing:261.556800px;}
.wsa2{word-spacing:264.436200px;}
.ws9b{word-spacing:278.021400px;}
.wsa1{word-spacing:312.842400px;}
.ws6{word-spacing:526.320000px;}
.ws5{word-spacing:701.184000px;}
.ws9d{word-spacing:741.732000px;}
.ws9c{word-spacing:1255.662000px;}
.ws9f{word-spacing:1324.970400px;}
._3{margin-left:-701.187600px;}
._4{margin-left:-526.318800px;}
._1c{margin-left:-13.485900px;}
._7{margin-left:-11.604600px;}
._0{margin-left:-10.416000px;}
._8{margin-left:-9.000000px;}
._10{margin-left:-7.927200px;}
._f{margin-left:-6.674100px;}
._6{margin-left:-5.264400px;}
._c{margin-left:-4.145400px;}
._5{margin-left:-2.536200px;}
._a{margin-left:-1.291500px;}
._e{width:1.152600px;}
._11{width:2.197800px;}
._1b{width:4.024200px;}
._b{width:6.282000px;}
._d{width:15.888000px;}
._9{width:55.268901px;}
._14{width:94.648800px;}
._1a{width:105.732000px;}
._12{width:127.307400px;}
._19{width:132.528600px;}
._17{width:270.807600px;}
._16{width:290.594400px;}
._13{width:355.793400px;}
._18{width:626.214600px;}
._15{width:704.823000px;}
._1{width:1164.931800px;}
._2{width:1547.718000px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(27,27,27);}
.fc2{color:rgb(99,99,98);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc0{color:rgb(26,26,24);}
.fs5{font-size:40.227000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:69.000000px;}
.fsa{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:81.911100px;}
.y5{bottom:84.965400px;}
.y2b{bottom:85.083450px;}
.y4{bottom:104.217300px;}
.y28{bottom:136.062900px;}
.y94{bottom:136.063050px;}
.y146{bottom:136.463400px;}
.y107{bottom:136.537650px;}
.y131{bottom:136.605150px;}
.y1b3{bottom:136.652400px;}
.yba{bottom:136.876800px;}
.y11f{bottom:137.078250px;}
.y196{bottom:137.526450px;}
.y27{bottom:149.562900px;}
.y1ec{bottom:154.084800px;}
.y178{bottom:154.094850px;}
.y21c{bottom:154.288950px;}
.yec{bottom:154.324500px;}
.y5f{bottom:154.400850px;}
.y24c{bottom:154.492800px;}
.y106{bottom:154.537650px;}
.y130{bottom:154.605150px;}
.y93{bottom:154.656300px;}
.yb9{bottom:154.876800px;}
.y195{bottom:155.526450px;}
.y177{bottom:172.126650px;}
.y21b{bottom:172.514700px;}
.y105{bottom:172.537650px;}
.yeb{bottom:172.585950px;}
.y12f{bottom:172.605150px;}
.y5e{bottom:172.738800px;}
.yb8{bottom:172.876800px;}
.y24b{bottom:172.922850px;}
.y92{bottom:173.249550px;}
.y194{bottom:173.526450px;}
.y1eb{bottom:178.484550px;}
.y19c{bottom:178.983000px;}
.y176{bottom:190.158450px;}
.y104{bottom:190.537650px;}
.yea{bottom:190.847400px;}
.yb7{bottom:190.876800px;}
.y5d{bottom:191.076900px;}
.y193{bottom:191.526450px;}
.y91{bottom:191.842800px;}
.y26{bottom:192.826650px;}
.y21a{bottom:194.992500px;}
.y24a{bottom:195.604800px;}
.y12e{bottom:205.486950px;}
.y175{bottom:208.190250px;}
.y103{bottom:208.537650px;}
.yb6{bottom:208.876800px;}
.ye9{bottom:209.108850px;}
.y192{bottom:209.526450px;}
.y90{bottom:210.436050px;}
.y25{bottom:212.200200px;}
.y5c{bottom:213.666750px;}
.y249{bottom:214.034850px;}
.y219{bottom:217.470300px;}
.y1ea{bottom:221.392050px;}
.y174{bottom:226.222050px;}
.y102{bottom:226.537650px;}
.yb5{bottom:226.876800px;}
.ye8{bottom:227.370300px;}
.y191{bottom:227.526450px;}
.y8f{bottom:229.029300px;}
.y19b{bottom:230.998800px;}
.y5b{bottom:232.004850px;}
.y248{bottom:232.464900px;}
.y24{bottom:235.825650px;}
.y1e9{bottom:238.813800px;}
.y218{bottom:239.948100px;}
.y173{bottom:244.253850px;}
.y101{bottom:244.537650px;}
.y190{bottom:245.526450px;}
.yb4{bottom:249.128700px;}
.y5a{bottom:250.342800px;}
.y8e{bottom:251.874600px;}
.ye7{bottom:252.009750px;}
.y247{bottom:255.146700px;}
.y23{bottom:255.199050px;}
.y1e8{bottom:256.235550px;}
.y172{bottom:262.285650px;}
.y217{bottom:262.425900px;}
.y100{bottom:262.537650px;}
.y18f{bottom:263.526450px;}
.yb3{bottom:267.128700px;}
.y59{bottom:268.680750px;}
.y8d{bottom:270.467850px;}
.y246{bottom:273.576750px;}
.y1e7{bottom:273.657300px;}
.y22{bottom:274.572600px;}
.yff{bottom:280.537650px;}
.y216{bottom:280.651800px;}
.yb2{bottom:285.128700px;}
.y18e{bottom:285.778350px;}
.y171{bottom:286.695300px;}
.y58{bottom:287.018850px;}
.y8c{bottom:289.061100px;}
.y1e6{bottom:291.079050px;}
.y245{bottom:292.006800px;}
.y21{bottom:293.946000px;}
.ye6{bottom:295.156950px;}
.yfe{bottom:298.537650px;}
.yb1{bottom:303.128700px;}
.y215{bottom:303.129600px;}
.y18d{bottom:303.778350px;}
.y57{bottom:305.356800px;}
.y8b{bottom:307.654350px;}
.y244{bottom:310.436700px;}
.y1e5{bottom:312.752700px;}
.y20{bottom:313.319550px;}
.ye5{bottom:313.418400px;}
.yfd{bottom:316.537650px;}
.y214{bottom:321.355350px;}
.y18c{bottom:321.778350px;}
.y56{bottom:323.694750px;}
.y8a{bottom:326.247600px;}
.y170{bottom:328.113000px;}
.y1e4{bottom:330.174450px;}
.ye4{bottom:331.679850px;}
.y1f{bottom:332.692950px;}
.y243{bottom:333.118800px;}
.yfc{bottom:334.537650px;}
.yb0{bottom:338.136600px;}
.y18b{bottom:339.778350px;}
.y55{bottom:342.032850px;}
.y11e{bottom:342.519150px;}
.y213{bottom:343.833150px;}
.y89{bottom:344.840850px;}
.y16f{bottom:345.844800px;}
.y1e3{bottom:347.596200px;}
.ye3{bottom:349.941300px;}
.y1e{bottom:352.066350px;}
.y242{bottom:355.800600px;}
.yfb{bottom:356.789700px;}
.y11d{bottom:357.519150px;}
.y18a{bottom:357.778350px;}
.y54{bottom:360.370800px;}
.y212{bottom:362.059050px;}
.y88{bottom:363.434100px;}
.y16e{bottom:363.576600px;}
.y1e2{bottom:365.017800px;}
.y1d{bottom:371.439900px;}
.ye2{bottom:372.454650px;}
.y241{bottom:374.230650px;}
.yfa{bottom:374.789700px;}
.y189{bottom:375.778500px;}
.y53{bottom:378.708750px;}
.y211{bottom:380.284800px;}
.y16d{bottom:381.308400px;}
.y87{bottom:382.027350px;}
.y11c{bottom:389.527050px;}
.ye1{bottom:390.716100px;}
.y1c{bottom:390.813300px;}
.y240{bottom:392.660700px;}
.yf9{bottom:392.789700px;}
.y188{bottom:393.778500px;}
.y1e1{bottom:397.321500px;}
.y16c{bottom:399.040200px;}
.y86{bottom:400.620600px;}
.y52{bottom:401.298750px;}
.y210{bottom:402.762750px;}
.y11b{bottom:407.527050px;}
.ye0{bottom:408.977550px;}
.yf8{bottom:410.789700px;}
.y187{bottom:411.778500px;}
.y23f{bottom:415.342650px;}
.y1b{bottom:416.564700px;}
.y16b{bottom:416.772000px;}
.y85{bottom:419.213850px;}
.y51{bottom:419.636700px;}
.y20f{bottom:420.988500px;}
.y1e0{bottom:423.726150px;}
.y11a{bottom:425.302050px;}
.ydf{bottom:427.239000px;}
.yf7{bottom:428.789700px;}
.y186{bottom:429.778500px;}
.y1dc{bottom:430.101150px;}
.y23e{bottom:433.772700px;}
.y26d{bottom:435.636750px;}
.y1de{bottom:436.476150px;}
.y84{bottom:437.807100px;}
.y50{bottom:437.974650px;}
.y16a{bottom:438.755700px;}
.y20e{bottom:439.214250px;}
.y1da{bottom:442.851150px;}
.y119{bottom:443.077050px;}
.yde{bottom:445.500450px;}
.yf6{bottom:446.789700px;}
.y185{bottom:447.778500px;}
.y1dd{bottom:449.226150px;}
.y23d{bottom:452.202600px;}
.y26c{bottom:453.636750px;}
.y1db{bottom:455.601150px;}
.y4f{bottom:456.312750px;}
.y83{bottom:456.400350px;}
.y169{bottom:456.487500px;}
.y1a{bottom:460.824000px;}
.y118{bottom:460.852050px;}
.y20d{bottom:461.692050px;}
.y1df{bottom:461.976150px;}
.ydd{bottom:463.761900px;}
.yf5{bottom:464.789700px;}
.y26b{bottom:471.636750px;}
.y168{bottom:474.219300px;}
.y4e{bottom:474.650700px;}
.y23c{bottom:474.884550px;}
.y82{bottom:474.993600px;}
.y117{bottom:478.627050px;}
.y1d9{bottom:478.939800px;}
.y20c{bottom:479.917950px;}
.y19{bottom:480.197550px;}
.y184{bottom:480.660300px;}
.ydc{bottom:482.023350px;}
.yf4{bottom:482.789700px;}
.y1d7{bottom:485.314800px;}
.y1d8{bottom:491.689800px;}
.y167{bottom:491.951100px;}
.y4d{bottom:492.988650px;}
.y23b{bottom:493.314600px;}
.y81{bottom:493.586850px;}
.y26a{bottom:493.888650px;}
.y116{bottom:496.402050px;}
.y1d6{bottom:498.064800px;}
.ydb{bottom:500.284800px;}
.yf3{bottom:500.789700px;}
.y12d{bottom:501.754650px;}
.y18{bottom:503.823000px;}
.y20b{bottom:504.521700px;}
.y166{bottom:509.682900px;}
.y4c{bottom:511.326600px;}
.y23a{bottom:511.744650px;}
.y80{bottom:512.180100px;}
.y269{bottom:516.140550px;}
.yda{bottom:518.546100px;}
.yf2{bottom:518.789700px;}
.y1d5{bottom:521.403600px;}
.y115{bottom:522.681000px;}
.y17{bottom:523.196400px;}
.y165{bottom:527.414700px;}
.y1d4{bottom:527.778600px;}
.y4b{bottom:529.664700px;}
.y7f{bottom:530.773350px;}
.y12c{bottom:533.762550px;}
.y268{bottom:534.140550px;}
.y239{bottom:534.426600px;}
.yf1{bottom:536.789700px;}
.yd9{bottom:536.807700px;}
.y1b2{bottom:542.408400px;}
.y16{bottom:542.569950px;}
.y164{bottom:545.146500px;}
.y145{bottom:545.998950px;}
.y20a{bottom:547.633350px;}
.y4a{bottom:548.002650px;}
.y1d3{bottom:551.117400px;}
.y12b{bottom:551.762550px;}
.y238{bottom:552.856500px;}
.y7e{bottom:553.618650px;}
.yf0{bottom:554.789700px;}
.yd8{bottom:555.069150px;}
.y267{bottom:556.392600px;}
.y1b1{bottom:557.408400px;}
.y1d2{bottom:557.492400px;}
.y19a{bottom:559.510650px;}
.y15{bottom:561.943350px;}
.y163{bottom:562.878300px;}
.y114{bottom:564.066900px;}
.y209{bottom:565.859250px;}
.y49{bottom:566.340600px;}
.y12a{bottom:569.762550px;}
.y237{bottom:571.286550px;}
.y7d{bottom:572.211900px;}
.y199{bottom:574.510650px;}
.yd7{bottom:577.582500px;}
.y144{bottom:578.006850px;}
.y266{bottom:578.644500px;}
.yef{bottom:579.167700px;}
.y162{bottom:580.610100px;}
.y1d0{bottom:580.831200px;}
.y14{bottom:581.316900px;}
.y113{bottom:582.066900px;}
.y208{bottom:584.085000px;}
.y48{bottom:584.678700px;}
.y129{bottom:587.762550px;}
.y1b0{bottom:589.416300px;}
.y7c{bottom:590.805150px;}
.y1cf{bottom:593.581200px;}
.y236{bottom:593.968500px;}
.yd6{bottom:595.843950px;}
.y143{bottom:596.006850px;}
.y265{bottom:596.644500px;}
.yaf{bottom:598.144500px;}
.y161{bottom:598.341900px;}
.y112{bottom:599.841750px;}
.y13{bottom:600.690300px;}
.y207{bottom:602.310900px;}
.y47{bottom:603.016650px;}
.y128{bottom:605.762550px;}
.y1d1{bottom:606.331200px;}
.y1af{bottom:607.416300px;}
.y7b{bottom:609.398400px;}
.y235{bottom:612.398550px;}
.y142{bottom:614.006850px;}
.yd5{bottom:614.105400px;}
.y160{bottom:616.073700px;}
.y198{bottom:617.148450px;}
.y111{bottom:617.616750px;}
.y264{bottom:618.896550px;}
.y12{bottom:620.063700px;}
.y206{bottom:620.536800px;}
.y46{bottom:621.354600px;}
.y1ce{bottom:623.295000px;}
.y1ae{bottom:625.416300px;}
.y7a{bottom:627.991650px;}
.y127{bottom:630.140550px;}
.yae{bottom:630.152400px;}
.y234{bottom:630.828450px;}
.yee{bottom:631.183350px;}
.y141{bottom:632.006850px;}
.yd4{bottom:632.366850px;}
.y15f{bottom:633.805500px;}
.y110{bottom:635.391750px;}
.y1cd{bottom:636.045000px;}
.y263{bottom:636.896550px;}
.y205{bottom:638.762550px;}
.y11{bottom:639.437250px;}
.y1ca{bottom:642.420000px;}
.y1ad{bottom:643.416300px;}
.y45{bottom:643.944600px;}
.y79{bottom:646.584900px;}
.yad{bottom:648.152400px;}
.y1cc{bottom:648.795000px;}
.y233{bottom:649.258500px;}
.y140{bottom:650.006850px;}
.yd3{bottom:650.628300px;}
.y15e{bottom:651.537300px;}
.y10f{bottom:653.166750px;}
.y204{bottom:656.988300px;}
.y10{bottom:658.810650px;}
.y262{bottom:659.148450px;}
.y1ac{bottom:661.416300px;}
.y1cb{bottom:661.545000px;}
.y44{bottom:662.282550px;}
.y78{bottom:665.178150px;}
.yac{bottom:666.152400px;}
.y13f{bottom:668.006850px;}
.yd2{bottom:668.889750px;}
.y15d{bottom:669.269100px;}
.y10e{bottom:670.941900px;}
.y232{bottom:671.940450px;}
.y126{bottom:675.778350px;}
.y261{bottom:677.148450px;}
.y1c9{bottom:678.508800px;}
.y1ab{bottom:679.416300px;}
.y203{bottom:679.466100px;}
.y43{bottom:680.620500px;}
.y77{bottom:683.771400px;}
.yab{bottom:684.152400px;}
.yf{bottom:684.562050px;}
.y1c8{bottom:684.883800px;}
.y13e{bottom:686.006850px;}
.yd1{bottom:687.151050px;}
.y10d{bottom:688.716750px;}
.y15c{bottom:691.252950px;}
.y231{bottom:694.622400px;}
.y260{bottom:695.148450px;}
.y1aa{bottom:697.416300px;}
.y202{bottom:697.692000px;}
.y42{bottom:698.958600px;}
.yaa{bottom:702.152400px;}
.y76{bottom:702.364650px;}
.y10c{bottom:706.491750px;}
.y1c7{bottom:708.222450px;}
.y15b{bottom:708.984750px;}
.yd0{bottom:709.664550px;}
.y13d{bottom:710.384700px;}
.y1a9{bottom:715.416300px;}
.y201{bottom:715.917900px;}
.y41{bottom:717.296550px;}
.y230{bottom:717.304350px;}
.y25f{bottom:717.400500px;}
.ya9{bottom:720.152400px;}
.y75{bottom:720.957900px;}
.y1c6{bottom:720.972450px;}
.y10b{bottom:724.266750px;}
.y15a{bottom:726.716550px;}
.ycf{bottom:727.926000px;}
.y1a8{bottom:733.416300px;}
.y25e{bottom:735.400500px;}
.y40{bottom:735.634500px;}
.y22f{bottom:735.734400px;}
.ya8{bottom:738.152400px;}
.y200{bottom:738.395700px;}
.y74{bottom:739.551150px;}
.y159{bottom:744.448350px;}
.ye{bottom:745.829250px;}
.yce{bottom:746.187450px;}
.y10a{bottom:748.419750px;}
.y1c5{bottom:750.686250px;}
.y1a7{bottom:751.416300px;}
.y13c{bottom:751.770600px;}
.y3f{bottom:753.972600px;}
.y22e{bottom:754.164300px;}
.ya7{bottom:756.152400px;}
.y1ff{bottom:756.621450px;}
.y25d{bottom:757.652400px;}
.y73{bottom:758.144400px;}
.y1c4{bottom:763.436250px;}
.ycd{bottom:764.448900px;}
.y158{bottom:766.432050px;}
.yd{bottom:767.902800px;}
.y1a6{bottom:769.416300px;}
.y13b{bottom:769.770600px;}
.y3e{bottom:772.310550px;}
.ya6{bottom:774.152400px;}
.y1fe{bottom:774.847350px;}
.y25c{bottom:775.652400px;}
.y72{bottom:776.737650px;}
.y22d{bottom:776.846250px;}
.ycc{bottom:782.710350px;}
.y157{bottom:784.163850px;}
.y1a5{bottom:787.416300px;}
.y13a{bottom:787.770600px;}
.y3d{bottom:790.648500px;}
.y1c3{bottom:791.048700px;}
.ya5{bottom:792.152400px;}
.y1fd{bottom:793.073250px;}
.y25b{bottom:793.652400px;}
.y22c{bottom:795.276300px;}
.y71{bottom:795.330900px;}
.y109{bottom:796.183650px;}
.ycb{bottom:800.971650px;}
.y156{bottom:801.895650px;}
.y1a4{bottom:805.416300px;}
.y139{bottom:805.770600px;}
.y3c{bottom:808.986450px;}
.ya4{bottom:810.152400px;}
.y1fc{bottom:811.299000px;}
.y70{bottom:813.924150px;}
.y25a{bottom:815.904450px;}
.y22b{bottom:817.958250px;}
.yca{bottom:819.233250px;}
.y155{bottom:819.627450px;}
.y1c2{bottom:823.078350px;}
.y1a3{bottom:823.416300px;}
.y138{bottom:823.770600px;}
.y3b{bottom:827.324550px;}
.ya3{bottom:828.152400px;}
.y1fb{bottom:829.524750px;}
.yc{bottom:832.495950px;}
.y6f{bottom:832.517400px;}
.y259{bottom:833.904450px;}
.y22a{bottom:836.388300px;}
.y154{bottom:837.359250px;}
.yc9{bottom:837.494550px;}
.y1c1{bottom:841.100100px;}
.y1a2{bottom:841.416300px;}
.y137{bottom:841.770600px;}
.y3a{bottom:845.662500px;}
.ya2{bottom:846.152400px;}
.y1fa{bottom:847.750650px;}
.y6e{bottom:851.110650px;}
.y229{bottom:854.818350px;}
.y153{bottom:855.091050px;}
.yc8{bottom:855.756000px;}
.y258{bottom:856.156350px;}
.yb{bottom:856.369350px;}
.y1c0{bottom:858.371850px;}
.y1a1{bottom:859.416300px;}
.y136{bottom:859.770600px;}
.ya1{bottom:864.152400px;}
.y1f9{bottom:865.976400px;}
.y39{bottom:868.252500px;}
.y6d{bottom:869.703900px;}
.y152{bottom:872.822850px;}
.yc7{bottom:874.017450px;}
.y257{bottom:874.156350px;}
.y1bf{bottom:875.643450px;}
.y1a0{bottom:877.416300px;}
.y228{bottom:877.500300px;}
.y135{bottom:877.770600px;}
.ya0{bottom:882.152400px;}
.y1f8{bottom:884.202300px;}
.y38{bottom:886.590450px;}
.y6c{bottom:888.297150px;}
.y183{bottom:888.660300px;}
.y151{bottom:890.554650px;}
.yc6{bottom:892.279050px;}
.y1be{bottom:892.915350px;}
.y19f{bottom:895.416300px;}
.y227{bottom:895.930350px;}
.y256{bottom:896.408400px;}
.y9f{bottom:900.152400px;}
.y182{bottom:903.660300px;}
.y37{bottom:904.928400px;}
.ya{bottom:905.754600px;}
.y1f7{bottom:906.680100px;}
.y6b{bottom:906.890400px;}
.y150{bottom:908.286450px;}
.yc5{bottom:910.540350px;}
.y134{bottom:910.652400px;}
.y19e{bottom:913.416300px;}
.y226{bottom:914.360250px;}
.y255{bottom:914.408400px;}
.y1bd{bottom:916.564950px;}
.y9e{bottom:918.152400px;}
.y36{bottom:923.266500px;}
.y1f6{bottom:924.905850px;}
.y6a{bottom:925.483650px;}
.y14f{bottom:926.018250px;}
.yc4{bottom:928.801800px;}
.y19d{bottom:931.416300px;}
.y181{bottom:935.668200px;}
.y254{bottom:936.660300px;}
.y225{bottom:937.042200px;}
.y9{bottom:937.128150px;}
.y9d{bottom:940.404300px;}
.y35{bottom:941.604450px;}
.y1f5{bottom:943.131750px;}
.y14e{bottom:943.749900px;}
.y69{bottom:944.076900px;}
.yc3{bottom:951.315150px;}
.y180{bottom:953.668200px;}
.y253{bottom:954.660300px;}
.y224{bottom:955.472250px;}
.y9c{bottom:958.404300px;}
.y1bc{bottom:959.472450px;}
.y34{bottom:959.942400px;}
.y1f4{bottom:961.357650px;}
.y68{bottom:962.670300px;}
.y14d{bottom:967.859700px;}
.y8{bottom:968.501550px;}
.yc2{bottom:969.576750px;}
.y17f{bottom:971.668200px;}
.y252{bottom:972.660300px;}
.y9b{bottom:976.404300px;}
.y1bb{bottom:977.494200px;}
.y223{bottom:978.154200px;}
.y33{bottom:978.280500px;}
.y125{bottom:978.660150px;}
.y1f3{bottom:979.583400px;}
.y67{bottom:981.263550px;}
.yc1{bottom:987.838050px;}
.y17e{bottom:989.668200px;}
.y124{bottom:993.660150px;}
.y9a{bottom:994.404300px;}
.y1ba{bottom:994.765950px;}
.y251{bottom:994.912200px;}
.y222{bottom:996.584250px;}
.y32{bottom:996.618450px;}
.y66{bottom:999.856650px;}
.y1f2{bottom:1002.061200px;}
.yc0{bottom:1006.099500px;}
.y17d{bottom:1007.668200px;}
.y14c{bottom:1009.277400px;}
.y1b9{bottom:1012.037700px;}
.y99{bottom:1012.404300px;}
.y250{bottom:1012.912200px;}
.y31{bottom:1014.956400px;}
.y221{bottom:1015.014150px;}
.y1f1{bottom:1020.287100px;}
.y65{bottom:1022.701950px;}
.ybf{bottom:1024.360950px;}
.y123{bottom:1025.668050px;}
.y17c{bottom:1025.668200px;}
.y14b{bottom:1027.009050px;}
.y1b8{bottom:1029.309450px;}
.y98{bottom:1030.404300px;}
.y30{bottom:1033.294350px;}
.y220{bottom:1033.444200px;}
.y24f{bottom:1035.164250px;}
.y1f0{bottom:1038.512850px;}
.y64{bottom:1041.295200px;}
.ybe{bottom:1042.622400px;}
.y122{bottom:1043.668050px;}
.y17b{bottom:1043.668200px;}
.y14a{bottom:1044.741000px;}
.y1b7{bottom:1046.581200px;}
.y2f{bottom:1051.632450px;}
.y24e{bottom:1053.164250px;}
.y97{bottom:1054.782300px;}
.y21f{bottom:1056.126150px;}
.y1ef{bottom:1056.738750px;}
.y63{bottom:1059.888450px;}
.ybd{bottom:1060.883850px;}
.y121{bottom:1061.668050px;}
.y17a{bottom:1061.668200px;}
.y149{bottom:1062.472650px;}
.y197{bottom:1063.534200px;}
.y1b6{bottom:1063.852950px;}
.y133{bottom:1065.660300px;}
.y2e{bottom:1069.970400px;}
.y24d{bottom:1075.416300px;}
.y62{bottom:1078.481700px;}
.y21e{bottom:1078.808100px;}
.ybc{bottom:1079.145300px;}
.y1ee{bottom:1079.216550px;}
.y120{bottom:1079.668050px;}
.y179{bottom:1079.668200px;}
.y148{bottom:1080.204600px;}
.y1b5{bottom:1081.124700px;}
.y2d{bottom:1088.308350px;}
.y7{bottom:1089.929850px;}
.y61{bottom:1097.074950px;}
.y21d{bottom:1097.238150px;}
.ybb{bottom:1097.406750px;}
.y1ed{bottom:1097.442300px;}
.y96{bottom:1097.668050px;}
.y132{bottom:1097.668200px;}
.y147{bottom:1097.936250px;}
.y1b4{bottom:1098.396300px;}
.y6{bottom:1103.429850px;}
.y2c{bottom:1113.024300px;}
.y95{bottom:1115.668050px;}
.y60{bottom:1115.668200px;}
.yed{bottom:1117.254300px;}
.y108{bottom:1117.254450px;}
.y3{bottom:1136.583600px;}
.y2{bottom:1150.833600px;}
.y2a{bottom:1164.025950px;}
.y1{bottom:1165.083600px;}
.h13{height:33.840000px;}
.h4{height:34.176000px;}
.h3{height:34.230000px;}
.hc{height:38.448000px;}
.h2{height:39.120000px;}
.hd{height:44.010000px;}
.he{height:50.760000px;}
.ha{height:51.345000px;}
.h7{height:51.618024px;}
.h8{height:51.618624px;}
.hb{height:53.790000px;}
.h9{height:55.536000px;}
.h10{height:59.676000px;}
.h6{height:63.450000px;}
.h12{height:64.620000px;}
.hf{height:85.176000px;}
.h5{height:89.712000px;}
.h11{height:90.120000px;}
.h14{height:115.620000px;}
.h15{height:141.120000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:105.026700px;}
.x1{left:106.299150px;}
.x2d{left:113.963850px;}
.x32{left:116.407500px;}
.x24{left:121.121250px;}
.x43{left:122.992350px;}
.x36{left:125.808150px;}
.x2a{left:127.351500px;}
.x46{left:128.741850px;}
.x1a{left:130.990200px;}
.x12{left:132.036000px;}
.x44{left:134.646300px;}
.x30{left:142.899900px;}
.xe{left:146.194650px;}
.x23{left:148.944600px;}
.xc{left:150.391350px;}
.xa{left:160.299150px;}
.x6{left:161.786550px;}
.x7{left:166.532550px;}
.x2{left:168.574350px;}
.x3{left:169.699350px;}
.x20{left:175.681050px;}
.xb{left:185.883150px;}
.x1c{left:189.486150px;}
.x48{left:193.677750px;}
.x28{left:202.133400px;}
.x49{left:203.339400px;}
.x47{left:207.833700px;}
.x1b{left:213.418950px;}
.x26{left:252.655500px;}
.x8{left:259.225200px;}
.x9{left:263.971200px;}
.xf{left:280.000050px;}
.x1e{left:284.445450px;}
.x4{left:299.680800px;}
.x5{left:304.426800px;}
.xd{left:310.803900px;}
.x18{left:318.263550px;}
.x19{left:323.009550px;}
.x2f{left:325.026750px;}
.x35{left:326.151000px;}
.x2e{left:328.045650px;}
.x29{left:333.126150px;}
.x4a{left:334.458300px;}
.x34{left:339.762000px;}
.x39{left:341.986500px;}
.x38{left:344.184450px;}
.x11{left:345.804150px;}
.x33{left:349.747800px;}
.x1f{left:351.136500px;}
.x10{left:355.854000px;}
.x22{left:357.203850px;}
.x2c{left:366.329850px;}
.x25{left:370.853400px;}
.x2b{left:372.113700px;}
.x21{left:373.998900px;}
.x27{left:377.411400px;}
.x31{left:384.221550px;}
.x1d{left:398.770950px;}
.x4b{left:441.197850px;}
.x3d{left:442.447050px;}
.x3c{left:445.769400px;}
.x4c{left:453.505050px;}
.x4d{left:464.357400px;}
.x15{left:553.590150px;}
.x14{left:572.317950px;}
.x45{left:581.469450px;}
.x50{left:582.535350px;}
.x3f{left:587.860050px;}
.x37{left:596.745300px;}
.x3e{left:598.496550px;}
.x3a{left:603.015000px;}
.x4f{left:606.176250px;}
.x4e{left:607.484400px;}
.x42{left:623.432250px;}
.x40{left:627.357450px;}
.x51{left:628.447350px;}
.x41{left:631.016250px;}
.x3b{left:655.771500px;}
.x16{left:765.554400px;}
.x17{left:770.300400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.423467pt;}
.v2{vertical-align:22.666667pt;}
.v3{vertical-align:45.333333pt;}
.ls3{letter-spacing:-0.560000pt;}
.ls2{letter-spacing:-0.112000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:13.118933pt;}
.ls0{letter-spacing:1142.142933pt;}
.wsa7{word-spacing:-18.581333pt;}
.ws3{word-spacing:-15.008000pt;}
.ws2{word-spacing:-14.504000pt;}
.ws1a{word-spacing:-14.000000pt;}
.ws0{word-spacing:-11.050667pt;}
.ws1{word-spacing:-9.582965pt;}
.wsaa{word-spacing:-8.456000pt;}
.wsb9{word-spacing:-5.320000pt;}
.wsbf{word-spacing:-4.536000pt;}
.wsbe{word-spacing:-4.424000pt;}
.wsab{word-spacing:-3.248000pt;}
.wsac{word-spacing:-3.136000pt;}
.ws35{word-spacing:-3.080000pt;}
.ws71{word-spacing:-2.912000pt;}
.ws9{word-spacing:-2.800000pt;}
.ws85{word-spacing:-2.744000pt;}
.ws29{word-spacing:-2.688000pt;}
.ws5a{word-spacing:-2.632000pt;}
.ws86{word-spacing:-2.576000pt;}
.ws21{word-spacing:-2.520000pt;}
.ws92{word-spacing:-2.464000pt;}
.ws24{word-spacing:-2.408000pt;}
.ws97{word-spacing:-2.352000pt;}
.ws33{word-spacing:-2.296000pt;}
.ws65{word-spacing:-2.072000pt;}
.ws54{word-spacing:-2.016000pt;}
.ws8{word-spacing:-1.960000pt;}
.ws3c{word-spacing:-1.904000pt;}
.ws12{word-spacing:-1.848000pt;}
.ws52{word-spacing:-1.736000pt;}
.ws53{word-spacing:-1.680000pt;}
.ws44{word-spacing:-1.624000pt;}
.ws75{word-spacing:-1.512000pt;}
.ws7f{word-spacing:-1.456000pt;}
.ws50{word-spacing:-1.400000pt;}
.ws82{word-spacing:-1.344000pt;}
.ws5b{word-spacing:-1.288000pt;}
.wsa5{word-spacing:-1.232000pt;}
.ws1f{word-spacing:-1.176000pt;}
.ws56{word-spacing:-1.120000pt;}
.ws3e{word-spacing:-1.064000pt;}
.ws5c{word-spacing:-0.952000pt;}
.ws7e{word-spacing:-0.896000pt;}
.ws51{word-spacing:-0.840000pt;}
.ws8e{word-spacing:-0.784000pt;}
.ws57{word-spacing:-0.728000pt;}
.ws2d{word-spacing:-0.672000pt;}
.wsa{word-spacing:-0.616000pt;}
.ws7{word-spacing:-0.597333pt;}
.ws6f{word-spacing:-0.560000pt;}
.wse{word-spacing:-0.504000pt;}
.ws16{word-spacing:-0.448000pt;}
.ws5d{word-spacing:-0.392000pt;}
.ws4e{word-spacing:-0.336000pt;}
.ws87{word-spacing:-0.224000pt;}
.ws74{word-spacing:-0.168000pt;}
.ws55{word-spacing:-0.112000pt;}
.ws14{word-spacing:-0.056000pt;}
.ws4{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.056000pt;}
.ws38{word-spacing:0.112000pt;}
.ws78{word-spacing:0.168000pt;}
.ws2e{word-spacing:0.224000pt;}
.ws1c{word-spacing:0.280000pt;}
.wsf{word-spacing:0.336000pt;}
.wsc{word-spacing:0.392000pt;}
.wsd{word-spacing:0.448000pt;}
.ws32{word-spacing:0.504000pt;}
.ws42{word-spacing:0.560000pt;}
.ws23{word-spacing:0.616000pt;}
.ws37{word-spacing:0.672000pt;}
.ws34{word-spacing:0.728000pt;}
.ws28{word-spacing:0.784000pt;}
.ws22{word-spacing:0.840000pt;}
.ws4f{word-spacing:0.896000pt;}
.ws1b{word-spacing:0.952000pt;}
.ws72{word-spacing:1.008000pt;}
.wsb{word-spacing:1.064000pt;}
.ws26{word-spacing:1.120000pt;}
.ws59{word-spacing:1.176000pt;}
.ws13{word-spacing:1.232000pt;}
.ws6c{word-spacing:1.288000pt;}
.ws7a{word-spacing:1.344000pt;}
.ws62{word-spacing:1.400000pt;}
.ws77{word-spacing:1.456000pt;}
.ws39{word-spacing:1.512000pt;}
.ws43{word-spacing:1.568000pt;}
.ws8c{word-spacing:1.624000pt;}
.ws6b{word-spacing:1.680000pt;}
.ws93{word-spacing:1.736000pt;}
.ws17{word-spacing:1.792000pt;}
.ws61{word-spacing:1.848000pt;}
.ws27{word-spacing:1.904000pt;}
.ws69{word-spacing:1.960000pt;}
.ws15{word-spacing:2.016000pt;}
.ws3a{word-spacing:2.072000pt;}
.ws4b{word-spacing:2.128000pt;}
.ws5e{word-spacing:2.184000pt;}
.ws3b{word-spacing:2.240000pt;}
.ws64{word-spacing:2.296000pt;}
.wsa6{word-spacing:2.352000pt;}
.ws8d{word-spacing:2.408000pt;}
.ws30{word-spacing:2.464000pt;}
.ws31{word-spacing:2.520000pt;}
.ws8a{word-spacing:2.576000pt;}
.ws91{word-spacing:2.632000pt;}
.ws63{word-spacing:2.688000pt;}
.ws4c{word-spacing:2.744000pt;}
.ws80{word-spacing:2.800000pt;}
.ws41{word-spacing:2.856000pt;}
.ws6d{word-spacing:2.912000pt;}
.ws73{word-spacing:3.024000pt;}
.ws47{word-spacing:3.080000pt;}
.ws58{word-spacing:3.136000pt;}
.ws60{word-spacing:3.192000pt;}
.ws40{word-spacing:3.248000pt;}
.ws2a{word-spacing:3.304000pt;}
.ws5f{word-spacing:3.360000pt;}
.ws90{word-spacing:3.416000pt;}
.ws1d{word-spacing:3.472000pt;}
.ws46{word-spacing:3.528000pt;}
.ws3d{word-spacing:3.584000pt;}
.ws81{word-spacing:3.640000pt;}
.ws45{word-spacing:3.696000pt;}
.ws1e{word-spacing:3.752000pt;}
.ws84{word-spacing:3.864000pt;}
.ws7b{word-spacing:3.920000pt;}
.ws48{word-spacing:3.976000pt;}
.ws4d{word-spacing:4.032000pt;}
.ws18{word-spacing:4.088000pt;}
.ws70{word-spacing:4.144000pt;}
.ws20{word-spacing:4.200000pt;}
.ws94{word-spacing:4.256000pt;}
.ws76{word-spacing:4.312000pt;}
.ws88{word-spacing:4.368000pt;}
.ws8f{word-spacing:4.424000pt;}
.wsa8{word-spacing:4.480000pt;}
.ws68{word-spacing:4.648000pt;}
.ws83{word-spacing:4.704000pt;}
.ws49{word-spacing:4.816000pt;}
.ws2c{word-spacing:4.872000pt;}
.ws89{word-spacing:4.928000pt;}
.ws4a{word-spacing:4.984000pt;}
.ws2b{word-spacing:5.040000pt;}
.wsaf{word-spacing:5.096000pt;}
.ws8b{word-spacing:5.208000pt;}
.ws6e{word-spacing:5.264000pt;}
.ws79{word-spacing:5.320000pt;}
.ws6a{word-spacing:5.376000pt;}
.wsb0{word-spacing:5.432000pt;}
.wsba{word-spacing:5.488000pt;}
.ws7c{word-spacing:5.600000pt;}
.ws19{word-spacing:5.656000pt;}
.ws11{word-spacing:5.768000pt;}
.ws10{word-spacing:5.992000pt;}
.ws96{word-spacing:6.160000pt;}
.ws67{word-spacing:6.216000pt;}
.ws36{word-spacing:6.272000pt;}
.ws66{word-spacing:6.496000pt;}
.wsb5{word-spacing:6.776000pt;}
.ws2f{word-spacing:6.832000pt;}
.ws95{word-spacing:6.888000pt;}
.wsb4{word-spacing:7.056000pt;}
.ws25{word-spacing:7.224000pt;}
.ws7d{word-spacing:7.336000pt;}
.wsa9{word-spacing:7.616000pt;}
.wsbd{word-spacing:8.120000pt;}
.wsa4{word-spacing:8.176000pt;}
.wsbc{word-spacing:8.400000pt;}
.wsb6{word-spacing:8.904000pt;}
.wsb2{word-spacing:9.408000pt;}
.wsb1{word-spacing:9.744000pt;}
.wsae{word-spacing:10.416000pt;}
.wsb8{word-spacing:12.656000pt;}
.wsb7{word-spacing:13.104000pt;}
.wsb3{word-spacing:14.336000pt;}
.wsbb{word-spacing:15.232000pt;}
.wsad{word-spacing:25.536000pt;}
.ws98{word-spacing:67.534400pt;}
.wsa3{word-spacing:116.266133pt;}
.ws99{word-spacing:128.276800pt;}
.ws9a{word-spacing:130.440533pt;}
.wsa0{word-spacing:141.161067pt;}
.ws9e{word-spacing:232.494933pt;}
.wsa2{word-spacing:235.054400pt;}
.ws9b{word-spacing:247.130133pt;}
.wsa1{word-spacing:278.082133pt;}
.ws6{word-spacing:467.840000pt;}
.ws5{word-spacing:623.274667pt;}
.ws9d{word-spacing:659.317333pt;}
.ws9c{word-spacing:1116.144000pt;}
.ws9f{word-spacing:1177.751467pt;}
._3{margin-left:-623.277867pt;}
._4{margin-left:-467.838933pt;}
._1c{margin-left:-11.987467pt;}
._7{margin-left:-10.315200pt;}
._0{margin-left:-9.258667pt;}
._8{margin-left:-8.000000pt;}
._10{margin-left:-7.046400pt;}
._f{margin-left:-5.932533pt;}
._6{margin-left:-4.679467pt;}
._c{margin-left:-3.684800pt;}
._5{margin-left:-2.254400pt;}
._a{margin-left:-1.148000pt;}
._e{width:1.024533pt;}
._11{width:1.953600pt;}
._1b{width:3.577067pt;}
._b{width:5.584000pt;}
._d{width:14.122667pt;}
._9{width:49.127912pt;}
._14{width:84.132267pt;}
._1a{width:93.984000pt;}
._12{width:113.162133pt;}
._19{width:117.803200pt;}
._17{width:240.717867pt;}
._16{width:258.306133pt;}
._13{width:316.260800pt;}
._18{width:556.635200pt;}
._15{width:626.509333pt;}
._1{width:1035.494933pt;}
._2{width:1375.749333pt;}
.fs5{font-size:35.757333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:61.333333pt;}
.fsa{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:72.809867pt;}
.y5{bottom:75.524800pt;}
.y2b{bottom:75.629733pt;}
.y4{bottom:92.637600pt;}
.y28{bottom:120.944800pt;}
.y94{bottom:120.944933pt;}
.y146{bottom:121.300800pt;}
.y107{bottom:121.366800pt;}
.y131{bottom:121.426800pt;}
.y1b3{bottom:121.468800pt;}
.yba{bottom:121.668267pt;}
.y11f{bottom:121.847333pt;}
.y196{bottom:122.245733pt;}
.y27{bottom:132.944800pt;}
.y1ec{bottom:136.964267pt;}
.y178{bottom:136.973200pt;}
.y21c{bottom:137.145733pt;}
.yec{bottom:137.177333pt;}
.y5f{bottom:137.245200pt;}
.y24c{bottom:137.326933pt;}
.y106{bottom:137.366800pt;}
.y130{bottom:137.426800pt;}
.y93{bottom:137.472267pt;}
.yb9{bottom:137.668267pt;}
.y195{bottom:138.245733pt;}
.y177{bottom:153.001467pt;}
.y21b{bottom:153.346400pt;}
.y105{bottom:153.366800pt;}
.yeb{bottom:153.409733pt;}
.y12f{bottom:153.426800pt;}
.y5e{bottom:153.545600pt;}
.yb8{bottom:153.668267pt;}
.y24b{bottom:153.709200pt;}
.y92{bottom:153.999600pt;}
.y194{bottom:154.245733pt;}
.y1eb{bottom:158.652933pt;}
.y19c{bottom:159.096000pt;}
.y176{bottom:169.029733pt;}
.y104{bottom:169.366800pt;}
.yea{bottom:169.642133pt;}
.yb7{bottom:169.668267pt;}
.y5d{bottom:169.846133pt;}
.y193{bottom:170.245733pt;}
.y91{bottom:170.526933pt;}
.y26{bottom:171.401467pt;}
.y21a{bottom:173.326667pt;}
.y24a{bottom:173.870933pt;}
.y12e{bottom:182.655067pt;}
.y175{bottom:185.058000pt;}
.y103{bottom:185.366800pt;}
.yb6{bottom:185.668267pt;}
.ye9{bottom:185.874533pt;}
.y192{bottom:186.245733pt;}
.y90{bottom:187.054267pt;}
.y25{bottom:188.622400pt;}
.y5c{bottom:189.926000pt;}
.y249{bottom:190.253200pt;}
.y219{bottom:193.306933pt;}
.y1ea{bottom:196.792933pt;}
.y174{bottom:201.086267pt;}
.y102{bottom:201.366800pt;}
.yb5{bottom:201.668267pt;}
.ye8{bottom:202.106933pt;}
.y191{bottom:202.245733pt;}
.y8f{bottom:203.581600pt;}
.y19b{bottom:205.332267pt;}
.y5b{bottom:206.226533pt;}
.y248{bottom:206.635467pt;}
.y24{bottom:209.622800pt;}
.y1e9{bottom:212.278933pt;}
.y218{bottom:213.287200pt;}
.y173{bottom:217.114533pt;}
.y101{bottom:217.366800pt;}
.y190{bottom:218.245733pt;}
.yb4{bottom:221.447733pt;}
.y5a{bottom:222.526933pt;}
.y8e{bottom:223.888533pt;}
.ye7{bottom:224.008667pt;}
.y247{bottom:226.797067pt;}
.y23{bottom:226.843600pt;}
.y1e8{bottom:227.764933pt;}
.y172{bottom:233.142800pt;}
.y217{bottom:233.267467pt;}
.y100{bottom:233.366800pt;}
.y18f{bottom:234.245733pt;}
.yb3{bottom:237.447733pt;}
.y59{bottom:238.827333pt;}
.y8d{bottom:240.415867pt;}
.y246{bottom:243.179333pt;}
.y1e7{bottom:243.250933pt;}
.y22{bottom:244.064533pt;}
.yff{bottom:249.366800pt;}
.y216{bottom:249.468267pt;}
.yb2{bottom:253.447733pt;}
.y18e{bottom:254.025200pt;}
.y171{bottom:254.840267pt;}
.y58{bottom:255.127867pt;}
.y8c{bottom:256.943200pt;}
.y1e6{bottom:258.736933pt;}
.y245{bottom:259.561600pt;}
.y21{bottom:261.285333pt;}
.ye6{bottom:262.361733pt;}
.yfe{bottom:265.366800pt;}
.yb1{bottom:269.447733pt;}
.y215{bottom:269.448533pt;}
.y18d{bottom:270.025200pt;}
.y57{bottom:271.428267pt;}
.y8b{bottom:273.470533pt;}
.y244{bottom:275.943733pt;}
.y1e5{bottom:278.002400pt;}
.y20{bottom:278.506267pt;}
.ye5{bottom:278.594133pt;}
.yfd{bottom:281.366800pt;}
.y214{bottom:285.649200pt;}
.y18c{bottom:286.025200pt;}
.y56{bottom:287.728667pt;}
.y8a{bottom:289.997867pt;}
.y170{bottom:291.656000pt;}
.y1e4{bottom:293.488400pt;}
.ye4{bottom:294.826533pt;}
.y1f{bottom:295.727067pt;}
.y243{bottom:296.105600pt;}
.yfc{bottom:297.366800pt;}
.yb0{bottom:300.565867pt;}
.y18b{bottom:302.025200pt;}
.y55{bottom:304.029200pt;}
.y11e{bottom:304.461467pt;}
.y213{bottom:305.629467pt;}
.y89{bottom:306.525200pt;}
.y16f{bottom:307.417600pt;}
.y1e3{bottom:308.974400pt;}
.ye3{bottom:311.058933pt;}
.y1e{bottom:312.947867pt;}
.y242{bottom:316.267200pt;}
.yfb{bottom:317.146400pt;}
.y11d{bottom:317.794800pt;}
.y18a{bottom:318.025200pt;}
.y54{bottom:320.329600pt;}
.y212{bottom:321.830267pt;}
.y88{bottom:323.052533pt;}
.y16e{bottom:323.179200pt;}
.y1e2{bottom:324.460267pt;}
.y1d{bottom:330.168800pt;}
.ye2{bottom:331.070800pt;}
.y241{bottom:332.649467pt;}
.yfa{bottom:333.146400pt;}
.y189{bottom:334.025333pt;}
.y53{bottom:336.630000pt;}
.y211{bottom:338.030933pt;}
.y16d{bottom:338.940800pt;}
.y87{bottom:339.579867pt;}
.y11c{bottom:346.246267pt;}
.ye1{bottom:347.303200pt;}
.y1c{bottom:347.389600pt;}
.y240{bottom:349.031733pt;}
.yf9{bottom:349.146400pt;}
.y188{bottom:350.025333pt;}
.y1e1{bottom:353.174667pt;}
.y16c{bottom:354.702400pt;}
.y86{bottom:356.107200pt;}
.y52{bottom:356.710000pt;}
.y210{bottom:358.011333pt;}
.y11b{bottom:362.246267pt;}
.ye0{bottom:363.535600pt;}
.yf8{bottom:365.146400pt;}
.y187{bottom:366.025333pt;}
.y23f{bottom:369.193467pt;}
.y1b{bottom:370.279733pt;}
.y16b{bottom:370.464000pt;}
.y85{bottom:372.634533pt;}
.y51{bottom:373.010400pt;}
.y20f{bottom:374.212000pt;}
.y1e0{bottom:376.645467pt;}
.y11a{bottom:378.046267pt;}
.ydf{bottom:379.768000pt;}
.yf7{bottom:381.146400pt;}
.y186{bottom:382.025333pt;}
.y1dc{bottom:382.312133pt;}
.y23e{bottom:385.575733pt;}
.y26d{bottom:387.232667pt;}
.y1de{bottom:387.978800pt;}
.y84{bottom:389.161867pt;}
.y50{bottom:389.310800pt;}
.y16a{bottom:390.005067pt;}
.y20e{bottom:390.412667pt;}
.y1da{bottom:393.645467pt;}
.y119{bottom:393.846267pt;}
.yde{bottom:396.000400pt;}
.yf6{bottom:397.146400pt;}
.y185{bottom:398.025333pt;}
.y1dd{bottom:399.312133pt;}
.y23d{bottom:401.957867pt;}
.y26c{bottom:403.232667pt;}
.y1db{bottom:404.978800pt;}
.y4f{bottom:405.611333pt;}
.y83{bottom:405.689200pt;}
.y169{bottom:405.766667pt;}
.y1a{bottom:409.621333pt;}
.y118{bottom:409.646267pt;}
.y20d{bottom:410.392933pt;}
.y1df{bottom:410.645467pt;}
.ydd{bottom:412.232800pt;}
.yf5{bottom:413.146400pt;}
.y26b{bottom:419.232667pt;}
.y168{bottom:421.528267pt;}
.y4e{bottom:421.911733pt;}
.y23c{bottom:422.119600pt;}
.y82{bottom:422.216533pt;}
.y117{bottom:425.446267pt;}
.y1d9{bottom:425.724267pt;}
.y20c{bottom:426.593733pt;}
.y19{bottom:426.842267pt;}
.y184{bottom:427.253600pt;}
.ydc{bottom:428.465200pt;}
.yf4{bottom:429.146400pt;}
.y1d7{bottom:431.390933pt;}
.y1d8{bottom:437.057600pt;}
.y167{bottom:437.289867pt;}
.y4d{bottom:438.212133pt;}
.y23b{bottom:438.501867pt;}
.y81{bottom:438.743867pt;}
.y26a{bottom:439.012133pt;}
.y116{bottom:441.246267pt;}
.y1d6{bottom:442.724267pt;}
.ydb{bottom:444.697600pt;}
.yf3{bottom:445.146400pt;}
.y12d{bottom:446.004133pt;}
.y18{bottom:447.842667pt;}
.y20b{bottom:448.463733pt;}
.y166{bottom:453.051467pt;}
.y4c{bottom:454.512533pt;}
.y23a{bottom:454.884133pt;}
.y80{bottom:455.271200pt;}
.y269{bottom:458.791600pt;}
.yda{bottom:460.929867pt;}
.yf2{bottom:461.146400pt;}
.y1d5{bottom:463.469867pt;}
.y115{bottom:464.605333pt;}
.y17{bottom:465.063467pt;}
.y165{bottom:468.813067pt;}
.y1d4{bottom:469.136533pt;}
.y4b{bottom:470.813067pt;}
.y7f{bottom:471.798533pt;}
.y12c{bottom:474.455600pt;}
.y268{bottom:474.791600pt;}
.y239{bottom:475.045867pt;}
.yf1{bottom:477.146400pt;}
.yd9{bottom:477.162400pt;}
.y1b2{bottom:482.140800pt;}
.y16{bottom:482.284400pt;}
.y164{bottom:484.574667pt;}
.y145{bottom:485.332400pt;}
.y20a{bottom:486.785200pt;}
.y4a{bottom:487.113467pt;}
.y1d3{bottom:489.882133pt;}
.y12b{bottom:490.455600pt;}
.y238{bottom:491.428000pt;}
.y7e{bottom:492.105467pt;}
.yf0{bottom:493.146400pt;}
.yd8{bottom:493.394800pt;}
.y267{bottom:494.571200pt;}
.y1b1{bottom:495.474133pt;}
.y1d2{bottom:495.548800pt;}
.y19a{bottom:497.342800pt;}
.y15{bottom:499.505200pt;}
.y163{bottom:500.336267pt;}
.y114{bottom:501.392800pt;}
.y209{bottom:502.986000pt;}
.y49{bottom:503.413867pt;}
.y12a{bottom:506.455600pt;}
.y237{bottom:507.810267pt;}
.y7d{bottom:508.632800pt;}
.y199{bottom:510.676133pt;}
.yd7{bottom:513.406667pt;}
.y144{bottom:513.783867pt;}
.y266{bottom:514.350667pt;}
.yef{bottom:514.815733pt;}
.y162{bottom:516.097867pt;}
.y1d0{bottom:516.294400pt;}
.y14{bottom:516.726133pt;}
.y113{bottom:517.392800pt;}
.y208{bottom:519.186667pt;}
.y48{bottom:519.714400pt;}
.y129{bottom:522.455600pt;}
.y1b0{bottom:523.925600pt;}
.y7c{bottom:525.160133pt;}
.y1cf{bottom:527.627733pt;}
.y236{bottom:527.972000pt;}
.yd6{bottom:529.639067pt;}
.y143{bottom:529.783867pt;}
.y265{bottom:530.350667pt;}
.yaf{bottom:531.684000pt;}
.y161{bottom:531.859467pt;}
.y112{bottom:533.192667pt;}
.y13{bottom:533.946933pt;}
.y207{bottom:535.387467pt;}
.y47{bottom:536.014800pt;}
.y128{bottom:538.455600pt;}
.y1d1{bottom:538.961067pt;}
.y1af{bottom:539.925600pt;}
.y7b{bottom:541.687467pt;}
.y235{bottom:544.354267pt;}
.y142{bottom:545.783867pt;}
.yd5{bottom:545.871467pt;}
.y160{bottom:547.621067pt;}
.y198{bottom:548.576400pt;}
.y111{bottom:548.992667pt;}
.y264{bottom:550.130267pt;}
.y12{bottom:551.167733pt;}
.y206{bottom:551.588267pt;}
.y46{bottom:552.315200pt;}
.y1ce{bottom:554.040000pt;}
.y1ae{bottom:555.925600pt;}
.y7a{bottom:558.214800pt;}
.y127{bottom:560.124933pt;}
.yae{bottom:560.135467pt;}
.y234{bottom:560.736400pt;}
.yee{bottom:561.051867pt;}
.y141{bottom:561.783867pt;}
.yd4{bottom:562.103867pt;}
.y15f{bottom:563.382667pt;}
.y110{bottom:564.792667pt;}
.y1cd{bottom:565.373333pt;}
.y263{bottom:566.130267pt;}
.y205{bottom:567.788933pt;}
.y11{bottom:568.388667pt;}
.y1ca{bottom:571.040000pt;}
.y1ad{bottom:571.925600pt;}
.y45{bottom:572.395200pt;}
.y79{bottom:574.742133pt;}
.yad{bottom:576.135467pt;}
.y1cc{bottom:576.706667pt;}
.y233{bottom:577.118667pt;}
.y140{bottom:577.783867pt;}
.yd3{bottom:578.336267pt;}
.y15e{bottom:579.144267pt;}
.y10f{bottom:580.592667pt;}
.y204{bottom:583.989600pt;}
.y10{bottom:585.609467pt;}
.y262{bottom:585.909733pt;}
.y1ac{bottom:587.925600pt;}
.y1cb{bottom:588.040000pt;}
.y44{bottom:588.695600pt;}
.y78{bottom:591.269467pt;}
.yac{bottom:592.135467pt;}
.y13f{bottom:593.783867pt;}
.yd2{bottom:594.568667pt;}
.y15d{bottom:594.905867pt;}
.y10e{bottom:596.392800pt;}
.y232{bottom:597.280400pt;}
.y126{bottom:600.691867pt;}
.y261{bottom:601.909733pt;}
.y1c9{bottom:603.118933pt;}
.y1ab{bottom:603.925600pt;}
.y203{bottom:603.969867pt;}
.y43{bottom:604.996000pt;}
.y77{bottom:607.796800pt;}
.yab{bottom:608.135467pt;}
.yf{bottom:608.499600pt;}
.y1c8{bottom:608.785600pt;}
.y13e{bottom:609.783867pt;}
.yd1{bottom:610.800933pt;}
.y10d{bottom:612.192667pt;}
.y15c{bottom:614.447067pt;}
.y231{bottom:617.442133pt;}
.y260{bottom:617.909733pt;}
.y1aa{bottom:619.925600pt;}
.y202{bottom:620.170667pt;}
.y42{bottom:621.296533pt;}
.yaa{bottom:624.135467pt;}
.y76{bottom:624.324133pt;}
.y10c{bottom:627.992667pt;}
.y1c7{bottom:629.531067pt;}
.y15b{bottom:630.208667pt;}
.yd0{bottom:630.812933pt;}
.y13d{bottom:631.453067pt;}
.y1a9{bottom:635.925600pt;}
.y201{bottom:636.371467pt;}
.y41{bottom:637.596933pt;}
.y230{bottom:637.603867pt;}
.y25f{bottom:637.689333pt;}
.ya9{bottom:640.135467pt;}
.y75{bottom:640.851467pt;}
.y1c6{bottom:640.864400pt;}
.y10b{bottom:643.792667pt;}
.y15a{bottom:645.970267pt;}
.ycf{bottom:647.045333pt;}
.y1a8{bottom:651.925600pt;}
.y25e{bottom:653.689333pt;}
.y40{bottom:653.897333pt;}
.y22f{bottom:653.986133pt;}
.ya8{bottom:656.135467pt;}
.y200{bottom:656.351733pt;}
.y74{bottom:657.378800pt;}
.y159{bottom:661.731867pt;}
.ye{bottom:662.959333pt;}
.yce{bottom:663.277733pt;}
.y10a{bottom:665.262000pt;}
.y1c5{bottom:667.276667pt;}
.y1a7{bottom:667.925600pt;}
.y13c{bottom:668.240533pt;}
.y3f{bottom:670.197867pt;}
.y22e{bottom:670.368267pt;}
.ya7{bottom:672.135467pt;}
.y1ff{bottom:672.552400pt;}
.y25d{bottom:673.468800pt;}
.y73{bottom:673.906133pt;}
.y1c4{bottom:678.610000pt;}
.ycd{bottom:679.510133pt;}
.y158{bottom:681.272933pt;}
.yd{bottom:682.580267pt;}
.y1a6{bottom:683.925600pt;}
.y13b{bottom:684.240533pt;}
.y3e{bottom:686.498267pt;}
.ya6{bottom:688.135467pt;}
.y1fe{bottom:688.753200pt;}
.y25c{bottom:689.468800pt;}
.y72{bottom:690.433467pt;}
.y22d{bottom:690.530000pt;}
.ycc{bottom:695.742533pt;}
.y157{bottom:697.034533pt;}
.y1a5{bottom:699.925600pt;}
.y13a{bottom:700.240533pt;}
.y3d{bottom:702.798667pt;}
.y1c3{bottom:703.154400pt;}
.ya5{bottom:704.135467pt;}
.y1fd{bottom:704.954000pt;}
.y25b{bottom:705.468800pt;}
.y22c{bottom:706.912267pt;}
.y71{bottom:706.960800pt;}
.y109{bottom:707.718800pt;}
.ycb{bottom:711.974800pt;}
.y156{bottom:712.796133pt;}
.y1a4{bottom:715.925600pt;}
.y139{bottom:716.240533pt;}
.y3c{bottom:719.099067pt;}
.ya4{bottom:720.135467pt;}
.y1fc{bottom:721.154667pt;}
.y70{bottom:723.488133pt;}
.y25a{bottom:725.248400pt;}
.y22b{bottom:727.074000pt;}
.yca{bottom:728.207333pt;}
.y155{bottom:728.557733pt;}
.y1c2{bottom:731.625200pt;}
.y1a3{bottom:731.925600pt;}
.y138{bottom:732.240533pt;}
.y3b{bottom:735.399600pt;}
.ya3{bottom:736.135467pt;}
.y1fb{bottom:737.355333pt;}
.yc{bottom:739.996400pt;}
.y6f{bottom:740.015467pt;}
.y259{bottom:741.248400pt;}
.y22a{bottom:743.456267pt;}
.y154{bottom:744.319333pt;}
.yc9{bottom:744.439600pt;}
.y1c1{bottom:747.644533pt;}
.y1a2{bottom:747.925600pt;}
.y137{bottom:748.240533pt;}
.y3a{bottom:751.700000pt;}
.ya2{bottom:752.135467pt;}
.y1fa{bottom:753.556133pt;}
.y6e{bottom:756.542800pt;}
.y229{bottom:759.838533pt;}
.y153{bottom:760.080933pt;}
.yc8{bottom:760.672000pt;}
.y258{bottom:761.027867pt;}
.yb{bottom:761.217200pt;}
.y1c0{bottom:762.997200pt;}
.y1a1{bottom:763.925600pt;}
.y136{bottom:764.240533pt;}
.ya1{bottom:768.135467pt;}
.y1f9{bottom:769.756800pt;}
.y39{bottom:771.780000pt;}
.y6d{bottom:773.070133pt;}
.y152{bottom:775.842533pt;}
.yc7{bottom:776.904400pt;}
.y257{bottom:777.027867pt;}
.y1bf{bottom:778.349733pt;}
.y1a0{bottom:779.925600pt;}
.y228{bottom:780.000267pt;}
.y135{bottom:780.240533pt;}
.ya0{bottom:784.135467pt;}
.y1f8{bottom:785.957600pt;}
.y38{bottom:788.080400pt;}
.y6c{bottom:789.597467pt;}
.y183{bottom:789.920267pt;}
.y151{bottom:791.604133pt;}
.yc6{bottom:793.136933pt;}
.y1be{bottom:793.702533pt;}
.y19f{bottom:795.925600pt;}
.y227{bottom:796.382533pt;}
.y256{bottom:796.807467pt;}
.y9f{bottom:800.135467pt;}
.y182{bottom:803.253600pt;}
.y37{bottom:804.380800pt;}
.ya{bottom:805.115200pt;}
.y1f7{bottom:805.937867pt;}
.y6b{bottom:806.124800pt;}
.y150{bottom:807.365733pt;}
.yc5{bottom:809.369200pt;}
.y134{bottom:809.468800pt;}
.y19e{bottom:811.925600pt;}
.y226{bottom:812.764667pt;}
.y255{bottom:812.807467pt;}
.y1bd{bottom:814.724400pt;}
.y9e{bottom:816.135467pt;}
.y36{bottom:820.681333pt;}
.y1f6{bottom:822.138533pt;}
.y6a{bottom:822.652133pt;}
.y14f{bottom:823.127333pt;}
.yc4{bottom:825.601600pt;}
.y19d{bottom:827.925600pt;}
.y181{bottom:831.705067pt;}
.y254{bottom:832.586933pt;}
.y225{bottom:832.926400pt;}
.y9{bottom:833.002800pt;}
.y9d{bottom:835.914933pt;}
.y35{bottom:836.981733pt;}
.y1f5{bottom:838.339333pt;}
.y14e{bottom:838.888800pt;}
.y69{bottom:839.179467pt;}
.yc3{bottom:845.613467pt;}
.y180{bottom:847.705067pt;}
.y253{bottom:848.586933pt;}
.y224{bottom:849.308667pt;}
.y9c{bottom:851.914933pt;}
.y1bc{bottom:852.864400pt;}
.y34{bottom:853.282133pt;}
.y1f4{bottom:854.540133pt;}
.y68{bottom:855.706933pt;}
.y14d{bottom:860.319733pt;}
.y8{bottom:860.890267pt;}
.yc2{bottom:861.846000pt;}
.y17f{bottom:863.705067pt;}
.y252{bottom:864.586933pt;}
.y9b{bottom:867.914933pt;}
.y1bb{bottom:868.883733pt;}
.y223{bottom:869.470400pt;}
.y33{bottom:869.582667pt;}
.y125{bottom:869.920133pt;}
.y1f3{bottom:870.740800pt;}
.y67{bottom:872.234267pt;}
.yc1{bottom:878.078267pt;}
.y17e{bottom:879.705067pt;}
.y124{bottom:883.253467pt;}
.y9a{bottom:883.914933pt;}
.y1ba{bottom:884.236400pt;}
.y251{bottom:884.366400pt;}
.y222{bottom:885.852667pt;}
.y32{bottom:885.883067pt;}
.y66{bottom:888.761467pt;}
.y1f2{bottom:890.721067pt;}
.yc0{bottom:894.310667pt;}
.y17d{bottom:895.705067pt;}
.y14c{bottom:897.135467pt;}
.y1b9{bottom:899.589067pt;}
.y99{bottom:899.914933pt;}
.y250{bottom:900.366400pt;}
.y31{bottom:902.183467pt;}
.y221{bottom:902.234800pt;}
.y1f1{bottom:906.921867pt;}
.y65{bottom:909.068400pt;}
.ybf{bottom:910.543067pt;}
.y123{bottom:911.704933pt;}
.y17c{bottom:911.705067pt;}
.y14b{bottom:912.896933pt;}
.y1b8{bottom:914.941733pt;}
.y98{bottom:915.914933pt;}
.y30{bottom:918.483867pt;}
.y220{bottom:918.617067pt;}
.y24f{bottom:920.146000pt;}
.y1f0{bottom:923.122533pt;}
.y64{bottom:925.595733pt;}
.ybe{bottom:926.775467pt;}
.y122{bottom:927.704933pt;}
.y17b{bottom:927.705067pt;}
.y14a{bottom:928.658667pt;}
.y1b7{bottom:930.294400pt;}
.y2f{bottom:934.784400pt;}
.y24e{bottom:936.146000pt;}
.y97{bottom:937.584267pt;}
.y21f{bottom:938.778800pt;}
.y1ef{bottom:939.323333pt;}
.y63{bottom:942.123067pt;}
.ybd{bottom:943.007867pt;}
.y121{bottom:943.704933pt;}
.y17a{bottom:943.705067pt;}
.y149{bottom:944.420133pt;}
.y197{bottom:945.363733pt;}
.y1b6{bottom:945.647067pt;}
.y133{bottom:947.253600pt;}
.y2e{bottom:951.084800pt;}
.y24d{bottom:955.925600pt;}
.y62{bottom:958.650400pt;}
.y21e{bottom:958.940533pt;}
.ybc{bottom:959.240267pt;}
.y1ee{bottom:959.303600pt;}
.y120{bottom:959.704933pt;}
.y179{bottom:959.705067pt;}
.y148{bottom:960.181867pt;}
.y1b5{bottom:960.999733pt;}
.y2d{bottom:967.385200pt;}
.y7{bottom:968.826533pt;}
.y61{bottom:975.177733pt;}
.y21d{bottom:975.322800pt;}
.ybb{bottom:975.472667pt;}
.y1ed{bottom:975.504267pt;}
.y96{bottom:975.704933pt;}
.y132{bottom:975.705067pt;}
.y147{bottom:975.943333pt;}
.y1b4{bottom:976.352267pt;}
.y6{bottom:980.826533pt;}
.y2c{bottom:989.354933pt;}
.y95{bottom:991.704933pt;}
.y60{bottom:991.705067pt;}
.yed{bottom:993.114933pt;}
.y108{bottom:993.115067pt;}
.y3{bottom:1010.296533pt;}
.y2{bottom:1022.963200pt;}
.y2a{bottom:1034.689733pt;}
.y1{bottom:1035.629867pt;}
.h13{height:30.080000pt;}
.h4{height:30.378667pt;}
.h3{height:30.426667pt;}
.hc{height:34.176000pt;}
.h2{height:34.773333pt;}
.hd{height:39.120000pt;}
.he{height:45.120000pt;}
.ha{height:45.640000pt;}
.h7{height:45.882688pt;}
.h8{height:45.883221pt;}
.hb{height:47.813333pt;}
.h9{height:49.365333pt;}
.h10{height:53.045333pt;}
.h6{height:56.400000pt;}
.h12{height:57.440000pt;}
.hf{height:75.712000pt;}
.h5{height:79.744000pt;}
.h11{height:80.106667pt;}
.h14{height:102.773333pt;}
.h15{height:125.440000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:93.357067pt;}
.x1{left:94.488133pt;}
.x2d{left:101.301200pt;}
.x32{left:103.473333pt;}
.x24{left:107.663333pt;}
.x43{left:109.326533pt;}
.x36{left:111.829467pt;}
.x2a{left:113.201333pt;}
.x46{left:114.437200pt;}
.x1a{left:116.435733pt;}
.x12{left:117.365333pt;}
.x44{left:119.685600pt;}
.x30{left:127.022133pt;}
.xe{left:129.950800pt;}
.x23{left:132.395200pt;}
.xc{left:133.681200pt;}
.xa{left:142.488133pt;}
.x6{left:143.810267pt;}
.x7{left:148.028933pt;}
.x2{left:149.843867pt;}
.x3{left:150.843867pt;}
.x20{left:156.160933pt;}
.xb{left:165.229467pt;}
.x1c{left:168.432133pt;}
.x48{left:172.158000pt;}
.x28{left:179.674133pt;}
.x49{left:180.746133pt;}
.x47{left:184.741067pt;}
.x1b{left:189.705733pt;}
.x26{left:224.582667pt;}
.x8{left:230.422400pt;}
.x9{left:234.641067pt;}
.xf{left:248.888933pt;}
.x1e{left:252.840400pt;}
.x4{left:266.382933pt;}
.x5{left:270.601600pt;}
.xd{left:276.270133pt;}
.x18{left:282.900933pt;}
.x19{left:287.119600pt;}
.x2f{left:288.912667pt;}
.x35{left:289.912000pt;}
.x2e{left:291.596133pt;}
.x29{left:296.112133pt;}
.x4a{left:297.296267pt;}
.x34{left:302.010667pt;}
.x39{left:303.988000pt;}
.x38{left:305.941733pt;}
.x11{left:307.381467pt;}
.x33{left:310.886933pt;}
.x1f{left:312.121333pt;}
.x10{left:316.314667pt;}
.x22{left:317.514533pt;}
.x2c{left:325.626533pt;}
.x25{left:329.647467pt;}
.x2b{left:330.767733pt;}
.x21{left:332.443467pt;}
.x27{left:335.476800pt;}
.x31{left:341.530267pt;}
.x1d{left:354.463067pt;}
.x4b{left:392.175867pt;}
.x3d{left:393.286267pt;}
.x3c{left:396.239467pt;}
.x4c{left:403.115600pt;}
.x4d{left:412.762133pt;}
.x15{left:492.080133pt;}
.x14{left:508.727067pt;}
.x45{left:516.861733pt;}
.x50{left:517.809200pt;}
.x3f{left:522.542267pt;}
.x37{left:530.440267pt;}
.x3e{left:531.996933pt;}
.x3a{left:536.013333pt;}
.x4f{left:538.823333pt;}
.x4e{left:539.986133pt;}
.x42{left:554.162000pt;}
.x40{left:557.651067pt;}
.x51{left:558.619867pt;}
.x41{left:560.903333pt;}
.x3b{left:582.908000pt;}
.x16{left:680.492800pt;}
.x17{left:684.711467pt;}
}




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