
    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_d1c12595bb57fccbbe575ff1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973633;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_49070184a1ed1043e1ef5bbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011230;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_5c0ee6e61d1c87788aa76f39.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_3be036c6f98da2a0b656c5b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_b3e19d28e62771648577d96a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_3b11c4a0a5ac628f73aa5545.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_a7241bb29519194f5aa1803a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_5cb6bd3c21be2dfabed12e6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_74ed6c699f648703393c55fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.116000;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_679384799b69fbadf4bdda7c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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_3af14fdf1eab2a69e237fbe9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.968262;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_a8f165e63768b0035240c123.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f0cd81df2a5717c7f624617d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976599;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_73633aab8c77fc536b1b954d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.949000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c1d71c11caaef7f2e766e614.woff2')format("woff");}.fff{font-family:fff;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d422a04bf76d592102778bd1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d7d355a1ba0d8e34a210da23.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_71f9ea6854e137d05b2af691.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.976155;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a7241bb29519194f5aa1803a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.700000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v4{vertical-align:-30.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.086108px;}
.v2{vertical-align:23.960400px;}
.v3{vertical-align:30.000000px;}
.ls5{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.360000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.320000px;}
.ls0{letter-spacing:4.050000px;}
.ls2{letter-spacing:8.910000px;}
.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;}
}
.ws13{word-spacing:-35.856000px;}
.ws59{word-spacing:-29.303100px;}
.ws3b{word-spacing:-23.712000px;}
.ws5{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws71{word-spacing:-16.776000px;}
.wsc{word-spacing:-16.704000px;}
.ws6{word-spacing:-14.688000px;}
.ws12a{word-spacing:-12.366000px;}
.ws11{word-spacing:-12.312000px;}
.ws5a{word-spacing:-11.904000px;}
.wsb{word-spacing:-10.800000px;}
.ws14{word-spacing:-10.410048px;}
.ws7{word-spacing:-10.152000px;}
.ws3{word-spacing:-8.964000px;}
.wsa{word-spacing:-8.568000px;}
.ws10{word-spacing:-8.064000px;}
.wsd{word-spacing:-6.336000px;}
.wse{word-spacing:-6.264000px;}
.ws8{word-spacing:-5.832000px;}
.ws115{word-spacing:-5.292000px;}
.wsf{word-spacing:-4.680000px;}
.ws10b{word-spacing:-4.104000px;}
.ws10e{word-spacing:-4.032000px;}
.ws70{word-spacing:-3.456000px;}
.ws23{word-spacing:-3.384000px;}
.ws124{word-spacing:-3.312000px;}
.ws114{word-spacing:-3.264000px;}
.wse6{word-spacing:-3.240000px;}
.ws96{word-spacing:-3.168000px;}
.ws1c{word-spacing:-3.096000px;}
.ws7a{word-spacing:-3.024000px;}
.ws12{word-spacing:-2.808000px;}
.ws7d{word-spacing:-2.736000px;}
.wsdf{word-spacing:-2.664000px;}
.ws3e{word-spacing:-2.592000px;}
.ws61{word-spacing:-2.520000px;}
.wsd3{word-spacing:-2.376000px;}
.ws73{word-spacing:-2.304000px;}
.wse8{word-spacing:-2.232000px;}
.ws38{word-spacing:-2.160000px;}
.wscc{word-spacing:-2.088000px;}
.ws123{word-spacing:-1.944000px;}
.ws94{word-spacing:-1.872000px;}
.ws1a{word-spacing:-1.800000px;}
.ws1b{word-spacing:-1.656000px;}
.ws76{word-spacing:-1.584000px;}
.ws77{word-spacing:-1.512000px;}
.wsb3{word-spacing:-1.440000px;}
.ws78{word-spacing:-1.368000px;}
.ws9{word-spacing:-1.296000px;}
.ws11d{word-spacing:-1.224000px;}
.wsc1{word-spacing:-1.152000px;}
.ws7e{word-spacing:-1.080000px;}
.ws10a{word-spacing:-1.008000px;}
.ws60{word-spacing:-0.936000px;}
.ws1{word-spacing:-0.918000px;}
.ws5d{word-spacing:-0.864000px;}
.wsb6{word-spacing:-0.792000px;}
.wse9{word-spacing:-0.720000px;}
.ws74{word-spacing:-0.648000px;}
.ws125{word-spacing:-0.576000px;}
.ws11a{word-spacing:-0.504000px;}
.ws99{word-spacing:-0.432000px;}
.ws116{word-spacing:-0.288000px;}
.ws97{word-spacing:-0.144000px;}
.ws3a{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws8e{word-spacing:0.216000px;}
.wsd4{word-spacing:0.288000px;}
.ws64{word-spacing:0.360000px;}
.ws46{word-spacing:0.432000px;}
.ws37{word-spacing:0.504000px;}
.ws93{word-spacing:0.576000px;}
.wsc2{word-spacing:0.648000px;}
.ws36{word-spacing:0.720000px;}
.ws17{word-spacing:0.792000px;}
.ws2e{word-spacing:0.864000px;}
.ws9a{word-spacing:0.936000px;}
.wsa0{word-spacing:1.008000px;}
.ws28{word-spacing:1.080000px;}
.wsed{word-spacing:1.296000px;}
.wse5{word-spacing:1.368000px;}
.ws75{word-spacing:1.440000px;}
.ws65{word-spacing:1.512000px;}
.ws52{word-spacing:1.536000px;}
.wsa7{word-spacing:1.584000px;}
.wscf{word-spacing:1.656000px;}
.wsc8{word-spacing:1.728000px;}
.wsf1{word-spacing:1.800000px;}
.wsce{word-spacing:1.872000px;}
.wsf2{word-spacing:1.944000px;}
.ws49{word-spacing:2.016000px;}
.ws39{word-spacing:2.088000px;}
.ws112{word-spacing:2.112000px;}
.wseb{word-spacing:2.160000px;}
.ws4c{word-spacing:2.304000px;}
.ws8d{word-spacing:2.376000px;}
.ws104{word-spacing:2.448000px;}
.wsf0{word-spacing:2.520000px;}
.ws45{word-spacing:2.592000px;}
.wsab{word-spacing:2.736000px;}
.ws15{word-spacing:2.808000px;}
.wsfd{word-spacing:2.880000px;}
.ws3d{word-spacing:2.952000px;}
.wsdb{word-spacing:3.024000px;}
.ws102{word-spacing:3.096000px;}
.wsff{word-spacing:3.168000px;}
.wsf5{word-spacing:3.240000px;}
.ws63{word-spacing:3.312000px;}
.ws111{word-spacing:3.360000px;}
.ws2a{word-spacing:3.456000px;}
.ws79{word-spacing:3.528000px;}
.ws9b{word-spacing:3.600000px;}
.ws20{word-spacing:3.672000px;}
.wsc9{word-spacing:3.744000px;}
.ws128{word-spacing:3.816000px;}
.ws108{word-spacing:3.888000px;}
.wsb7{word-spacing:3.960000px;}
.ws9f{word-spacing:4.032000px;}
.ws31{word-spacing:4.104000px;}
.ws107{word-spacing:4.176000px;}
.ws25{word-spacing:4.248000px;}
.ws4e{word-spacing:4.320000px;}
.wsca{word-spacing:4.392000px;}
.ws7b{word-spacing:4.464000px;}
.wsfb{word-spacing:4.608000px;}
.wse2{word-spacing:4.680000px;}
.wsa4{word-spacing:4.704000px;}
.ws27{word-spacing:4.752000px;}
.ws47{word-spacing:4.824000px;}
.ws48{word-spacing:4.896000px;}
.wsc5{word-spacing:4.968000px;}
.ws30{word-spacing:5.112000px;}
.wsc0{word-spacing:5.184000px;}
.ws9e{word-spacing:5.256000px;}
.wsb9{word-spacing:5.328000px;}
.wsa8{word-spacing:5.400000px;}
.ws2d{word-spacing:5.472000px;}
.wse0{word-spacing:5.616000px;}
.ws3f{word-spacing:5.688000px;}
.wsee{word-spacing:5.760000px;}
.wsa3{word-spacing:5.832000px;}
.ws2f{word-spacing:5.904000px;}
.ws4b{word-spacing:5.976000px;}
.wsf8{word-spacing:6.120000px;}
.wsd9{word-spacing:6.192000px;}
.wsfa{word-spacing:6.336000px;}
.ws98{word-spacing:6.408000px;}
.ws120{word-spacing:6.480000px;}
.ws11e{word-spacing:6.768000px;}
.wsb1{word-spacing:6.840000px;}
.wse1{word-spacing:6.984000px;}
.wsf4{word-spacing:7.056000px;}
.wsdc{word-spacing:7.200000px;}
.wsd8{word-spacing:7.272000px;}
.ws121{word-spacing:7.416000px;}
.ws5c{word-spacing:7.560000px;}
.wse4{word-spacing:7.632000px;}
.wsb0{word-spacing:7.704000px;}
.ws126{word-spacing:7.776000px;}
.wsda{word-spacing:7.848000px;}
.wsa1{word-spacing:7.992000px;}
.ws118{word-spacing:8.064000px;}
.wsbe{word-spacing:8.208000px;}
.ws21{word-spacing:8.280000px;}
.wsae{word-spacing:8.424000px;}
.ws110{word-spacing:8.496000px;}
.ws1d{word-spacing:8.568000px;}
.wse7{word-spacing:8.712000px;}
.ws66{word-spacing:8.784000px;}
.ws22{word-spacing:8.856000px;}
.wsb4{word-spacing:8.928000px;}
.wsd7{word-spacing:9.000000px;}
.ws34{word-spacing:9.144000px;}
.ws5b{word-spacing:9.156000px;}
.ws3c{word-spacing:9.216000px;}
.ws43{word-spacing:9.360000px;}
.ws62{word-spacing:9.504000px;}
.ws87{word-spacing:9.576000px;}
.wsd2{word-spacing:9.648000px;}
.ws56{word-spacing:9.696000px;}
.ws16{word-spacing:9.792000px;}
.ws26{word-spacing:10.008000px;}
.ws50{word-spacing:10.080000px;}
.ws6f{word-spacing:10.296000px;}
.wsba{word-spacing:10.368000px;}
.ws10c{word-spacing:10.440000px;}
.ws5e{word-spacing:10.512000px;}
.wscb{word-spacing:10.584000px;}
.ws69{word-spacing:10.656000px;}
.ws19{word-spacing:10.944000px;}
.ws90{word-spacing:11.016000px;}
.ws29{word-spacing:11.232000px;}
.wsa9{word-spacing:11.304000px;}
.wsbd{word-spacing:11.376000px;}
.ws33{word-spacing:11.448000px;}
.ws18{word-spacing:11.664000px;}
.ws4f{word-spacing:11.952000px;}
.wsaf{word-spacing:12.024000px;}
.ws53{word-spacing:12.096000px;}
.ws11f{word-spacing:12.168000px;}
.ws6d{word-spacing:12.240000px;}
.ws129{word-spacing:12.312000px;}
.ws6a{word-spacing:12.456000px;}
.wsc3{word-spacing:12.528000px;}
.ws81{word-spacing:12.576000px;}
.wscd{word-spacing:12.600000px;}
.ws44{word-spacing:12.744000px;}
.ws4d{word-spacing:12.816000px;}
.ws7c{word-spacing:12.888000px;}
.wsbf{word-spacing:12.960000px;}
.ws106{word-spacing:13.104000px;}
.wse3{word-spacing:13.176000px;}
.ws6e{word-spacing:13.320000px;}
.ws8c{word-spacing:13.392000px;}
.wsc4{word-spacing:13.464000px;}
.wsbb{word-spacing:13.536000px;}
.ws89{word-spacing:13.608000px;}
.ws91{word-spacing:13.680000px;}
.ws100{word-spacing:13.896000px;}
.wsea{word-spacing:13.968000px;}
.ws119{word-spacing:14.040000px;}
.ws117{word-spacing:14.112000px;}
.wsbc{word-spacing:14.184000px;}
.wsd0{word-spacing:14.400000px;}
.wsfc{word-spacing:14.616000px;}
.ws95{word-spacing:14.688000px;}
.wsa2{word-spacing:15.264000px;}
.wsa6{word-spacing:15.336000px;}
.ws9d{word-spacing:15.480000px;}
.ws11c{word-spacing:15.624000px;}
.ws127{word-spacing:15.696000px;}
.ws88{word-spacing:15.840000px;}
.ws41{word-spacing:15.984000px;}
.ws40{word-spacing:16.056000px;}
.ws11b{word-spacing:16.128000px;}
.wsd6{word-spacing:16.200000px;}
.ws1e{word-spacing:16.272000px;}
.ws24{word-spacing:16.560000px;}
.ws54{word-spacing:16.608000px;}
.wsaa{word-spacing:16.704000px;}
.wsa5{word-spacing:16.776000px;}
.ws8f{word-spacing:17.352000px;}
.ws72{word-spacing:17.424000px;}
.ws35{word-spacing:17.640000px;}
.ws101{word-spacing:17.712000px;}
.ws8b{word-spacing:17.784000px;}
.wsb8{word-spacing:17.928000px;}
.wsef{word-spacing:17.952000px;}
.ws10f{word-spacing:18.072000px;}
.wsf3{word-spacing:18.360000px;}
.ws1f{word-spacing:18.432000px;}
.wsec{word-spacing:18.648000px;}
.ws42{word-spacing:19.584000px;}
.ws67{word-spacing:19.656000px;}
.ws8a{word-spacing:19.944000px;}
.ws2c{word-spacing:20.016000px;}
.ws2b{word-spacing:20.088000px;}
.ws92{word-spacing:20.232000px;}
.ws68{word-spacing:20.376000px;}
.ws105{word-spacing:20.736000px;}
.wsb2{word-spacing:21.024000px;}
.ws122{word-spacing:21.168000px;}
.ws51{word-spacing:21.528000px;}
.ws7f{word-spacing:21.792000px;}
.wsd1{word-spacing:21.888000px;}
.wsf7{word-spacing:21.960000px;}
.ws10d{word-spacing:22.032000px;}
.ws82{word-spacing:22.368000px;}
.wsfe{word-spacing:23.112000px;}
.wsde{word-spacing:23.256000px;}
.wsb5{word-spacing:23.472000px;}
.ws4a{word-spacing:23.616000px;}
.ws109{word-spacing:24.048000px;}
.wsdd{word-spacing:24.480000px;}
.wsd5{word-spacing:24.912000px;}
.wsc6{word-spacing:25.704000px;}
.ws32{word-spacing:26.712000px;}
.ws9c{word-spacing:27.144000px;}
.ws6b{word-spacing:27.432000px;}
.ws86{word-spacing:27.648000px;}
.wsf6{word-spacing:28.080000px;}
.ws83{word-spacing:28.608000px;}
.ws6c{word-spacing:28.656000px;}
.wsf9{word-spacing:29.808000px;}
.ws5f{word-spacing:33.408000px;}
.ws80{word-spacing:33.888000px;}
.wsc7{word-spacing:35.280000px;}
.ws84{word-spacing:35.616000px;}
.wsad{word-spacing:36.936000px;}
.wsac{word-spacing:43.848000px;}
.ws103{word-spacing:45.864000px;}
.ws113{word-spacing:46.080000px;}
.ws57{word-spacing:47.904000px;}
.ws55{word-spacing:54.432000px;}
.ws85{word-spacing:55.872000px;}
.ws58{word-spacing:4955.251800px;}
.ws2{word-spacing:4992.739800px;}
._26{margin-left:-21.942000px;}
._1f{margin-left:-20.193600px;}
._28{margin-left:-18.626400px;}
._14{margin-left:-13.315200px;}
._15{margin-left:-9.669990px;}
._25{margin-left:-8.559600px;}
._22{margin-left:-7.189200px;}
._4{margin-left:-6.116400px;}
._f{margin-left:-4.867200px;}
._3{margin-left:-3.796200px;}
._0{margin-left:-2.772000px;}
._5{margin-left:-1.458000px;}
._2{width:1.560000px;}
._1{width:2.880000px;}
._e{width:4.053600px;}
._10{width:5.133600px;}
._16{width:6.530400px;}
._11{width:8.229600px;}
._12{width:9.295200px;}
._13{width:11.008800px;}
._b{width:12.045600px;}
._a{width:13.320000px;}
._7{width:14.408400px;}
._9{width:15.732000px;}
._8{width:17.046000px;}
._c{width:19.353600px;}
._1c{width:20.413800px;}
._1e{width:22.348800px;}
._17{width:23.349600px;}
._18{width:24.451200px;}
._20{width:25.754400px;}
._d{width:27.511200px;}
._21{width:28.759200px;}
._1a{width:30.607200px;}
._27{width:33.444000px;}
._24{width:35.157600px;}
._23{width:37.238400px;}
._19{width:38.340000px;}
._1d{width:42.228000px;}
._1b{width:44.280000px;}
._6{width:109.567769px;}
.fc6{color:rgb(79,76,77);}
.fc5{color:rgb(114,132,81);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(0,173,239);}
.fc1{color:transparent;}
.fc0{color:rgb(56,92,133);}
.fsa{font-size:41.976000px;}
.fs5{font-size:43.804800px;}
.fs10{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs12{font-size:67.696200px;}
.fs8{font-size:70.800000px;}
.fs4{font-size:72.000000px;}
.fsf{font-size:84.000000px;}
.fs7{font-size:91.028400px;}
.fsb{font-size:96.000000px;}
.fsd{font-size:97.677000px;}
.fs11{font-size:108.000000px;}
.fsc{font-size:117.212400px;}
.fs2{font-size:120.000000px;}
.fs9{font-size:144.000000px;}
.fse{font-size:175.818000px;}
.fs1{font-size:180.000000px;}
.fs6{font-size:242.742000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:11.794800px;}
.y3d5{bottom:21.453600px;}
.y9{bottom:44.388750px;}
.y1{bottom:44.388900px;}
.y2c4{bottom:69.692550px;}
.y2af{bottom:82.497750px;}
.y9c{bottom:85.039350px;}
.y2c2{bottom:86.745750px;}
.y269{bottom:86.774700px;}
.y337{bottom:87.264750px;}
.y36f{bottom:87.270600px;}
.y156{bottom:87.277200px;}
.y1ae{bottom:88.344600px;}
.y10{bottom:88.757100px;}
.y386{bottom:89.617200px;}
.y15{bottom:90.921300px;}
.y2c3{bottom:92.198550px;}
.y237{bottom:93.156600px;}
.y28f{bottom:93.333750px;}
.y136{bottom:93.865200px;}
.y248{bottom:94.524600px;}
.y218{bottom:95.387700px;}
.yed{bottom:95.414400px;}
.y2f4{bottom:95.680050px;}
.y30a{bottom:96.490050px;}
.y3ba{bottom:98.761500px;}
.y5b{bottom:100.193850px;}
.y31e{bottom:100.902450px;}
.yd7{bottom:103.077900px;}
.y117{bottom:104.158650px;}
.y7d{bottom:104.175750px;}
.y67{bottom:104.445750px;}
.y2ae{bottom:104.997750px;}
.y10b{bottom:105.508800px;}
.y18e{bottom:105.516600px;}
.y32e{bottom:105.516750px;}
.yb0{bottom:105.632850px;}
.y16f{bottom:106.752750px;}
.y1c6{bottom:107.457600px;}
.y1f1{bottom:107.458350px;}
.y2c1{bottom:109.245750px;}
.y268{bottom:109.274700px;}
.y336{bottom:109.764750px;}
.y36e{bottom:109.770600px;}
.y155{bottom:109.777200px;}
.y1ad{bottom:110.844600px;}
.y385{bottom:112.117200px;}
.y33{bottom:113.266050px;}
.y21{bottom:113.747177px;}
.y23f{bottom:113.874600px;}
.yf{bottom:115.505100px;}
.y236{bottom:115.656600px;}
.y28e{bottom:115.833750px;}
.y135{bottom:116.365200px;}
.y3b9{bottom:116.757000px;}
.y247{bottom:117.024600px;}
.yec{bottom:117.914400px;}
.y2f3{bottom:118.180050px;}
.y309{bottom:118.990050px;}
.y5a{bottom:122.693850px;}
.y31d{bottom:123.402450px;}
.y1db{bottom:124.288350px;}
.yd6{bottom:125.577900px;}
.y7c{bottom:126.675750px;}
.y66{bottom:126.945750px;}
.y2ad{bottom:127.497750px;}
.y9b{bottom:128.008800px;}
.y18d{bottom:128.016600px;}
.y32d{bottom:128.016750px;}
.y16e{bottom:129.252750px;}
.y1c5{bottom:129.957600px;}
.y1f0{bottom:129.958350px;}
.y2c0{bottom:131.745750px;}
.y267{bottom:131.774700px;}
.y335{bottom:132.264750px;}
.y36d{bottom:132.270600px;}
.y154{bottom:132.277200px;}
.y1ac{bottom:133.344600px;}
.y384{bottom:134.617200px;}
.y3b8{bottom:134.752500px;}
.y23e{bottom:136.374600px;}
.y116{bottom:137.158650px;}
.y235{bottom:138.156600px;}
.y28d{bottom:138.333750px;}
.y134{bottom:138.865200px;}
.y246{bottom:139.524600px;}
.yeb{bottom:140.414400px;}
.y2f2{bottom:140.680050px;}
.y308{bottom:141.490050px;}
.ye{bottom:142.253100px;}
.y59{bottom:145.193850px;}
.y31c{bottom:145.902450px;}
.y1da{bottom:146.788350px;}
.yd5{bottom:148.077900px;}
.y7b{bottom:149.175750px;}
.y65{bottom:149.445750px;}
.y9a{bottom:150.508800px;}
.y18c{bottom:150.516600px;}
.y32c{bottom:150.516750px;}
.y16d{bottom:151.752750px;}
.y1c4{bottom:152.457600px;}
.y1ef{bottom:152.458350px;}
.y3b7{bottom:152.748000px;}
.y2ac{bottom:154.245750px;}
.y266{bottom:154.274700px;}
.y334{bottom:154.764750px;}
.y36c{bottom:154.770600px;}
.y153{bottom:154.777200px;}
.y1ab{bottom:155.844600px;}
.y23d{bottom:158.874600px;}
.y37f{bottom:159.012600px;}
.y234{bottom:160.656600px;}
.y28c{bottom:160.833750px;}
.y133{bottom:161.365200px;}
.y245{bottom:162.024600px;}
.yea{bottom:162.914400px;}
.y2f1{bottom:163.180050px;}
.y307{bottom:163.990050px;}
.y34f{bottom:164.904600px;}
.y204{bottom:165.682350px;}
.y58{bottom:167.693850px;}
.y31b{bottom:168.402450px;}
.y100{bottom:169.286400px;}
.y1d9{bottom:169.288350px;}
.y115{bottom:170.158650px;}
.yd4{bottom:170.577900px;}
.y3b6{bottom:170.743500px;}
.y7a{bottom:171.675750px;}
.y64{bottom:171.945750px;}
.y99{bottom:173.008800px;}
.y32b{bottom:173.016750px;}
.y16c{bottom:174.252750px;}
.y1c3{bottom:174.957600px;}
.y1ee{bottom:174.958350px;}
.y2ab{bottom:176.745750px;}
.y265{bottom:176.774700px;}
.y18b{bottom:177.264600px;}
.y333{bottom:177.264750px;}
.y36b{bottom:177.270600px;}
.y152{bottom:177.277200px;}
.y1aa{bottom:178.344600px;}
.y32{bottom:179.393250px;}
.y23c{bottom:181.374600px;}
.y37e{bottom:181.512600px;}
.y233{bottom:183.156600px;}
.y28b{bottom:183.333750px;}
.y132{bottom:183.865200px;}
.y244{bottom:184.524600px;}
.ye9{bottom:185.414400px;}
.y2f0{bottom:185.680050px;}
.y306{bottom:186.490050px;}
.y34e{bottom:187.404600px;}
.y3b5{bottom:188.739000px;}
.y57{bottom:190.193850px;}
.y203{bottom:190.882350px;}
.y31a{bottom:190.902450px;}
.yff{bottom:191.786400px;}
.y1d8{bottom:191.788350px;}
.y79{bottom:194.175750px;}
.y63{bottom:194.445750px;}
.y98{bottom:195.508800px;}
.y32a{bottom:195.516750px;}
.yd{bottom:195.749100px;}
.y16b{bottom:196.752750px;}
.yd3{bottom:197.325900px;}
.y1c2{bottom:197.457600px;}
.y1ed{bottom:197.458350px;}
.y2aa{bottom:199.245750px;}
.y264{bottom:199.274700px;}
.y18a{bottom:199.764600px;}
.y332{bottom:199.764750px;}
.y36a{bottom:199.770600px;}
.y151{bottom:199.777200px;}
.y1a9{bottom:200.844600px;}
.y31{bottom:203.093550px;}
.y114{bottom:203.158650px;}
.y23b{bottom:203.874600px;}
.y37d{bottom:204.012600px;}
.y232{bottom:205.656600px;}
.y28a{bottom:205.833750px;}
.y131{bottom:206.365200px;}
.y243{bottom:207.024600px;}
.ye8{bottom:207.914400px;}
.y2ef{bottom:208.180050px;}
.y305{bottom:208.990050px;}
.y34d{bottom:209.904600px;}
.y3b4{bottom:210.987000px;}
.yc0{bottom:211.152314px;}
.y56{bottom:212.693850px;}
.y319{bottom:213.402450px;}
.yfe{bottom:214.286400px;}
.y1d7{bottom:214.287600px;}
.y202{bottom:216.082350px;}
.y78{bottom:216.675750px;}
.y62{bottom:216.945750px;}
.y97{bottom:218.008800px;}
.y329{bottom:218.016750px;}
.y16a{bottom:219.252750px;}
.yd2{bottom:219.825900px;}
.y1c1{bottom:219.957600px;}
.y1ec{bottom:219.958350px;}
.y2a9{bottom:221.745750px;}
.y263{bottom:221.774700px;}
.y189{bottom:222.264600px;}
.y331{bottom:222.264750px;}
.y369{bottom:222.270600px;}
.y150{bottom:222.277200px;}
.yc{bottom:222.497100px;}
.y1a8{bottom:223.344600px;}
.y23a{bottom:226.374600px;}
.y37c{bottom:226.512600px;}
.y30{bottom:226.793850px;}
.y231{bottom:228.156600px;}
.y289{bottom:228.333750px;}
.y130{bottom:228.865200px;}
.y3b3{bottom:228.982500px;}
.y242{bottom:229.524600px;}
.ye7{bottom:230.414400px;}
.y2ee{bottom:230.680050px;}
.y304{bottom:231.490050px;}
.y1c{bottom:231.760500px;}
.y34c{bottom:232.404600px;}
.y55{bottom:235.193850px;}
.y217{bottom:235.366800px;}
.y318{bottom:235.902450px;}
.y113{bottom:236.158650px;}
.yfd{bottom:236.786400px;}
.y1d6{bottom:236.787600px;}
.y77{bottom:239.175750px;}
.y61{bottom:239.445750px;}
.y96{bottom:240.508800px;}
.y328{bottom:240.516750px;}
.y201{bottom:241.282350px;}
.yd1{bottom:242.325900px;}
.y1c0{bottom:242.457600px;}
.y1eb{bottom:242.458350px;}
.y2a8{bottom:244.245750px;}
.y262{bottom:244.274700px;}
.y188{bottom:244.764600px;}
.y330{bottom:244.764750px;}
.y368{bottom:244.770600px;}
.y14f{bottom:244.777200px;}
.y1a7{bottom:245.844600px;}
.y169{bottom:246.000750px;}
.y2bf{bottom:248.493750px;}
.y239{bottom:248.874600px;}
.y37b{bottom:249.012600px;}
.yb{bottom:249.245100px;}
.y2f{bottom:250.494150px;}
.y230{bottom:250.656600px;}
.y288{bottom:250.833750px;}
.y3b2{bottom:251.230500px;}
.y12f{bottom:251.365200px;}
.y241{bottom:252.024600px;}
.ye6{bottom:252.914400px;}
.y2ed{bottom:253.180050px;}
.y303{bottom:253.990050px;}
.y34b{bottom:254.904600px;}
.y54{bottom:257.697750px;}
.y44{bottom:258.118200px;}
.y317{bottom:258.402450px;}
.yfc{bottom:259.286400px;}
.y1d5{bottom:259.287600px;}
.y216{bottom:260.566800px;}
.y76{bottom:261.675750px;}
.y60{bottom:261.945750px;}
.y95{bottom:263.008800px;}
.y10a{bottom:263.012700px;}
.y327{bottom:263.016750px;}
.yd0{bottom:264.825900px;}
.y1bf{bottom:264.957600px;}
.y1ea{bottom:264.958350px;}
.y200{bottom:266.482350px;}
.y2dc{bottom:266.733150px;}
.y2a7{bottom:266.745750px;}
.y261{bottom:266.774700px;}
.y187{bottom:267.264600px;}
.y32f{bottom:267.264750px;}
.y367{bottom:267.270600px;}
.y14e{bottom:267.277200px;}
.y1a6{bottom:268.344600px;}
.y168{bottom:268.500750px;}
.y112{bottom:269.158650px;}
.y2be{bottom:270.993750px;}
.y238{bottom:271.374600px;}
.y37a{bottom:271.512600px;}
.y22f{bottom:273.156600px;}
.y287{bottom:273.333750px;}
.y3b1{bottom:273.478500px;}
.y12e{bottom:273.865200px;}
.y2e{bottom:274.194450px;}
.y240{bottom:274.524600px;}
.ye5{bottom:275.414400px;}
.y2ec{bottom:275.680050px;}
.y302{bottom:276.490050px;}
.y34a{bottom:277.404600px;}
.y53{bottom:280.197750px;}
.y316{bottom:280.902450px;}
.yfb{bottom:281.786400px;}
.y1d4{bottom:281.787600px;}
.y75{bottom:284.175750px;}
.y5f{bottom:284.445750px;}
.y43{bottom:285.118200px;}
.y94{bottom:285.508800px;}
.y109{bottom:285.512700px;}
.y215{bottom:285.766800px;}
.ycf{bottom:287.325900px;}
.y1be{bottom:287.457600px;}
.y1e9{bottom:287.458350px;}
.y2db{bottom:289.233150px;}
.y2a6{bottom:289.245750px;}
.y260{bottom:289.274700px;}
.y186{bottom:289.764600px;}
.y326{bottom:289.764750px;}
.y366{bottom:289.770600px;}
.y14d{bottom:289.777200px;}
.y1a5{bottom:290.844600px;}
.y167{bottom:291.000750px;}
.y1ff{bottom:291.682350px;}
.y2bd{bottom:293.493750px;}
.y379{bottom:294.012600px;}
.y22e{bottom:295.656600px;}
.y3b0{bottom:295.726500px;}
.y286{bottom:295.833750px;}
.y12d{bottom:296.365200px;}
.ybd{bottom:296.570850px;}
.y2d{bottom:297.894750px;}
.ye4{bottom:297.914400px;}
.y2eb{bottom:298.180050px;}
.y301{bottom:298.990050px;}
.y349{bottom:299.904600px;}
.y111{bottom:302.158650px;}
.y52{bottom:302.697750px;}
.y315{bottom:303.402450px;}
.yfa{bottom:304.286400px;}
.y1d3{bottom:304.287600px;}
.y74{bottom:306.675750px;}
.y5e{bottom:306.945750px;}
.y93{bottom:308.008800px;}
.y108{bottom:308.012700px;}
.yce{bottom:309.825900px;}
.y1bd{bottom:309.957600px;}
.y1e8{bottom:309.958350px;}
.y214{bottom:310.966800px;}
.y2da{bottom:311.733150px;}
.y2a5{bottom:311.745750px;}
.y25f{bottom:311.774700px;}
.y42{bottom:312.118200px;}
.y185{bottom:312.264600px;}
.y325{bottom:312.264750px;}
.y14c{bottom:312.277200px;}
.y1a4{bottom:313.344600px;}
.y166{bottom:313.500750px;}
.y3af{bottom:313.722000px;}
.y2bc{bottom:315.993750px;}
.y378{bottom:316.512600px;}
.y365{bottom:316.518600px;}
.y1fe{bottom:316.882350px;}
.y22d{bottom:318.156600px;}
.y285{bottom:318.333750px;}
.y12c{bottom:318.865200px;}
.ye3{bottom:320.414400px;}
.y2ea{bottom:320.680050px;}
.y300{bottom:321.490050px;}
.y2c{bottom:321.595050px;}
.y249{bottom:321.994350px;}
.y348{bottom:322.404600px;}
.y51{bottom:325.197750px;}
.ybc{bottom:325.873950px;}
.y314{bottom:325.902450px;}
.yf9{bottom:326.786400px;}
.y1d2{bottom:326.787600px;}
.y73{bottom:329.175750px;}
.y5d{bottom:329.445750px;}
.y92{bottom:330.508800px;}
.y107{bottom:330.512700px;}
.y3ae{bottom:331.717500px;}
.ycd{bottom:332.325900px;}
.y1bc{bottom:332.457600px;}
.y1e7{bottom:332.458350px;}
.y2d9{bottom:334.233150px;}
.y2a4{bottom:334.245750px;}
.y25e{bottom:334.274700px;}
.y184{bottom:334.764600px;}
.y324{bottom:334.764750px;}
.y14b{bottom:334.777200px;}
.y110{bottom:335.158650px;}
.y1a3{bottom:335.844600px;}
.y165{bottom:336.000750px;}
.y213{bottom:336.166800px;}
.y2bb{bottom:338.493750px;}
.y377{bottom:339.012600px;}
.y364{bottom:339.018600px;}
.y41{bottom:339.118200px;}
.y22{bottom:340.339622px;}
.y22c{bottom:340.656600px;}
.y284{bottom:340.833750px;}
.y12b{bottom:341.365200px;}
.y1fd{bottom:342.082350px;}
.y399{bottom:342.703500px;}
.ye2{bottom:342.914400px;}
.y2e9{bottom:343.180050px;}
.y2ff{bottom:343.990050px;}
.y347{bottom:344.904600px;}
.y2b{bottom:345.295350px;}
.y313{bottom:348.402450px;}
.yf8{bottom:349.286400px;}
.y1d1{bottom:349.287600px;}
.y3ad{bottom:349.713000px;}
.y72{bottom:351.675750px;}
.y50{bottom:351.945750px;}
.y91{bottom:353.008800px;}
.y106{bottom:353.012700px;}
.ycc{bottom:354.825900px;}
.y1bb{bottom:354.957600px;}
.y1e6{bottom:354.958350px;}
.ybb{bottom:355.153580px;}
.ybf{bottom:355.177050px;}
.y2d8{bottom:356.733150px;}
.y2a3{bottom:356.745750px;}
.y25d{bottom:356.774700px;}
.y183{bottom:357.264600px;}
.y323{bottom:357.264750px;}
.y14a{bottom:357.277200px;}
.y1a2{bottom:358.344600px;}
.y164{bottom:358.500750px;}
.y2ba{bottom:360.993750px;}
.y212{bottom:361.366800px;}
.y376{bottom:361.512600px;}
.y363{bottom:361.518600px;}
.y22b{bottom:363.156600px;}
.y283{bottom:363.333750px;}
.y383{bottom:363.865200px;}
.ye1{bottom:365.414400px;}
.y40{bottom:366.118200px;}
.y398{bottom:366.450000px;}
.y2fe{bottom:366.490050px;}
.y1fc{bottom:367.282350px;}
.y346{bottom:367.404600px;}
.y3ac{bottom:367.708500px;}
.y12a{bottom:368.113200px;}
.y10f{bottom:368.158650px;}
.y2e8{bottom:369.928050px;}
.yf7{bottom:371.786400px;}
.y1d0{bottom:371.787600px;}
.y71{bottom:374.175750px;}
.y4f{bottom:374.445750px;}
.y105{bottom:375.512700px;}
.y90{bottom:375.516750px;}
.ycb{bottom:377.325900px;}
.y1ba{bottom:377.457600px;}
.y1e5{bottom:377.458350px;}
.y2d7{bottom:379.233150px;}
.y2a2{bottom:379.245750px;}
.y25c{bottom:379.274700px;}
.y182{bottom:379.764600px;}
.y322{bottom:379.764750px;}
.y149{bottom:379.777200px;}
.y1a1{bottom:380.844600px;}
.y163{bottom:381.000750px;}
.y2b9{bottom:383.493750px;}
.y312{bottom:383.658450px;}
.y375{bottom:384.012600px;}
.y362{bottom:384.018600px;}
.y22a{bottom:385.656600px;}
.y3ab{bottom:385.704000px;}
.y282{bottom:385.833750px;}
.y382{bottom:386.365200px;}
.y211{bottom:386.566800px;}
.ye0{bottom:387.914400px;}
.y2fd{bottom:388.990050px;}
.y345{bottom:389.904600px;}
.y397{bottom:390.196500px;}
.y129{bottom:390.613200px;}
.y2a{bottom:391.226850px;}
.y20{bottom:392.407866px;}
.y2e7{bottom:392.428050px;}
.y1fb{bottom:392.482350px;}
.y3f{bottom:393.118050px;}
.yf6{bottom:394.286400px;}
.y1cf{bottom:394.287600px;}
.y70{bottom:396.675750px;}
.y4e{bottom:396.945750px;}
.y104{bottom:398.012700px;}
.y8f{bottom:398.016750px;}
.yca{bottom:399.825900px;}
.y1b9{bottom:399.957600px;}
.y1e4{bottom:399.958350px;}
.y2d6{bottom:401.733150px;}
.y2a1{bottom:401.745750px;}
.y25b{bottom:401.774700px;}
.y181{bottom:402.264600px;}
.y321{bottom:402.264750px;}
.y148{bottom:402.277200px;}
.y1a0{bottom:403.344600px;}
.y162{bottom:403.500750px;}
.y2b8{bottom:405.993750px;}
.y374{bottom:406.512600px;}
.y361{bottom:406.518600px;}
.y14{bottom:407.439600px;}
.y3aa{bottom:407.952000px;}
.y229{bottom:408.156600px;}
.y281{bottom:408.333750px;}
.y381{bottom:408.865200px;}
.ydf{bottom:410.414400px;}
.y2fc{bottom:411.490050px;}
.y210{bottom:411.766800px;}
.y344{bottom:412.404600px;}
.y128{bottom:413.113200px;}
.y396{bottom:413.943000px;}
.y2e6{bottom:414.928050px;}
.yf5{bottom:416.786400px;}
.y1ce{bottom:416.787600px;}
.y1fa{bottom:417.682350px;}
.y6f{bottom:419.175750px;}
.y4d{bottom:419.445750px;}
.y3e{bottom:420.118050px;}
.y103{bottom:420.512700px;}
.y8e{bottom:420.516750px;}
.yc9{bottom:422.325900px;}
.y1b8{bottom:422.457600px;}
.y1e3{bottom:422.458350px;}
.y2d5{bottom:424.233150px;}
.y2a0{bottom:424.245750px;}
.y25a{bottom:424.274700px;}
.y180{bottom:424.764600px;}
.y320{bottom:424.764750px;}
.y147{bottom:424.777200px;}
.y3a9{bottom:425.947500px;}
.y3d3{bottom:426.298650px;}
.y2b7{bottom:428.493750px;}
.y271{bottom:428.522700px;}
.y373{bottom:429.012600px;}
.y360{bottom:429.018600px;}
.y19f{bottom:430.092600px;}
.y1b{bottom:430.558200px;}
.y228{bottom:430.656600px;}
.y280{bottom:430.833750px;}
.yde{bottom:432.914400px;}
.y2fb{bottom:433.990050px;}
.y343{bottom:434.904600px;}
.y127{bottom:435.613200px;}
.y20f{bottom:436.966800px;}
.y311{bottom:437.176050px;}
.y2e5{bottom:437.428050px;}
.y395{bottom:437.689500px;}
.y161{bottom:438.765750px;}
.yf4{bottom:439.286400px;}
.y1cd{bottom:439.287600px;}
.y6e{bottom:441.675750px;}
.y4c{bottom:441.945750px;}
.y1f9{bottom:442.882350px;}
.y102{bottom:443.012700px;}
.y8d{bottom:443.016750px;}
.y3a8{bottom:443.943000px;}
.y3d2{bottom:444.294150px;}
.yc8{bottom:444.825900px;}
.y1b7{bottom:444.957600px;}
.y1e2{bottom:444.958350px;}
.y2d4{bottom:446.733150px;}
.y29f{bottom:446.745750px;}
.y259{bottom:446.774700px;}
.y3d{bottom:447.118050px;}
.y17f{bottom:447.264600px;}
.y10e{bottom:447.264750px;}
.y146{bottom:447.277200px;}
.yba{bottom:449.363047px;}
.y2b6{bottom:450.993750px;}
.y1a{bottom:451.010700px;}
.y270{bottom:451.022700px;}
.y372{bottom:451.512600px;}
.y35f{bottom:451.518600px;}
.y19e{bottom:452.592600px;}
.y227{bottom:453.156600px;}
.yb7{bottom:453.260359px;}
.y27f{bottom:453.333750px;}
.ydd{bottom:455.414400px;}
.y2fa{bottom:456.490050px;}
.y342{bottom:457.404600px;}
.y29{bottom:457.973550px;}
.y126{bottom:458.113200px;}
.y310{bottom:459.676050px;}
.y2e4{bottom:459.928050px;}
.y160{bottom:461.256750px;}
.y394{bottom:461.436000px;}
.yf3{bottom:461.786400px;}
.y1cc{bottom:461.787600px;}
.y20e{bottom:462.166800px;}
.y6d{bottom:464.175750px;}
.y4b{bottom:464.445750px;}
.y3a7{bottom:466.191000px;}
.y3d1{bottom:466.542150px;}
.yc7{bottom:467.325900px;}
.y1b6{bottom:467.457600px;}
.y1e1{bottom:467.458350px;}
.y1f8{bottom:468.082350px;}
.y2d3{bottom:469.233150px;}
.y29e{bottom:469.245750px;}
.y258{bottom:469.274700px;}
.y17e{bottom:469.764600px;}
.y8c{bottom:469.764750px;}
.y145{bottom:469.777200px;}
.y19{bottom:471.463200px;}
.y2b5{bottom:473.493750px;}
.y26f{bottom:473.522700px;}
.y371{bottom:474.012600px;}
.ya6{bottom:474.012750px;}
.y35e{bottom:474.018600px;}
.y3c{bottom:474.118050px;}
.y19d{bottom:475.092600px;}
.y226{bottom:475.656600px;}
.yb9{bottom:478.666147px;}
.y2f9{bottom:478.990050px;}
.y341{bottom:479.904600px;}
.y27e{bottom:480.081750px;}
.y125{bottom:480.613200px;}
.y28{bottom:481.673850px;}
.ydc{bottom:482.162400px;}
.y30f{bottom:482.176050px;}
.y2e3{bottom:482.428050px;}
.yb6{bottom:482.563459px;}
.y3a6{bottom:484.186500px;}
.yf2{bottom:484.286400px;}
.y3d0{bottom:484.537650px;}
.y393{bottom:485.182500px;}
.y6c{bottom:486.675750px;}
.y4a{bottom:486.945750px;}
.y20d{bottom:487.366800px;}
.y1cb{bottom:488.535600px;}
.yc6{bottom:489.825900px;}
.y1b5{bottom:489.957600px;}
.y1e0{bottom:489.958350px;}
.y2d2{bottom:491.733150px;}
.y29d{bottom:491.745750px;}
.y257{bottom:491.774700px;}
.y18{bottom:491.915700px;}
.y17d{bottom:492.264600px;}
.y8b{bottom:492.264750px;}
.y1f7{bottom:493.282350px;}
.ya{bottom:494.422350px;}
.y2b4{bottom:495.993750px;}
.y26e{bottom:496.022700px;}
.y370{bottom:496.512600px;}
.ya5{bottom:496.512750px;}
.y35d{bottom:496.518600px;}
.y144{bottom:496.525200px;}
.y19c{bottom:497.592600px;}
.y3b{bottom:501.118050px;}
.y2f8{bottom:501.490050px;}
.y225{bottom:502.404600px;}
.y27d{bottom:502.581750px;}
.y124{bottom:503.113200px;}
.ydb{bottom:504.662400px;}
.y30e{bottom:504.676050px;}
.y2e2{bottom:504.928050px;}
.y27{bottom:505.374150px;}
.y3a5{bottom:506.434500px;}
.y3cf{bottom:506.785650px;}
.yf1{bottom:506.786400px;}
.yb8{bottom:507.969247px;}
.y392{bottom:508.929000px;}
.y6b{bottom:509.175750px;}
.y49{bottom:509.445750px;}
.y1ca{bottom:511.035600px;}
.yc5{bottom:512.325900px;}
.y17{bottom:512.368200px;}
.y1b4{bottom:512.457600px;}
.y1df{bottom:512.458350px;}
.y20c{bottom:512.566800px;}
.y2d1{bottom:514.233150px;}
.y29c{bottom:514.245750px;}
.y256{bottom:514.274700px;}
.y15f{bottom:514.760700px;}
.y8a{bottom:514.764750px;}
.y3d4{bottom:516.888000px;}
.yaf{bottom:517.841250px;}
.y1f6{bottom:518.482350px;}
.y2b3{bottom:518.493750px;}
.y26d{bottom:518.522700px;}
.y17c{bottom:519.012600px;}
.ya4{bottom:519.012750px;}
.y35c{bottom:519.018600px;}
.y143{bottom:519.025200px;}
.y19b{bottom:520.092600px;}
.y8{bottom:522.174450px;}
.y2f7{bottom:523.990050px;}
.y3a4{bottom:524.430000px;}
.y3ce{bottom:524.781150px;}
.y224{bottom:524.904600px;}
.y27c{bottom:525.081750px;}
.y1b0{bottom:525.217800px;}
.y123{bottom:525.613200px;}
.yda{bottom:527.162400px;}
.y30d{bottom:527.176050px;}
.y2e1{bottom:527.428050px;}
.y3a{bottom:528.118050px;}
.y26{bottom:529.074450px;}
.yf0{bottom:529.286400px;}
.y2de{bottom:529.383750px;}
.yc2{bottom:529.465650px;}
.y6a{bottom:531.675750px;}
.y48{bottom:531.945750px;}
.y391{bottom:532.675500px;}
.y1c9{bottom:533.535600px;}
.y1b3{bottom:534.957600px;}
.y1de{bottom:534.958350px;}
.y2d0{bottom:536.733150px;}
.y29b{bottom:536.745750px;}
.y255{bottom:536.774700px;}
.y15e{bottom:537.260700px;}
.y89{bottom:537.264750px;}
.y20b{bottom:537.766800px;}
.y2b2{bottom:540.993750px;}
.y26c{bottom:541.022700px;}
.y17b{bottom:541.512600px;}
.ya3{bottom:541.512750px;}
.y35b{bottom:541.518600px;}
.y142{bottom:541.525200px;}
.y19a{bottom:542.592600px;}
.y7{bottom:542.626950px;}
.y3cd{bottom:542.776650px;}
.y1f5{bottom:543.682350px;}
.y3a3{bottom:546.678000px;}
.y223{bottom:547.404600px;}
.y27b{bottom:547.581750px;}
.yc4{bottom:547.590750px;}
.y122{bottom:548.113200px;}
.yd9{bottom:549.657900px;}
.y30c{bottom:549.676050px;}
.y2e0{bottom:549.928050px;}
.y2f6{bottom:550.738050px;}
.yae{bottom:550.841250px;}
.yef{bottom:551.786400px;}
.y25{bottom:552.774750px;}
.y69{bottom:554.175750px;}
.y47{bottom:554.445750px;}
.y39{bottom:555.118050px;}
.y1c8{bottom:556.035600px;}
.y390{bottom:556.422000px;}
.y1b2{bottom:557.457600px;}
.y1dd{bottom:557.458350px;}
.y29a{bottom:559.245750px;}
.y254{bottom:559.274700px;}
.y15d{bottom:559.760700px;}
.y88{bottom:559.764750px;}
.y20a{bottom:562.966800px;}
.y6{bottom:563.079450px;}
.y2cf{bottom:563.481150px;}
.y2b1{bottom:563.493750px;}
.y26b{bottom:563.522700px;}
.y17a{bottom:564.012600px;}
.ya2{bottom:564.012750px;}
.y35a{bottom:564.018600px;}
.y141{bottom:564.025200px;}
.y3cc{bottom:565.024650px;}
.y199{bottom:565.092600px;}
.y3a2{bottom:568.926000px;}
.y2dd{bottom:569.883750px;}
.y222{bottom:569.904600px;}
.yc1{bottom:569.965650px;}
.y1af{bottom:569.965800px;}
.yc3{bottom:570.081750px;}
.y121{bottom:570.613200px;}
.yd8{bottom:572.157900px;}
.y30b{bottom:572.176050px;}
.y2df{bottom:572.428050px;}
.y2f5{bottom:573.238050px;}
.yee{bottom:574.286400px;}
.y24{bottom:576.475050px;}
.y68{bottom:576.675750px;}
.y46{bottom:576.945750px;}
.y1c7{bottom:578.535600px;}
.y1b1{bottom:579.957600px;}
.y1dc{bottom:579.958350px;}
.y38f{bottom:580.168500px;}
.y387{bottom:580.606350px;}
.y45{bottom:581.031600px;}
.y299{bottom:581.745750px;}
.y253{bottom:581.774700px;}
.y38{bottom:582.118050px;}
.y15c{bottom:582.260700px;}
.y87{bottom:582.264750px;}
.y33e{bottom:582.599550px;}
.yb3{bottom:582.620850px;}
.y3cb{bottom:583.020150px;}
.y5{bottom:583.531950px;}
.yad{bottom:583.841250px;}
.y2ce{bottom:585.981150px;}
.y2b0{bottom:585.993750px;}
.y26a{bottom:586.022700px;}
.y179{bottom:586.512600px;}
.ya1{bottom:586.512750px;}
.y359{bottom:586.518600px;}
.y140{bottom:586.525200px;}
.y3a1{bottom:586.921500px;}
.y198{bottom:587.592600px;}
.y209{bottom:588.166800px;}
.y16{bottom:591.357750px;}
.y221{bottom:592.404600px;}
.y27a{bottom:592.581750px;}
.y120{bottom:593.113200px;}
.yb5{bottom:595.907850px;}
.y23{bottom:597.403823px;}
.y3ca{bottom:601.015650px;}
.y1f4{bottom:601.282350px;}
.y38e{bottom:603.915000px;}
.y4{bottom:603.984000px;}
.y15b{bottom:604.760700px;}
.y86{bottom:604.764750px;}
.y2cd{bottom:608.481150px;}
.y298{bottom:608.493750px;}
.y252{bottom:608.522700px;}
.y178{bottom:609.012600px;}
.ya0{bottom:609.012750px;}
.y358{bottom:609.018600px;}
.y13f{bottom:609.025200px;}
.y37{bottom:609.118200px;}
.y3a0{bottom:609.169500px;}
.y197{bottom:610.092600px;}
.yb2{bottom:611.923950px;}
.y208{bottom:613.366800px;}
.y220{bottom:614.904600px;}
.y279{bottom:615.081750px;}
.y33d{bottom:615.599550px;}
.y11f{bottom:615.613200px;}
.yac{bottom:616.841250px;}
.y3db{bottom:617.256750px;}
.y3c9{bottom:623.263650px;}
.yb4{bottom:625.210950px;}
.y3bf{bottom:626.647500px;}
.y39f{bottom:627.165000px;}
.y15a{bottom:627.260700px;}
.y85{bottom:627.264750px;}
.y38d{bottom:627.661500px;}
.y2cc{bottom:630.981150px;}
.y297{bottom:630.993750px;}
.y251{bottom:631.022700px;}
.y177{bottom:631.512600px;}
.y9f{bottom:631.512750px;}
.y357{bottom:631.518600px;}
.y13e{bottom:631.525200px;}
.y196{bottom:632.592600px;}
.y1f3{bottom:633.682350px;}
.y36{bottom:636.118200px;}
.y21f{bottom:637.404600px;}
.y278{bottom:637.581750px;}
.y11e{bottom:638.113200px;}
.y207{bottom:638.566800px;}
.yb1{bottom:641.227050px;}
.y3c8{bottom:641.259150px;}
.y13{bottom:643.791600px;}
.y3da{bottom:644.256750px;}
.y33c{bottom:648.599550px;}
.y3be{bottom:649.147500px;}
.y39e{bottom:649.413000px;}
.y159{bottom:649.760700px;}
.y84{bottom:649.764750px;}
.yab{bottom:649.841250px;}
.y38c{bottom:651.408000px;}
.y2cb{bottom:653.481150px;}
.y296{bottom:653.493750px;}
.y250{bottom:653.522700px;}
.y176{bottom:654.012600px;}
.y9e{bottom:654.012750px;}
.y356{bottom:654.018600px;}
.y13d{bottom:654.025200px;}
.y195{bottom:655.092600px;}
.y3c7{bottom:659.254650px;}
.y21e{bottom:659.904600px;}
.y277{bottom:660.081750px;}
.y11d{bottom:660.613200px;}
.y35{bottom:663.118200px;}
.y1f{bottom:666.562650px;}
.y39d{bottom:667.408500px;}
.y3{bottom:668.119050px;}
.y3d9{bottom:671.256750px;}
.y3bd{bottom:671.647500px;}
.y158{bottom:672.260700px;}
.y83{bottom:672.264750px;}
.y38b{bottom:675.154500px;}
.y2ca{bottom:675.981150px;}
.y295{bottom:675.993750px;}
.y24f{bottom:676.022700px;}
.y175{bottom:676.512600px;}
.y9d{bottom:676.512750px;}
.y355{bottom:676.518600px;}
.y13c{bottom:676.525200px;}
.y194{bottom:677.592600px;}
.y3c6{bottom:681.502650px;}
.y33b{bottom:681.599550px;}
.y21d{bottom:682.404600px;}
.y276{bottom:682.581750px;}
.yaa{bottom:682.841250px;}
.y11c{bottom:683.113200px;}
.y39c{bottom:685.404000px;}
.y3bc{bottom:694.147500px;}
.y157{bottom:694.777200px;}
.y206{bottom:696.166800px;}
.y1e{bottom:696.905250px;}
.y3d8{bottom:698.256750px;}
.y2c9{bottom:698.481150px;}
.y294{bottom:698.493750px;}
.y24e{bottom:698.522700px;}
.y38a{bottom:698.901000px;}
.y174{bottom:699.012600px;}
.y82{bottom:699.012750px;}
.y354{bottom:699.018600px;}
.y13b{bottom:699.025200px;}
.y3c5{bottom:699.498150px;}
.y193{bottom:700.092600px;}
.y34{bottom:702.118200px;}
.y21c{bottom:704.904600px;}
.y275{bottom:705.081750px;}
.y11b{bottom:705.613200px;}
.y39b{bottom:707.652000px;}
.y33a{bottom:714.599550px;}
.ya9{bottom:715.841250px;}
.y3bb{bottom:716.647500px;}
.y2c8{bottom:720.981150px;}
.y293{bottom:720.993750px;}
.y24d{bottom:721.022700px;}
.y173{bottom:721.512600px;}
.y81{bottom:721.512750px;}
.y353{bottom:721.518600px;}
.y13a{bottom:721.525200px;}
.y3c4{bottom:721.746150px;}
.y2{bottom:721.872000px;}
.y192{bottom:722.592600px;}
.ybe{bottom:722.614650px;}
.y389{bottom:722.647500px;}
.y31f{bottom:724.070700px;}
.y1f2{bottom:724.867950px;}
.y101{bottom:724.974150px;}
.y3d7{bottom:725.256750px;}
.y39a{bottom:725.647500px;}
.y340{bottom:727.404600px;}
.y274{bottom:727.581750px;}
.y11a{bottom:728.113200px;}
.y205{bottom:728.566800px;}
.y5c{bottom:735.165450px;}
.y3c3{bottom:739.741650px;}
.y21b{bottom:740.178600px;}
.y2c7{bottom:743.481150px;}
.y292{bottom:743.493750px;}
.y24c{bottom:743.522700px;}
.y172{bottom:744.012600px;}
.y80{bottom:744.012750px;}
.y352{bottom:744.018600px;}
.y139{bottom:744.025200px;}
.y191{bottom:745.092600px;}
.y339{bottom:747.599550px;}
.ya8{bottom:748.841250px;}
.y33f{bottom:749.904600px;}
.y380{bottom:750.613200px;}
.y3c2{bottom:757.737150px;}
.y21a{bottom:762.669600px;}
.y273{bottom:762.846600px;}
.y119{bottom:763.378050px;}
.y3d6{bottom:765.018750px;}
.y2c6{bottom:765.981150px;}
.y291{bottom:765.993750px;}
.y24b{bottom:766.022700px;}
.y10d{bottom:766.504800px;}
.y171{bottom:766.512600px;}
.y7f{bottom:766.512750px;}
.y351{bottom:766.518600px;}
.y138{bottom:766.525200px;}
.y190{bottom:767.592600px;}
.y12{bottom:767.625900px;}
.y388{bottom:770.151450px;}
.y3c1{bottom:775.732650px;}
.y338{bottom:780.599550px;}
.ya7{bottom:781.841250px;}
.y219{bottom:785.160600px;}
.y272{bottom:785.337600px;}
.y118{bottom:785.869050px;}
.y2c5{bottom:788.481150px;}
.y290{bottom:788.493750px;}
.y24a{bottom:788.522700px;}
.y10c{bottom:789.004800px;}
.y170{bottom:789.012600px;}
.y7e{bottom:789.012750px;}
.y350{bottom:789.018600px;}
.y137{bottom:789.025200px;}
.y18f{bottom:790.092600px;}
.y3c0{bottom:793.728150px;}
.y11{bottom:794.373900px;}
.h9{height:21.978000px;}
.ha{height:30.663360px;}
.h28{height:37.192500px;}
.h26{height:40.500000px;}
.h8{height:41.053711px;}
.h27{height:41.107522px;}
.h5{height:43.321289px;}
.h29{height:47.387340px;}
.h2{height:50.176758px;}
.h13{height:50.400000px;}
.h15{height:52.078125px;}
.h11{height:56.812500px;}
.h12{height:56.813100px;}
.h6{height:57.761719px;}
.h24{height:59.724000px;}
.hf{height:62.020800px;}
.h1a{height:63.861328px;}
.h19{height:66.281250px;}
.hd{height:66.996902px;}
.h20{height:68.441813px;}
.h25{height:68.483813px;}
.h1d{height:68.491613px;}
.h1e{height:68.492212px;}
.h1b{height:68.507812px;}
.h21{height:68.510813px;}
.h1c{height:68.525812px;}
.h1f{height:68.539613px;}
.h17{height:71.890272px;}
.he{height:73.106908px;}
.h14{height:73.126875px;}
.h23{height:73.584000px;}
.h22{height:79.488000px;}
.hc{height:79.740878px;}
.h16{height:86.268326px;}
.h4{height:91.230469px;}
.h7{height:94.687500px;}
.h10{height:109.476562px;}
.h18{height:129.402048px;}
.h3{height:142.031250px;}
.hb{height:178.658112px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:92.296500px;}
.w3{width:146.616000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:40.916250px;}
.x66{left:55.275600px;}
.x18{left:57.404250px;}
.x6c{left:60.944850px;}
.x79{left:75.118050px;}
.x47{left:76.535400px;}
.x44{left:79.370100px;}
.x63{left:83.622000px;}
.x11{left:85.039350px;}
.x6e{left:86.106000px;}
.x24{left:90.000000px;}
.x72{left:91.063050px;}
.x67{left:97.791600px;}
.x75{left:100.626300px;}
.x6d{left:103.460850px;}
.x78{left:105.767700px;}
.x62{left:117.637800px;}
.x48{left:119.051400px;}
.x5e{left:120.889050px;}
.x60{left:122.044050px;}
.x5c{left:124.711050px;}
.x64{left:126.138000px;}
.x27{left:127.555350px;}
.x5a{left:129.247050px;}
.x2b{left:130.809300px;}
.x5f{left:132.544050px;}
.x5b{left:134.056050px;}
.x5d{left:138.445050px;}
.x58{left:143.947050px;}
.x59{left:152.956050px;}
.x61{left:162.721050px;}
.x57{left:192.536700px;}
.x2e{left:212.501414px;}
.x2d{left:223.709850px;}
.x56{left:230.336700px;}
.x3a{left:234.808950px;}
.x1e{left:265.582278px;}
.x3b{left:278.089629px;}
.x32{left:279.503331px;}
.x31{left:286.565378px;}
.x1d{left:293.277668px;}
.x7b{left:299.055150px;}
.x1b{left:306.863657px;}
.x1c{left:310.959935px;}
.x2{left:316.417350px;}
.x2c{left:336.439200px;}
.x39{left:339.310200px;}
.x1a{left:363.733650px;}
.x1f{left:409.740900px;}
.x10{left:415.417350px;}
.x3{left:430.005300px;}
.x13{left:431.034000px;}
.x68{left:440.079600px;}
.x26{left:443.610000px;}
.x3e{left:448.901550px;}
.x6b{left:459.460650px;}
.x45{left:460.630950px;}
.x6f{left:461.689350px;}
.x20{left:462.706950px;}
.xb{left:468.441750px;}
.x73{left:472.825050px;}
.x28{left:477.637800px;}
.xe{left:482.517750px;}
.x25{left:486.144000px;}
.x7a{left:487.603500px;}
.x3f{left:491.414400px;}
.x76{left:495.496050px;}
.x19{left:499.237650px;}
.x46{left:503.146950px;}
.x70{left:504.205350px;}
.x49{left:505.275600px;}
.x69{left:511.849950px;}
.x74{left:515.341050px;}
.x3c{left:528.953468px;}
.x16{left:530.173350px;}
.x7{left:532.002000px;}
.xf{left:533.781750px;}
.xd{left:551.889750px;}
.x14{left:553.892850px;}
.x4{left:555.830100px;}
.x12{left:566.017650px;}
.x15{left:583.619850px;}
.x6{left:584.922000px;}
.x8{left:586.839000px;}
.x5{left:588.405000px;}
.xc{left:589.635750px;}
.x3d{left:620.870100px;}
.x2a{left:622.039350px;}
.x1{left:625.559100px;}
.x9{left:626.728350px;}
.x37{left:629.693550px;}
.x33{left:630.935410px;}
.x21{left:659.055150px;}
.x34{left:675.065878px;}
.x36{left:680.428345px;}
.x35{left:708.793746px;}
.x2f{left:715.445550px;}
.x30{left:752.455365px;}
.x38{left:755.306172px;}
.x55{left:795.851850px;}
.x4c{left:798.329850px;}
.x51{left:803.852850px;}
.x50{left:807.506850px;}
.x54{left:809.081850px;}
.x4b{left:811.559850px;}
.x4d{left:813.113850px;}
.x53{left:815.360850px;}
.x22{left:822.047100px;}
.x52{left:825.545850px;}
.x4e{left:826.868850px;}
.x4f{left:828.884850px;}
.x40{left:835.430400px;}
.x43{left:848.277900px;}
.x6a{left:853.237950px;}
.x71{left:854.291250px;}
.x29{left:856.463700px;}
.x23{left:864.563100px;}
.x77{left:871.653600px;}
.x41{left:877.963950px;}
.x42{left:890.793900px;}
.x4a{left:891.808650px;}
.x17{left:896.737500px;}
.x65{left:920.586000px;}
@media print{
.v4{vertical-align:-26.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.854318pt;}
.v2{vertical-align:21.298133pt;}
.v3{vertical-align:26.666667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.173333pt;}
.ls0{letter-spacing:3.600000pt;}
.ls2{letter-spacing:7.920000pt;}
.ws13{word-spacing:-31.872000pt;}
.ws59{word-spacing:-26.047200pt;}
.ws3b{word-spacing:-21.077333pt;}
.ws5{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws71{word-spacing:-14.912000pt;}
.wsc{word-spacing:-14.848000pt;}
.ws6{word-spacing:-13.056000pt;}
.ws12a{word-spacing:-10.992000pt;}
.ws11{word-spacing:-10.944000pt;}
.ws5a{word-spacing:-10.581333pt;}
.wsb{word-spacing:-9.600000pt;}
.ws14{word-spacing:-9.253376pt;}
.ws7{word-spacing:-9.024000pt;}
.ws3{word-spacing:-7.968000pt;}
.wsa{word-spacing:-7.616000pt;}
.ws10{word-spacing:-7.168000pt;}
.wsd{word-spacing:-5.632000pt;}
.wse{word-spacing:-5.568000pt;}
.ws8{word-spacing:-5.184000pt;}
.ws115{word-spacing:-4.704000pt;}
.wsf{word-spacing:-4.160000pt;}
.ws10b{word-spacing:-3.648000pt;}
.ws10e{word-spacing:-3.584000pt;}
.ws70{word-spacing:-3.072000pt;}
.ws23{word-spacing:-3.008000pt;}
.ws124{word-spacing:-2.944000pt;}
.ws114{word-spacing:-2.901333pt;}
.wse6{word-spacing:-2.880000pt;}
.ws96{word-spacing:-2.816000pt;}
.ws1c{word-spacing:-2.752000pt;}
.ws7a{word-spacing:-2.688000pt;}
.ws12{word-spacing:-2.496000pt;}
.ws7d{word-spacing:-2.432000pt;}
.wsdf{word-spacing:-2.368000pt;}
.ws3e{word-spacing:-2.304000pt;}
.ws61{word-spacing:-2.240000pt;}
.wsd3{word-spacing:-2.112000pt;}
.ws73{word-spacing:-2.048000pt;}
.wse8{word-spacing:-1.984000pt;}
.ws38{word-spacing:-1.920000pt;}
.wscc{word-spacing:-1.856000pt;}
.ws123{word-spacing:-1.728000pt;}
.ws94{word-spacing:-1.664000pt;}
.ws1a{word-spacing:-1.600000pt;}
.ws1b{word-spacing:-1.472000pt;}
.ws76{word-spacing:-1.408000pt;}
.ws77{word-spacing:-1.344000pt;}
.wsb3{word-spacing:-1.280000pt;}
.ws78{word-spacing:-1.216000pt;}
.ws9{word-spacing:-1.152000pt;}
.ws11d{word-spacing:-1.088000pt;}
.wsc1{word-spacing:-1.024000pt;}
.ws7e{word-spacing:-0.960000pt;}
.ws10a{word-spacing:-0.896000pt;}
.ws60{word-spacing:-0.832000pt;}
.ws1{word-spacing:-0.816000pt;}
.ws5d{word-spacing:-0.768000pt;}
.wsb6{word-spacing:-0.704000pt;}
.wse9{word-spacing:-0.640000pt;}
.ws74{word-spacing:-0.576000pt;}
.ws125{word-spacing:-0.512000pt;}
.ws11a{word-spacing:-0.448000pt;}
.ws99{word-spacing:-0.384000pt;}
.ws116{word-spacing:-0.256000pt;}
.ws97{word-spacing:-0.128000pt;}
.ws3a{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.192000pt;}
.wsd4{word-spacing:0.256000pt;}
.ws64{word-spacing:0.320000pt;}
.ws46{word-spacing:0.384000pt;}
.ws37{word-spacing:0.448000pt;}
.ws93{word-spacing:0.512000pt;}
.wsc2{word-spacing:0.576000pt;}
.ws36{word-spacing:0.640000pt;}
.ws17{word-spacing:0.704000pt;}
.ws2e{word-spacing:0.768000pt;}
.ws9a{word-spacing:0.832000pt;}
.wsa0{word-spacing:0.896000pt;}
.ws28{word-spacing:0.960000pt;}
.wsed{word-spacing:1.152000pt;}
.wse5{word-spacing:1.216000pt;}
.ws75{word-spacing:1.280000pt;}
.ws65{word-spacing:1.344000pt;}
.ws52{word-spacing:1.365333pt;}
.wsa7{word-spacing:1.408000pt;}
.wscf{word-spacing:1.472000pt;}
.wsc8{word-spacing:1.536000pt;}
.wsf1{word-spacing:1.600000pt;}
.wsce{word-spacing:1.664000pt;}
.wsf2{word-spacing:1.728000pt;}
.ws49{word-spacing:1.792000pt;}
.ws39{word-spacing:1.856000pt;}
.ws112{word-spacing:1.877333pt;}
.wseb{word-spacing:1.920000pt;}
.ws4c{word-spacing:2.048000pt;}
.ws8d{word-spacing:2.112000pt;}
.ws104{word-spacing:2.176000pt;}
.wsf0{word-spacing:2.240000pt;}
.ws45{word-spacing:2.304000pt;}
.wsab{word-spacing:2.432000pt;}
.ws15{word-spacing:2.496000pt;}
.wsfd{word-spacing:2.560000pt;}
.ws3d{word-spacing:2.624000pt;}
.wsdb{word-spacing:2.688000pt;}
.ws102{word-spacing:2.752000pt;}
.wsff{word-spacing:2.816000pt;}
.wsf5{word-spacing:2.880000pt;}
.ws63{word-spacing:2.944000pt;}
.ws111{word-spacing:2.986667pt;}
.ws2a{word-spacing:3.072000pt;}
.ws79{word-spacing:3.136000pt;}
.ws9b{word-spacing:3.200000pt;}
.ws20{word-spacing:3.264000pt;}
.wsc9{word-spacing:3.328000pt;}
.ws128{word-spacing:3.392000pt;}
.ws108{word-spacing:3.456000pt;}
.wsb7{word-spacing:3.520000pt;}
.ws9f{word-spacing:3.584000pt;}
.ws31{word-spacing:3.648000pt;}
.ws107{word-spacing:3.712000pt;}
.ws25{word-spacing:3.776000pt;}
.ws4e{word-spacing:3.840000pt;}
.wsca{word-spacing:3.904000pt;}
.ws7b{word-spacing:3.968000pt;}
.wsfb{word-spacing:4.096000pt;}
.wse2{word-spacing:4.160000pt;}
.wsa4{word-spacing:4.181333pt;}
.ws27{word-spacing:4.224000pt;}
.ws47{word-spacing:4.288000pt;}
.ws48{word-spacing:4.352000pt;}
.wsc5{word-spacing:4.416000pt;}
.ws30{word-spacing:4.544000pt;}
.wsc0{word-spacing:4.608000pt;}
.ws9e{word-spacing:4.672000pt;}
.wsb9{word-spacing:4.736000pt;}
.wsa8{word-spacing:4.800000pt;}
.ws2d{word-spacing:4.864000pt;}
.wse0{word-spacing:4.992000pt;}
.ws3f{word-spacing:5.056000pt;}
.wsee{word-spacing:5.120000pt;}
.wsa3{word-spacing:5.184000pt;}
.ws2f{word-spacing:5.248000pt;}
.ws4b{word-spacing:5.312000pt;}
.wsf8{word-spacing:5.440000pt;}
.wsd9{word-spacing:5.504000pt;}
.wsfa{word-spacing:5.632000pt;}
.ws98{word-spacing:5.696000pt;}
.ws120{word-spacing:5.760000pt;}
.ws11e{word-spacing:6.016000pt;}
.wsb1{word-spacing:6.080000pt;}
.wse1{word-spacing:6.208000pt;}
.wsf4{word-spacing:6.272000pt;}
.wsdc{word-spacing:6.400000pt;}
.wsd8{word-spacing:6.464000pt;}
.ws121{word-spacing:6.592000pt;}
.ws5c{word-spacing:6.720000pt;}
.wse4{word-spacing:6.784000pt;}
.wsb0{word-spacing:6.848000pt;}
.ws126{word-spacing:6.912000pt;}
.wsda{word-spacing:6.976000pt;}
.wsa1{word-spacing:7.104000pt;}
.ws118{word-spacing:7.168000pt;}
.wsbe{word-spacing:7.296000pt;}
.ws21{word-spacing:7.360000pt;}
.wsae{word-spacing:7.488000pt;}
.ws110{word-spacing:7.552000pt;}
.ws1d{word-spacing:7.616000pt;}
.wse7{word-spacing:7.744000pt;}
.ws66{word-spacing:7.808000pt;}
.ws22{word-spacing:7.872000pt;}
.wsb4{word-spacing:7.936000pt;}
.wsd7{word-spacing:8.000000pt;}
.ws34{word-spacing:8.128000pt;}
.ws5b{word-spacing:8.138667pt;}
.ws3c{word-spacing:8.192000pt;}
.ws43{word-spacing:8.320000pt;}
.ws62{word-spacing:8.448000pt;}
.ws87{word-spacing:8.512000pt;}
.wsd2{word-spacing:8.576000pt;}
.ws56{word-spacing:8.618667pt;}
.ws16{word-spacing:8.704000pt;}
.ws26{word-spacing:8.896000pt;}
.ws50{word-spacing:8.960000pt;}
.ws6f{word-spacing:9.152000pt;}
.wsba{word-spacing:9.216000pt;}
.ws10c{word-spacing:9.280000pt;}
.ws5e{word-spacing:9.344000pt;}
.wscb{word-spacing:9.408000pt;}
.ws69{word-spacing:9.472000pt;}
.ws19{word-spacing:9.728000pt;}
.ws90{word-spacing:9.792000pt;}
.ws29{word-spacing:9.984000pt;}
.wsa9{word-spacing:10.048000pt;}
.wsbd{word-spacing:10.112000pt;}
.ws33{word-spacing:10.176000pt;}
.ws18{word-spacing:10.368000pt;}
.ws4f{word-spacing:10.624000pt;}
.wsaf{word-spacing:10.688000pt;}
.ws53{word-spacing:10.752000pt;}
.ws11f{word-spacing:10.816000pt;}
.ws6d{word-spacing:10.880000pt;}
.ws129{word-spacing:10.944000pt;}
.ws6a{word-spacing:11.072000pt;}
.wsc3{word-spacing:11.136000pt;}
.ws81{word-spacing:11.178667pt;}
.wscd{word-spacing:11.200000pt;}
.ws44{word-spacing:11.328000pt;}
.ws4d{word-spacing:11.392000pt;}
.ws7c{word-spacing:11.456000pt;}
.wsbf{word-spacing:11.520000pt;}
.ws106{word-spacing:11.648000pt;}
.wse3{word-spacing:11.712000pt;}
.ws6e{word-spacing:11.840000pt;}
.ws8c{word-spacing:11.904000pt;}
.wsc4{word-spacing:11.968000pt;}
.wsbb{word-spacing:12.032000pt;}
.ws89{word-spacing:12.096000pt;}
.ws91{word-spacing:12.160000pt;}
.ws100{word-spacing:12.352000pt;}
.wsea{word-spacing:12.416000pt;}
.ws119{word-spacing:12.480000pt;}
.ws117{word-spacing:12.544000pt;}
.wsbc{word-spacing:12.608000pt;}
.wsd0{word-spacing:12.800000pt;}
.wsfc{word-spacing:12.992000pt;}
.ws95{word-spacing:13.056000pt;}
.wsa2{word-spacing:13.568000pt;}
.wsa6{word-spacing:13.632000pt;}
.ws9d{word-spacing:13.760000pt;}
.ws11c{word-spacing:13.888000pt;}
.ws127{word-spacing:13.952000pt;}
.ws88{word-spacing:14.080000pt;}
.ws41{word-spacing:14.208000pt;}
.ws40{word-spacing:14.272000pt;}
.ws11b{word-spacing:14.336000pt;}
.wsd6{word-spacing:14.400000pt;}
.ws1e{word-spacing:14.464000pt;}
.ws24{word-spacing:14.720000pt;}
.ws54{word-spacing:14.762667pt;}
.wsaa{word-spacing:14.848000pt;}
.wsa5{word-spacing:14.912000pt;}
.ws8f{word-spacing:15.424000pt;}
.ws72{word-spacing:15.488000pt;}
.ws35{word-spacing:15.680000pt;}
.ws101{word-spacing:15.744000pt;}
.ws8b{word-spacing:15.808000pt;}
.wsb8{word-spacing:15.936000pt;}
.wsef{word-spacing:15.957333pt;}
.ws10f{word-spacing:16.064000pt;}
.wsf3{word-spacing:16.320000pt;}
.ws1f{word-spacing:16.384000pt;}
.wsec{word-spacing:16.576000pt;}
.ws42{word-spacing:17.408000pt;}
.ws67{word-spacing:17.472000pt;}
.ws8a{word-spacing:17.728000pt;}
.ws2c{word-spacing:17.792000pt;}
.ws2b{word-spacing:17.856000pt;}
.ws92{word-spacing:17.984000pt;}
.ws68{word-spacing:18.112000pt;}
.ws105{word-spacing:18.432000pt;}
.wsb2{word-spacing:18.688000pt;}
.ws122{word-spacing:18.816000pt;}
.ws51{word-spacing:19.136000pt;}
.ws7f{word-spacing:19.370667pt;}
.wsd1{word-spacing:19.456000pt;}
.wsf7{word-spacing:19.520000pt;}
.ws10d{word-spacing:19.584000pt;}
.ws82{word-spacing:19.882667pt;}
.wsfe{word-spacing:20.544000pt;}
.wsde{word-spacing:20.672000pt;}
.wsb5{word-spacing:20.864000pt;}
.ws4a{word-spacing:20.992000pt;}
.ws109{word-spacing:21.376000pt;}
.wsdd{word-spacing:21.760000pt;}
.wsd5{word-spacing:22.144000pt;}
.wsc6{word-spacing:22.848000pt;}
.ws32{word-spacing:23.744000pt;}
.ws9c{word-spacing:24.128000pt;}
.ws6b{word-spacing:24.384000pt;}
.ws86{word-spacing:24.576000pt;}
.wsf6{word-spacing:24.960000pt;}
.ws83{word-spacing:25.429333pt;}
.ws6c{word-spacing:25.472000pt;}
.wsf9{word-spacing:26.496000pt;}
.ws5f{word-spacing:29.696000pt;}
.ws80{word-spacing:30.122667pt;}
.wsc7{word-spacing:31.360000pt;}
.ws84{word-spacing:31.658667pt;}
.wsad{word-spacing:32.832000pt;}
.wsac{word-spacing:38.976000pt;}
.ws103{word-spacing:40.768000pt;}
.ws113{word-spacing:40.960000pt;}
.ws57{word-spacing:42.581333pt;}
.ws55{word-spacing:48.384000pt;}
.ws85{word-spacing:49.664000pt;}
.ws58{word-spacing:4404.668267pt;}
.ws2{word-spacing:4437.990933pt;}
._26{margin-left:-19.504000pt;}
._1f{margin-left:-17.949867pt;}
._28{margin-left:-16.556800pt;}
._14{margin-left:-11.835733pt;}
._15{margin-left:-8.595547pt;}
._25{margin-left:-7.608533pt;}
._22{margin-left:-6.390400pt;}
._4{margin-left:-5.436800pt;}
._f{margin-left:-4.326400pt;}
._3{margin-left:-3.374400pt;}
._0{margin-left:-2.464000pt;}
._5{margin-left:-1.296000pt;}
._2{width:1.386667pt;}
._1{width:2.560000pt;}
._e{width:3.603200pt;}
._10{width:4.563200pt;}
._16{width:5.804800pt;}
._11{width:7.315200pt;}
._12{width:8.262400pt;}
._13{width:9.785600pt;}
._b{width:10.707200pt;}
._a{width:11.840000pt;}
._7{width:12.807467pt;}
._9{width:13.984000pt;}
._8{width:15.152000pt;}
._c{width:17.203200pt;}
._1c{width:18.145600pt;}
._1e{width:19.865600pt;}
._17{width:20.755200pt;}
._18{width:21.734400pt;}
._20{width:22.892800pt;}
._d{width:24.454400pt;}
._21{width:25.563733pt;}
._1a{width:27.206400pt;}
._27{width:29.728000pt;}
._24{width:31.251200pt;}
._23{width:33.100800pt;}
._19{width:34.080000pt;}
._1d{width:37.536000pt;}
._1b{width:39.360000pt;}
._6{width:97.393572pt;}
.fsa{font-size:37.312000pt;}
.fs5{font-size:38.937600pt;}
.fs10{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs12{font-size:60.174400pt;}
.fs8{font-size:62.933333pt;}
.fs4{font-size:64.000000pt;}
.fsf{font-size:74.666667pt;}
.fs7{font-size:80.914133pt;}
.fsb{font-size:85.333333pt;}
.fsd{font-size:86.824000pt;}
.fs11{font-size:96.000000pt;}
.fsc{font-size:104.188800pt;}
.fs2{font-size:106.666667pt;}
.fs9{font-size:128.000000pt;}
.fse{font-size:156.282667pt;}
.fs1{font-size:160.000000pt;}
.fs6{font-size:215.770667pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:10.484267pt;}
.y3d5{bottom:19.069867pt;}
.y9{bottom:39.456667pt;}
.y1{bottom:39.456800pt;}
.y2c4{bottom:61.948933pt;}
.y2af{bottom:73.331333pt;}
.y9c{bottom:75.590533pt;}
.y2c2{bottom:77.107333pt;}
.y269{bottom:77.133067pt;}
.y337{bottom:77.568667pt;}
.y36f{bottom:77.573867pt;}
.y156{bottom:77.579733pt;}
.y1ae{bottom:78.528533pt;}
.y10{bottom:78.895200pt;}
.y386{bottom:79.659733pt;}
.y15{bottom:80.818933pt;}
.y2c3{bottom:81.954267pt;}
.y237{bottom:82.805867pt;}
.y28f{bottom:82.963333pt;}
.y136{bottom:83.435733pt;}
.y248{bottom:84.021867pt;}
.y218{bottom:84.789067pt;}
.yed{bottom:84.812800pt;}
.y2f4{bottom:85.048933pt;}
.y30a{bottom:85.768933pt;}
.y3ba{bottom:87.788000pt;}
.y5b{bottom:89.061200pt;}
.y31e{bottom:89.691067pt;}
.yd7{bottom:91.624800pt;}
.y117{bottom:92.585467pt;}
.y7d{bottom:92.600667pt;}
.y67{bottom:92.840667pt;}
.y2ae{bottom:93.331333pt;}
.y10b{bottom:93.785600pt;}
.y18e{bottom:93.792533pt;}
.y32e{bottom:93.792667pt;}
.yb0{bottom:93.895867pt;}
.y16f{bottom:94.891333pt;}
.y1c6{bottom:95.517867pt;}
.y1f1{bottom:95.518533pt;}
.y2c1{bottom:97.107333pt;}
.y268{bottom:97.133067pt;}
.y336{bottom:97.568667pt;}
.y36e{bottom:97.573867pt;}
.y155{bottom:97.579733pt;}
.y1ad{bottom:98.528533pt;}
.y385{bottom:99.659733pt;}
.y33{bottom:100.680933pt;}
.y21{bottom:101.108602pt;}
.y23f{bottom:101.221867pt;}
.yf{bottom:102.671200pt;}
.y236{bottom:102.805867pt;}
.y28e{bottom:102.963333pt;}
.y135{bottom:103.435733pt;}
.y3b9{bottom:103.784000pt;}
.y247{bottom:104.021867pt;}
.yec{bottom:104.812800pt;}
.y2f3{bottom:105.048933pt;}
.y309{bottom:105.768933pt;}
.y5a{bottom:109.061200pt;}
.y31d{bottom:109.691067pt;}
.y1db{bottom:110.478533pt;}
.yd6{bottom:111.624800pt;}
.y7c{bottom:112.600667pt;}
.y66{bottom:112.840667pt;}
.y2ad{bottom:113.331333pt;}
.y9b{bottom:113.785600pt;}
.y18d{bottom:113.792533pt;}
.y32d{bottom:113.792667pt;}
.y16e{bottom:114.891333pt;}
.y1c5{bottom:115.517867pt;}
.y1f0{bottom:115.518533pt;}
.y2c0{bottom:117.107333pt;}
.y267{bottom:117.133067pt;}
.y335{bottom:117.568667pt;}
.y36d{bottom:117.573867pt;}
.y154{bottom:117.579733pt;}
.y1ac{bottom:118.528533pt;}
.y384{bottom:119.659733pt;}
.y3b8{bottom:119.780000pt;}
.y23e{bottom:121.221867pt;}
.y116{bottom:121.918800pt;}
.y235{bottom:122.805867pt;}
.y28d{bottom:122.963333pt;}
.y134{bottom:123.435733pt;}
.y246{bottom:124.021867pt;}
.yeb{bottom:124.812800pt;}
.y2f2{bottom:125.048933pt;}
.y308{bottom:125.768933pt;}
.ye{bottom:126.447200pt;}
.y59{bottom:129.061200pt;}
.y31c{bottom:129.691067pt;}
.y1da{bottom:130.478533pt;}
.yd5{bottom:131.624800pt;}
.y7b{bottom:132.600667pt;}
.y65{bottom:132.840667pt;}
.y9a{bottom:133.785600pt;}
.y18c{bottom:133.792533pt;}
.y32c{bottom:133.792667pt;}
.y16d{bottom:134.891333pt;}
.y1c4{bottom:135.517867pt;}
.y1ef{bottom:135.518533pt;}
.y3b7{bottom:135.776000pt;}
.y2ac{bottom:137.107333pt;}
.y266{bottom:137.133067pt;}
.y334{bottom:137.568667pt;}
.y36c{bottom:137.573867pt;}
.y153{bottom:137.579733pt;}
.y1ab{bottom:138.528533pt;}
.y23d{bottom:141.221867pt;}
.y37f{bottom:141.344533pt;}
.y234{bottom:142.805867pt;}
.y28c{bottom:142.963333pt;}
.y133{bottom:143.435733pt;}
.y245{bottom:144.021867pt;}
.yea{bottom:144.812800pt;}
.y2f1{bottom:145.048933pt;}
.y307{bottom:145.768933pt;}
.y34f{bottom:146.581867pt;}
.y204{bottom:147.273200pt;}
.y58{bottom:149.061200pt;}
.y31b{bottom:149.691067pt;}
.y100{bottom:150.476800pt;}
.y1d9{bottom:150.478533pt;}
.y115{bottom:151.252133pt;}
.yd4{bottom:151.624800pt;}
.y3b6{bottom:151.772000pt;}
.y7a{bottom:152.600667pt;}
.y64{bottom:152.840667pt;}
.y99{bottom:153.785600pt;}
.y32b{bottom:153.792667pt;}
.y16c{bottom:154.891333pt;}
.y1c3{bottom:155.517867pt;}
.y1ee{bottom:155.518533pt;}
.y2ab{bottom:157.107333pt;}
.y265{bottom:157.133067pt;}
.y18b{bottom:157.568533pt;}
.y333{bottom:157.568667pt;}
.y36b{bottom:157.573867pt;}
.y152{bottom:157.579733pt;}
.y1aa{bottom:158.528533pt;}
.y32{bottom:159.460667pt;}
.y23c{bottom:161.221867pt;}
.y37e{bottom:161.344533pt;}
.y233{bottom:162.805867pt;}
.y28b{bottom:162.963333pt;}
.y132{bottom:163.435733pt;}
.y244{bottom:164.021867pt;}
.ye9{bottom:164.812800pt;}
.y2f0{bottom:165.048933pt;}
.y306{bottom:165.768933pt;}
.y34e{bottom:166.581867pt;}
.y3b5{bottom:167.768000pt;}
.y57{bottom:169.061200pt;}
.y203{bottom:169.673200pt;}
.y31a{bottom:169.691067pt;}
.yff{bottom:170.476800pt;}
.y1d8{bottom:170.478533pt;}
.y79{bottom:172.600667pt;}
.y63{bottom:172.840667pt;}
.y98{bottom:173.785600pt;}
.y32a{bottom:173.792667pt;}
.yd{bottom:173.999200pt;}
.y16b{bottom:174.891333pt;}
.yd3{bottom:175.400800pt;}
.y1c2{bottom:175.517867pt;}
.y1ed{bottom:175.518533pt;}
.y2aa{bottom:177.107333pt;}
.y264{bottom:177.133067pt;}
.y18a{bottom:177.568533pt;}
.y332{bottom:177.568667pt;}
.y36a{bottom:177.573867pt;}
.y151{bottom:177.579733pt;}
.y1a9{bottom:178.528533pt;}
.y31{bottom:180.527600pt;}
.y114{bottom:180.585467pt;}
.y23b{bottom:181.221867pt;}
.y37d{bottom:181.344533pt;}
.y232{bottom:182.805867pt;}
.y28a{bottom:182.963333pt;}
.y131{bottom:183.435733pt;}
.y243{bottom:184.021867pt;}
.ye8{bottom:184.812800pt;}
.y2ef{bottom:185.048933pt;}
.y305{bottom:185.768933pt;}
.y34d{bottom:186.581867pt;}
.y3b4{bottom:187.544000pt;}
.yc0{bottom:187.690945pt;}
.y56{bottom:189.061200pt;}
.y319{bottom:189.691067pt;}
.yfe{bottom:190.476800pt;}
.y1d7{bottom:190.477867pt;}
.y202{bottom:192.073200pt;}
.y78{bottom:192.600667pt;}
.y62{bottom:192.840667pt;}
.y97{bottom:193.785600pt;}
.y329{bottom:193.792667pt;}
.y16a{bottom:194.891333pt;}
.yd2{bottom:195.400800pt;}
.y1c1{bottom:195.517867pt;}
.y1ec{bottom:195.518533pt;}
.y2a9{bottom:197.107333pt;}
.y263{bottom:197.133067pt;}
.y189{bottom:197.568533pt;}
.y331{bottom:197.568667pt;}
.y369{bottom:197.573867pt;}
.y150{bottom:197.579733pt;}
.yc{bottom:197.775200pt;}
.y1a8{bottom:198.528533pt;}
.y23a{bottom:201.221867pt;}
.y37c{bottom:201.344533pt;}
.y30{bottom:201.594533pt;}
.y231{bottom:202.805867pt;}
.y289{bottom:202.963333pt;}
.y130{bottom:203.435733pt;}
.y3b3{bottom:203.540000pt;}
.y242{bottom:204.021867pt;}
.ye7{bottom:204.812800pt;}
.y2ee{bottom:205.048933pt;}
.y304{bottom:205.768933pt;}
.y1c{bottom:206.009333pt;}
.y34c{bottom:206.581867pt;}
.y55{bottom:209.061200pt;}
.y217{bottom:209.214933pt;}
.y318{bottom:209.691067pt;}
.y113{bottom:209.918800pt;}
.yfd{bottom:210.476800pt;}
.y1d6{bottom:210.477867pt;}
.y77{bottom:212.600667pt;}
.y61{bottom:212.840667pt;}
.y96{bottom:213.785600pt;}
.y328{bottom:213.792667pt;}
.y201{bottom:214.473200pt;}
.yd1{bottom:215.400800pt;}
.y1c0{bottom:215.517867pt;}
.y1eb{bottom:215.518533pt;}
.y2a8{bottom:217.107333pt;}
.y262{bottom:217.133067pt;}
.y188{bottom:217.568533pt;}
.y330{bottom:217.568667pt;}
.y368{bottom:217.573867pt;}
.y14f{bottom:217.579733pt;}
.y1a7{bottom:218.528533pt;}
.y169{bottom:218.667333pt;}
.y2bf{bottom:220.883333pt;}
.y239{bottom:221.221867pt;}
.y37b{bottom:221.344533pt;}
.yb{bottom:221.551200pt;}
.y2f{bottom:222.661467pt;}
.y230{bottom:222.805867pt;}
.y288{bottom:222.963333pt;}
.y3b2{bottom:223.316000pt;}
.y12f{bottom:223.435733pt;}
.y241{bottom:224.021867pt;}
.ye6{bottom:224.812800pt;}
.y2ed{bottom:225.048933pt;}
.y303{bottom:225.768933pt;}
.y34b{bottom:226.581867pt;}
.y54{bottom:229.064667pt;}
.y44{bottom:229.438400pt;}
.y317{bottom:229.691067pt;}
.yfc{bottom:230.476800pt;}
.y1d5{bottom:230.477867pt;}
.y216{bottom:231.614933pt;}
.y76{bottom:232.600667pt;}
.y60{bottom:232.840667pt;}
.y95{bottom:233.785600pt;}
.y10a{bottom:233.789067pt;}
.y327{bottom:233.792667pt;}
.yd0{bottom:235.400800pt;}
.y1bf{bottom:235.517867pt;}
.y1ea{bottom:235.518533pt;}
.y200{bottom:236.873200pt;}
.y2dc{bottom:237.096133pt;}
.y2a7{bottom:237.107333pt;}
.y261{bottom:237.133067pt;}
.y187{bottom:237.568533pt;}
.y32f{bottom:237.568667pt;}
.y367{bottom:237.573867pt;}
.y14e{bottom:237.579733pt;}
.y1a6{bottom:238.528533pt;}
.y168{bottom:238.667333pt;}
.y112{bottom:239.252133pt;}
.y2be{bottom:240.883333pt;}
.y238{bottom:241.221867pt;}
.y37a{bottom:241.344533pt;}
.y22f{bottom:242.805867pt;}
.y287{bottom:242.963333pt;}
.y3b1{bottom:243.092000pt;}
.y12e{bottom:243.435733pt;}
.y2e{bottom:243.728400pt;}
.y240{bottom:244.021867pt;}
.ye5{bottom:244.812800pt;}
.y2ec{bottom:245.048933pt;}
.y302{bottom:245.768933pt;}
.y34a{bottom:246.581867pt;}
.y53{bottom:249.064667pt;}
.y316{bottom:249.691067pt;}
.yfb{bottom:250.476800pt;}
.y1d4{bottom:250.477867pt;}
.y75{bottom:252.600667pt;}
.y5f{bottom:252.840667pt;}
.y43{bottom:253.438400pt;}
.y94{bottom:253.785600pt;}
.y109{bottom:253.789067pt;}
.y215{bottom:254.014933pt;}
.ycf{bottom:255.400800pt;}
.y1be{bottom:255.517867pt;}
.y1e9{bottom:255.518533pt;}
.y2db{bottom:257.096133pt;}
.y2a6{bottom:257.107333pt;}
.y260{bottom:257.133067pt;}
.y186{bottom:257.568533pt;}
.y326{bottom:257.568667pt;}
.y366{bottom:257.573867pt;}
.y14d{bottom:257.579733pt;}
.y1a5{bottom:258.528533pt;}
.y167{bottom:258.667333pt;}
.y1ff{bottom:259.273200pt;}
.y2bd{bottom:260.883333pt;}
.y379{bottom:261.344533pt;}
.y22e{bottom:262.805867pt;}
.y3b0{bottom:262.868000pt;}
.y286{bottom:262.963333pt;}
.y12d{bottom:263.435733pt;}
.ybd{bottom:263.618533pt;}
.y2d{bottom:264.795333pt;}
.ye4{bottom:264.812800pt;}
.y2eb{bottom:265.048933pt;}
.y301{bottom:265.768933pt;}
.y349{bottom:266.581867pt;}
.y111{bottom:268.585467pt;}
.y52{bottom:269.064667pt;}
.y315{bottom:269.691067pt;}
.yfa{bottom:270.476800pt;}
.y1d3{bottom:270.477867pt;}
.y74{bottom:272.600667pt;}
.y5e{bottom:272.840667pt;}
.y93{bottom:273.785600pt;}
.y108{bottom:273.789067pt;}
.yce{bottom:275.400800pt;}
.y1bd{bottom:275.517867pt;}
.y1e8{bottom:275.518533pt;}
.y214{bottom:276.414933pt;}
.y2da{bottom:277.096133pt;}
.y2a5{bottom:277.107333pt;}
.y25f{bottom:277.133067pt;}
.y42{bottom:277.438400pt;}
.y185{bottom:277.568533pt;}
.y325{bottom:277.568667pt;}
.y14c{bottom:277.579733pt;}
.y1a4{bottom:278.528533pt;}
.y166{bottom:278.667333pt;}
.y3af{bottom:278.864000pt;}
.y2bc{bottom:280.883333pt;}
.y378{bottom:281.344533pt;}
.y365{bottom:281.349867pt;}
.y1fe{bottom:281.673200pt;}
.y22d{bottom:282.805867pt;}
.y285{bottom:282.963333pt;}
.y12c{bottom:283.435733pt;}
.ye3{bottom:284.812800pt;}
.y2ea{bottom:285.048933pt;}
.y300{bottom:285.768933pt;}
.y2c{bottom:285.862267pt;}
.y249{bottom:286.217200pt;}
.y348{bottom:286.581867pt;}
.y51{bottom:289.064667pt;}
.ybc{bottom:289.665733pt;}
.y314{bottom:289.691067pt;}
.yf9{bottom:290.476800pt;}
.y1d2{bottom:290.477867pt;}
.y73{bottom:292.600667pt;}
.y5d{bottom:292.840667pt;}
.y92{bottom:293.785600pt;}
.y107{bottom:293.789067pt;}
.y3ae{bottom:294.860000pt;}
.ycd{bottom:295.400800pt;}
.y1bc{bottom:295.517867pt;}
.y1e7{bottom:295.518533pt;}
.y2d9{bottom:297.096133pt;}
.y2a4{bottom:297.107333pt;}
.y25e{bottom:297.133067pt;}
.y184{bottom:297.568533pt;}
.y324{bottom:297.568667pt;}
.y14b{bottom:297.579733pt;}
.y110{bottom:297.918800pt;}
.y1a3{bottom:298.528533pt;}
.y165{bottom:298.667333pt;}
.y213{bottom:298.814933pt;}
.y2bb{bottom:300.883333pt;}
.y377{bottom:301.344533pt;}
.y364{bottom:301.349867pt;}
.y41{bottom:301.438400pt;}
.y22{bottom:302.524108pt;}
.y22c{bottom:302.805867pt;}
.y284{bottom:302.963333pt;}
.y12b{bottom:303.435733pt;}
.y1fd{bottom:304.073200pt;}
.y399{bottom:304.625333pt;}
.ye2{bottom:304.812800pt;}
.y2e9{bottom:305.048933pt;}
.y2ff{bottom:305.768933pt;}
.y347{bottom:306.581867pt;}
.y2b{bottom:306.929200pt;}
.y313{bottom:309.691067pt;}
.yf8{bottom:310.476800pt;}
.y1d1{bottom:310.477867pt;}
.y3ad{bottom:310.856000pt;}
.y72{bottom:312.600667pt;}
.y50{bottom:312.840667pt;}
.y91{bottom:313.785600pt;}
.y106{bottom:313.789067pt;}
.ycc{bottom:315.400800pt;}
.y1bb{bottom:315.517867pt;}
.y1e6{bottom:315.518533pt;}
.ybb{bottom:315.692071pt;}
.ybf{bottom:315.712933pt;}
.y2d8{bottom:317.096133pt;}
.y2a3{bottom:317.107333pt;}
.y25d{bottom:317.133067pt;}
.y183{bottom:317.568533pt;}
.y323{bottom:317.568667pt;}
.y14a{bottom:317.579733pt;}
.y1a2{bottom:318.528533pt;}
.y164{bottom:318.667333pt;}
.y2ba{bottom:320.883333pt;}
.y212{bottom:321.214933pt;}
.y376{bottom:321.344533pt;}
.y363{bottom:321.349867pt;}
.y22b{bottom:322.805867pt;}
.y283{bottom:322.963333pt;}
.y383{bottom:323.435733pt;}
.ye1{bottom:324.812800pt;}
.y40{bottom:325.438400pt;}
.y398{bottom:325.733333pt;}
.y2fe{bottom:325.768933pt;}
.y1fc{bottom:326.473200pt;}
.y346{bottom:326.581867pt;}
.y3ac{bottom:326.852000pt;}
.y12a{bottom:327.211733pt;}
.y10f{bottom:327.252133pt;}
.y2e8{bottom:328.824933pt;}
.yf7{bottom:330.476800pt;}
.y1d0{bottom:330.477867pt;}
.y71{bottom:332.600667pt;}
.y4f{bottom:332.840667pt;}
.y105{bottom:333.789067pt;}
.y90{bottom:333.792667pt;}
.ycb{bottom:335.400800pt;}
.y1ba{bottom:335.517867pt;}
.y1e5{bottom:335.518533pt;}
.y2d7{bottom:337.096133pt;}
.y2a2{bottom:337.107333pt;}
.y25c{bottom:337.133067pt;}
.y182{bottom:337.568533pt;}
.y322{bottom:337.568667pt;}
.y149{bottom:337.579733pt;}
.y1a1{bottom:338.528533pt;}
.y163{bottom:338.667333pt;}
.y2b9{bottom:340.883333pt;}
.y312{bottom:341.029733pt;}
.y375{bottom:341.344533pt;}
.y362{bottom:341.349867pt;}
.y22a{bottom:342.805867pt;}
.y3ab{bottom:342.848000pt;}
.y282{bottom:342.963333pt;}
.y382{bottom:343.435733pt;}
.y211{bottom:343.614933pt;}
.ye0{bottom:344.812800pt;}
.y2fd{bottom:345.768933pt;}
.y345{bottom:346.581867pt;}
.y397{bottom:346.841333pt;}
.y129{bottom:347.211733pt;}
.y2a{bottom:347.757200pt;}
.y20{bottom:348.806992pt;}
.y2e7{bottom:348.824933pt;}
.y1fb{bottom:348.873200pt;}
.y3f{bottom:349.438267pt;}
.yf6{bottom:350.476800pt;}
.y1cf{bottom:350.477867pt;}
.y70{bottom:352.600667pt;}
.y4e{bottom:352.840667pt;}
.y104{bottom:353.789067pt;}
.y8f{bottom:353.792667pt;}
.yca{bottom:355.400800pt;}
.y1b9{bottom:355.517867pt;}
.y1e4{bottom:355.518533pt;}
.y2d6{bottom:357.096133pt;}
.y2a1{bottom:357.107333pt;}
.y25b{bottom:357.133067pt;}
.y181{bottom:357.568533pt;}
.y321{bottom:357.568667pt;}
.y148{bottom:357.579733pt;}
.y1a0{bottom:358.528533pt;}
.y162{bottom:358.667333pt;}
.y2b8{bottom:360.883333pt;}
.y374{bottom:361.344533pt;}
.y361{bottom:361.349867pt;}
.y14{bottom:362.168533pt;}
.y3aa{bottom:362.624000pt;}
.y229{bottom:362.805867pt;}
.y281{bottom:362.963333pt;}
.y381{bottom:363.435733pt;}
.ydf{bottom:364.812800pt;}
.y2fc{bottom:365.768933pt;}
.y210{bottom:366.014933pt;}
.y344{bottom:366.581867pt;}
.y128{bottom:367.211733pt;}
.y396{bottom:367.949333pt;}
.y2e6{bottom:368.824933pt;}
.yf5{bottom:370.476800pt;}
.y1ce{bottom:370.477867pt;}
.y1fa{bottom:371.273200pt;}
.y6f{bottom:372.600667pt;}
.y4d{bottom:372.840667pt;}
.y3e{bottom:373.438267pt;}
.y103{bottom:373.789067pt;}
.y8e{bottom:373.792667pt;}
.yc9{bottom:375.400800pt;}
.y1b8{bottom:375.517867pt;}
.y1e3{bottom:375.518533pt;}
.y2d5{bottom:377.096133pt;}
.y2a0{bottom:377.107333pt;}
.y25a{bottom:377.133067pt;}
.y180{bottom:377.568533pt;}
.y320{bottom:377.568667pt;}
.y147{bottom:377.579733pt;}
.y3a9{bottom:378.620000pt;}
.y3d3{bottom:378.932133pt;}
.y2b7{bottom:380.883333pt;}
.y271{bottom:380.909067pt;}
.y373{bottom:381.344533pt;}
.y360{bottom:381.349867pt;}
.y19f{bottom:382.304533pt;}
.y1b{bottom:382.718400pt;}
.y228{bottom:382.805867pt;}
.y280{bottom:382.963333pt;}
.yde{bottom:384.812800pt;}
.y2fb{bottom:385.768933pt;}
.y343{bottom:386.581867pt;}
.y127{bottom:387.211733pt;}
.y20f{bottom:388.414933pt;}
.y311{bottom:388.600933pt;}
.y2e5{bottom:388.824933pt;}
.y395{bottom:389.057333pt;}
.y161{bottom:390.014000pt;}
.yf4{bottom:390.476800pt;}
.y1cd{bottom:390.477867pt;}
.y6e{bottom:392.600667pt;}
.y4c{bottom:392.840667pt;}
.y1f9{bottom:393.673200pt;}
.y102{bottom:393.789067pt;}
.y8d{bottom:393.792667pt;}
.y3a8{bottom:394.616000pt;}
.y3d2{bottom:394.928133pt;}
.yc8{bottom:395.400800pt;}
.y1b7{bottom:395.517867pt;}
.y1e2{bottom:395.518533pt;}
.y2d4{bottom:397.096133pt;}
.y29f{bottom:397.107333pt;}
.y259{bottom:397.133067pt;}
.y3d{bottom:397.438267pt;}
.y17f{bottom:397.568533pt;}
.y10e{bottom:397.568667pt;}
.y146{bottom:397.579733pt;}
.yba{bottom:399.433819pt;}
.y2b6{bottom:400.883333pt;}
.y1a{bottom:400.898400pt;}
.y270{bottom:400.909067pt;}
.y372{bottom:401.344533pt;}
.y35f{bottom:401.349867pt;}
.y19e{bottom:402.304533pt;}
.y227{bottom:402.805867pt;}
.yb7{bottom:402.898097pt;}
.y27f{bottom:402.963333pt;}
.ydd{bottom:404.812800pt;}
.y2fa{bottom:405.768933pt;}
.y342{bottom:406.581867pt;}
.y29{bottom:407.087600pt;}
.y126{bottom:407.211733pt;}
.y310{bottom:408.600933pt;}
.y2e4{bottom:408.824933pt;}
.y160{bottom:410.006000pt;}
.y394{bottom:410.165333pt;}
.yf3{bottom:410.476800pt;}
.y1cc{bottom:410.477867pt;}
.y20e{bottom:410.814933pt;}
.y6d{bottom:412.600667pt;}
.y4b{bottom:412.840667pt;}
.y3a7{bottom:414.392000pt;}
.y3d1{bottom:414.704133pt;}
.yc7{bottom:415.400800pt;}
.y1b6{bottom:415.517867pt;}
.y1e1{bottom:415.518533pt;}
.y1f8{bottom:416.073200pt;}
.y2d3{bottom:417.096133pt;}
.y29e{bottom:417.107333pt;}
.y258{bottom:417.133067pt;}
.y17e{bottom:417.568533pt;}
.y8c{bottom:417.568667pt;}
.y145{bottom:417.579733pt;}
.y19{bottom:419.078400pt;}
.y2b5{bottom:420.883333pt;}
.y26f{bottom:420.909067pt;}
.y371{bottom:421.344533pt;}
.ya6{bottom:421.344667pt;}
.y35e{bottom:421.349867pt;}
.y3c{bottom:421.438267pt;}
.y19d{bottom:422.304533pt;}
.y226{bottom:422.805867pt;}
.yb9{bottom:425.481019pt;}
.y2f9{bottom:425.768933pt;}
.y341{bottom:426.581867pt;}
.y27e{bottom:426.739333pt;}
.y125{bottom:427.211733pt;}
.y28{bottom:428.154533pt;}
.ydc{bottom:428.588800pt;}
.y30f{bottom:428.600933pt;}
.y2e3{bottom:428.824933pt;}
.yb6{bottom:428.945297pt;}
.y3a6{bottom:430.388000pt;}
.yf2{bottom:430.476800pt;}
.y3d0{bottom:430.700133pt;}
.y393{bottom:431.273333pt;}
.y6c{bottom:432.600667pt;}
.y4a{bottom:432.840667pt;}
.y20d{bottom:433.214933pt;}
.y1cb{bottom:434.253867pt;}
.yc6{bottom:435.400800pt;}
.y1b5{bottom:435.517867pt;}
.y1e0{bottom:435.518533pt;}
.y2d2{bottom:437.096133pt;}
.y29d{bottom:437.107333pt;}
.y257{bottom:437.133067pt;}
.y18{bottom:437.258400pt;}
.y17d{bottom:437.568533pt;}
.y8b{bottom:437.568667pt;}
.y1f7{bottom:438.473200pt;}
.ya{bottom:439.486533pt;}
.y2b4{bottom:440.883333pt;}
.y26e{bottom:440.909067pt;}
.y370{bottom:441.344533pt;}
.ya5{bottom:441.344667pt;}
.y35d{bottom:441.349867pt;}
.y144{bottom:441.355733pt;}
.y19c{bottom:442.304533pt;}
.y3b{bottom:445.438267pt;}
.y2f8{bottom:445.768933pt;}
.y225{bottom:446.581867pt;}
.y27d{bottom:446.739333pt;}
.y124{bottom:447.211733pt;}
.ydb{bottom:448.588800pt;}
.y30e{bottom:448.600933pt;}
.y2e2{bottom:448.824933pt;}
.y27{bottom:449.221467pt;}
.y3a5{bottom:450.164000pt;}
.y3cf{bottom:450.476133pt;}
.yf1{bottom:450.476800pt;}
.yb8{bottom:451.528219pt;}
.y392{bottom:452.381333pt;}
.y6b{bottom:452.600667pt;}
.y49{bottom:452.840667pt;}
.y1ca{bottom:454.253867pt;}
.yc5{bottom:455.400800pt;}
.y17{bottom:455.438400pt;}
.y1b4{bottom:455.517867pt;}
.y1df{bottom:455.518533pt;}
.y20c{bottom:455.614933pt;}
.y2d1{bottom:457.096133pt;}
.y29c{bottom:457.107333pt;}
.y256{bottom:457.133067pt;}
.y15f{bottom:457.565067pt;}
.y8a{bottom:457.568667pt;}
.y3d4{bottom:459.456000pt;}
.yaf{bottom:460.303333pt;}
.y1f6{bottom:460.873200pt;}
.y2b3{bottom:460.883333pt;}
.y26d{bottom:460.909067pt;}
.y17c{bottom:461.344533pt;}
.ya4{bottom:461.344667pt;}
.y35c{bottom:461.349867pt;}
.y143{bottom:461.355733pt;}
.y19b{bottom:462.304533pt;}
.y8{bottom:464.155067pt;}
.y2f7{bottom:465.768933pt;}
.y3a4{bottom:466.160000pt;}
.y3ce{bottom:466.472133pt;}
.y224{bottom:466.581867pt;}
.y27c{bottom:466.739333pt;}
.y1b0{bottom:466.860267pt;}
.y123{bottom:467.211733pt;}
.yda{bottom:468.588800pt;}
.y30d{bottom:468.600933pt;}
.y2e1{bottom:468.824933pt;}
.y3a{bottom:469.438267pt;}
.y26{bottom:470.288400pt;}
.yf0{bottom:470.476800pt;}
.y2de{bottom:470.563333pt;}
.yc2{bottom:470.636133pt;}
.y6a{bottom:472.600667pt;}
.y48{bottom:472.840667pt;}
.y391{bottom:473.489333pt;}
.y1c9{bottom:474.253867pt;}
.y1b3{bottom:475.517867pt;}
.y1de{bottom:475.518533pt;}
.y2d0{bottom:477.096133pt;}
.y29b{bottom:477.107333pt;}
.y255{bottom:477.133067pt;}
.y15e{bottom:477.565067pt;}
.y89{bottom:477.568667pt;}
.y20b{bottom:478.014933pt;}
.y2b2{bottom:480.883333pt;}
.y26c{bottom:480.909067pt;}
.y17b{bottom:481.344533pt;}
.ya3{bottom:481.344667pt;}
.y35b{bottom:481.349867pt;}
.y142{bottom:481.355733pt;}
.y19a{bottom:482.304533pt;}
.y7{bottom:482.335067pt;}
.y3cd{bottom:482.468133pt;}
.y1f5{bottom:483.273200pt;}
.y3a3{bottom:485.936000pt;}
.y223{bottom:486.581867pt;}
.y27b{bottom:486.739333pt;}
.yc4{bottom:486.747333pt;}
.y122{bottom:487.211733pt;}
.yd9{bottom:488.584800pt;}
.y30c{bottom:488.600933pt;}
.y2e0{bottom:488.824933pt;}
.y2f6{bottom:489.544933pt;}
.yae{bottom:489.636667pt;}
.yef{bottom:490.476800pt;}
.y25{bottom:491.355333pt;}
.y69{bottom:492.600667pt;}
.y47{bottom:492.840667pt;}
.y39{bottom:493.438267pt;}
.y1c8{bottom:494.253867pt;}
.y390{bottom:494.597333pt;}
.y1b2{bottom:495.517867pt;}
.y1dd{bottom:495.518533pt;}
.y29a{bottom:497.107333pt;}
.y254{bottom:497.133067pt;}
.y15d{bottom:497.565067pt;}
.y88{bottom:497.568667pt;}
.y20a{bottom:500.414933pt;}
.y6{bottom:500.515067pt;}
.y2cf{bottom:500.872133pt;}
.y2b1{bottom:500.883333pt;}
.y26b{bottom:500.909067pt;}
.y17a{bottom:501.344533pt;}
.ya2{bottom:501.344667pt;}
.y35a{bottom:501.349867pt;}
.y141{bottom:501.355733pt;}
.y3cc{bottom:502.244133pt;}
.y199{bottom:502.304533pt;}
.y3a2{bottom:505.712000pt;}
.y2dd{bottom:506.563333pt;}
.y222{bottom:506.581867pt;}
.yc1{bottom:506.636133pt;}
.y1af{bottom:506.636267pt;}
.yc3{bottom:506.739333pt;}
.y121{bottom:507.211733pt;}
.yd8{bottom:508.584800pt;}
.y30b{bottom:508.600933pt;}
.y2df{bottom:508.824933pt;}
.y2f5{bottom:509.544933pt;}
.yee{bottom:510.476800pt;}
.y24{bottom:512.422267pt;}
.y68{bottom:512.600667pt;}
.y46{bottom:512.840667pt;}
.y1c7{bottom:514.253867pt;}
.y1b1{bottom:515.517867pt;}
.y1dc{bottom:515.518533pt;}
.y38f{bottom:515.705333pt;}
.y387{bottom:516.094533pt;}
.y45{bottom:516.472533pt;}
.y299{bottom:517.107333pt;}
.y253{bottom:517.133067pt;}
.y38{bottom:517.438267pt;}
.y15c{bottom:517.565067pt;}
.y87{bottom:517.568667pt;}
.y33e{bottom:517.866267pt;}
.yb3{bottom:517.885200pt;}
.y3cb{bottom:518.240133pt;}
.y5{bottom:518.695067pt;}
.yad{bottom:518.970000pt;}
.y2ce{bottom:520.872133pt;}
.y2b0{bottom:520.883333pt;}
.y26a{bottom:520.909067pt;}
.y179{bottom:521.344533pt;}
.ya1{bottom:521.344667pt;}
.y359{bottom:521.349867pt;}
.y140{bottom:521.355733pt;}
.y3a1{bottom:521.708000pt;}
.y198{bottom:522.304533pt;}
.y209{bottom:522.814933pt;}
.y16{bottom:525.651333pt;}
.y221{bottom:526.581867pt;}
.y27a{bottom:526.739333pt;}
.y120{bottom:527.211733pt;}
.yb5{bottom:529.695867pt;}
.y23{bottom:531.025621pt;}
.y3ca{bottom:534.236133pt;}
.y1f4{bottom:534.473200pt;}
.y38e{bottom:536.813333pt;}
.y4{bottom:536.874667pt;}
.y15b{bottom:537.565067pt;}
.y86{bottom:537.568667pt;}
.y2cd{bottom:540.872133pt;}
.y298{bottom:540.883333pt;}
.y252{bottom:540.909067pt;}
.y178{bottom:541.344533pt;}
.ya0{bottom:541.344667pt;}
.y358{bottom:541.349867pt;}
.y13f{bottom:541.355733pt;}
.y37{bottom:541.438400pt;}
.y3a0{bottom:541.484000pt;}
.y197{bottom:542.304533pt;}
.yb2{bottom:543.932400pt;}
.y208{bottom:545.214933pt;}
.y220{bottom:546.581867pt;}
.y279{bottom:546.739333pt;}
.y33d{bottom:547.199600pt;}
.y11f{bottom:547.211733pt;}
.yac{bottom:548.303333pt;}
.y3db{bottom:548.672667pt;}
.y3c9{bottom:554.012133pt;}
.yb4{bottom:555.743067pt;}
.y3bf{bottom:557.020000pt;}
.y39f{bottom:557.480000pt;}
.y15a{bottom:557.565067pt;}
.y85{bottom:557.568667pt;}
.y38d{bottom:557.921333pt;}
.y2cc{bottom:560.872133pt;}
.y297{bottom:560.883333pt;}
.y251{bottom:560.909067pt;}
.y177{bottom:561.344533pt;}
.y9f{bottom:561.344667pt;}
.y357{bottom:561.349867pt;}
.y13e{bottom:561.355733pt;}
.y196{bottom:562.304533pt;}
.y1f3{bottom:563.273200pt;}
.y36{bottom:565.438400pt;}
.y21f{bottom:566.581867pt;}
.y278{bottom:566.739333pt;}
.y11e{bottom:567.211733pt;}
.y207{bottom:567.614933pt;}
.yb1{bottom:569.979600pt;}
.y3c8{bottom:570.008133pt;}
.y13{bottom:572.259200pt;}
.y3da{bottom:572.672667pt;}
.y33c{bottom:576.532933pt;}
.y3be{bottom:577.020000pt;}
.y39e{bottom:577.256000pt;}
.y159{bottom:577.565067pt;}
.y84{bottom:577.568667pt;}
.yab{bottom:577.636667pt;}
.y38c{bottom:579.029333pt;}
.y2cb{bottom:580.872133pt;}
.y296{bottom:580.883333pt;}
.y250{bottom:580.909067pt;}
.y176{bottom:581.344533pt;}
.y9e{bottom:581.344667pt;}
.y356{bottom:581.349867pt;}
.y13d{bottom:581.355733pt;}
.y195{bottom:582.304533pt;}
.y3c7{bottom:586.004133pt;}
.y21e{bottom:586.581867pt;}
.y277{bottom:586.739333pt;}
.y11d{bottom:587.211733pt;}
.y35{bottom:589.438400pt;}
.y1f{bottom:592.500133pt;}
.y39d{bottom:593.252000pt;}
.y3{bottom:593.883600pt;}
.y3d9{bottom:596.672667pt;}
.y3bd{bottom:597.020000pt;}
.y158{bottom:597.565067pt;}
.y83{bottom:597.568667pt;}
.y38b{bottom:600.137333pt;}
.y2ca{bottom:600.872133pt;}
.y295{bottom:600.883333pt;}
.y24f{bottom:600.909067pt;}
.y175{bottom:601.344533pt;}
.y9d{bottom:601.344667pt;}
.y355{bottom:601.349867pt;}
.y13c{bottom:601.355733pt;}
.y194{bottom:602.304533pt;}
.y3c6{bottom:605.780133pt;}
.y33b{bottom:605.866267pt;}
.y21d{bottom:606.581867pt;}
.y276{bottom:606.739333pt;}
.yaa{bottom:606.970000pt;}
.y11c{bottom:607.211733pt;}
.y39c{bottom:609.248000pt;}
.y3bc{bottom:617.020000pt;}
.y157{bottom:617.579733pt;}
.y206{bottom:618.814933pt;}
.y1e{bottom:619.471333pt;}
.y3d8{bottom:620.672667pt;}
.y2c9{bottom:620.872133pt;}
.y294{bottom:620.883333pt;}
.y24e{bottom:620.909067pt;}
.y38a{bottom:621.245333pt;}
.y174{bottom:621.344533pt;}
.y82{bottom:621.344667pt;}
.y354{bottom:621.349867pt;}
.y13b{bottom:621.355733pt;}
.y3c5{bottom:621.776133pt;}
.y193{bottom:622.304533pt;}
.y34{bottom:624.105067pt;}
.y21c{bottom:626.581867pt;}
.y275{bottom:626.739333pt;}
.y11b{bottom:627.211733pt;}
.y39b{bottom:629.024000pt;}
.y33a{bottom:635.199600pt;}
.ya9{bottom:636.303333pt;}
.y3bb{bottom:637.020000pt;}
.y2c8{bottom:640.872133pt;}
.y293{bottom:640.883333pt;}
.y24d{bottom:640.909067pt;}
.y173{bottom:641.344533pt;}
.y81{bottom:641.344667pt;}
.y353{bottom:641.349867pt;}
.y13a{bottom:641.355733pt;}
.y3c4{bottom:641.552133pt;}
.y2{bottom:641.664000pt;}
.y192{bottom:642.304533pt;}
.ybe{bottom:642.324133pt;}
.y389{bottom:642.353333pt;}
.y31f{bottom:643.618400pt;}
.y1f2{bottom:644.327067pt;}
.y101{bottom:644.421467pt;}
.y3d7{bottom:644.672667pt;}
.y39a{bottom:645.020000pt;}
.y340{bottom:646.581867pt;}
.y274{bottom:646.739333pt;}
.y11a{bottom:647.211733pt;}
.y205{bottom:647.614933pt;}
.y5c{bottom:653.480400pt;}
.y3c3{bottom:657.548133pt;}
.y21b{bottom:657.936533pt;}
.y2c7{bottom:660.872133pt;}
.y292{bottom:660.883333pt;}
.y24c{bottom:660.909067pt;}
.y172{bottom:661.344533pt;}
.y80{bottom:661.344667pt;}
.y352{bottom:661.349867pt;}
.y139{bottom:661.355733pt;}
.y191{bottom:662.304533pt;}
.y339{bottom:664.532933pt;}
.ya8{bottom:665.636667pt;}
.y33f{bottom:666.581867pt;}
.y380{bottom:667.211733pt;}
.y3c2{bottom:673.544133pt;}
.y21a{bottom:677.928533pt;}
.y273{bottom:678.085867pt;}
.y119{bottom:678.558267pt;}
.y3d6{bottom:680.016667pt;}
.y2c6{bottom:680.872133pt;}
.y291{bottom:680.883333pt;}
.y24b{bottom:680.909067pt;}
.y10d{bottom:681.337600pt;}
.y171{bottom:681.344533pt;}
.y7f{bottom:681.344667pt;}
.y351{bottom:681.349867pt;}
.y138{bottom:681.355733pt;}
.y190{bottom:682.304533pt;}
.y12{bottom:682.334133pt;}
.y388{bottom:684.579067pt;}
.y3c1{bottom:689.540133pt;}
.y338{bottom:693.866267pt;}
.ya7{bottom:694.970000pt;}
.y219{bottom:697.920533pt;}
.y272{bottom:698.077867pt;}
.y118{bottom:698.550267pt;}
.y2c5{bottom:700.872133pt;}
.y290{bottom:700.883333pt;}
.y24a{bottom:700.909067pt;}
.y10c{bottom:701.337600pt;}
.y170{bottom:701.344533pt;}
.y7e{bottom:701.344667pt;}
.y350{bottom:701.349867pt;}
.y137{bottom:701.355733pt;}
.y18f{bottom:702.304533pt;}
.y3c0{bottom:705.536133pt;}
.y11{bottom:706.110133pt;}
.h9{height:19.536000pt;}
.ha{height:27.256320pt;}
.h28{height:33.060000pt;}
.h26{height:36.000000pt;}
.h8{height:36.492188pt;}
.h27{height:36.540019pt;}
.h5{height:38.507812pt;}
.h29{height:42.122080pt;}
.h2{height:44.601562pt;}
.h13{height:44.800000pt;}
.h15{height:46.291667pt;}
.h11{height:50.500000pt;}
.h12{height:50.500533pt;}
.h6{height:51.343750pt;}
.h24{height:53.088000pt;}
.hf{height:55.129600pt;}
.h1a{height:56.765625pt;}
.h19{height:58.916667pt;}
.hd{height:59.552802pt;}
.h20{height:60.837167pt;}
.h25{height:60.874500pt;}
.h1d{height:60.881433pt;}
.h1e{height:60.881967pt;}
.h1b{height:60.895833pt;}
.h21{height:60.898500pt;}
.h1c{height:60.911833pt;}
.h1f{height:60.924100pt;}
.h17{height:63.902464pt;}
.he{height:64.983918pt;}
.h14{height:65.001667pt;}
.h23{height:65.408000pt;}
.h22{height:70.656000pt;}
.hc{height:70.880781pt;}
.h16{height:76.682957pt;}
.h4{height:81.093750pt;}
.h7{height:84.166667pt;}
.h10{height:97.312500pt;}
.h18{height:115.024043pt;}
.h3{height:126.250000pt;}
.hb{height:158.807211pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:82.041333pt;}
.w3{width:130.325333pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:36.370000pt;}
.x66{left:49.133867pt;}
.x18{left:51.026000pt;}
.x6c{left:54.173200pt;}
.x79{left:66.771600pt;}
.x47{left:68.031467pt;}
.x44{left:70.551200pt;}
.x63{left:74.330667pt;}
.x11{left:75.590533pt;}
.x6e{left:76.538667pt;}
.x24{left:80.000000pt;}
.x72{left:80.944933pt;}
.x67{left:86.925867pt;}
.x75{left:89.445600pt;}
.x6d{left:91.965200pt;}
.x78{left:94.015733pt;}
.x62{left:104.566933pt;}
.x48{left:105.823467pt;}
.x5e{left:107.456933pt;}
.x60{left:108.483600pt;}
.x5c{left:110.854267pt;}
.x64{left:112.122667pt;}
.x27{left:113.382533pt;}
.x5a{left:114.886267pt;}
.x2b{left:116.274933pt;}
.x5f{left:117.816933pt;}
.x5b{left:119.160933pt;}
.x5d{left:123.062267pt;}
.x58{left:127.952933pt;}
.x59{left:135.960933pt;}
.x61{left:144.640933pt;}
.x57{left:171.143733pt;}
.x2e{left:188.890146pt;}
.x2d{left:198.853200pt;}
.x56{left:204.743733pt;}
.x3a{left:208.719067pt;}
.x1e{left:236.073136pt;}
.x3b{left:247.190781pt;}
.x32{left:248.447406pt;}
.x31{left:254.724781pt;}
.x1d{left:260.691261pt;}
.x7b{left:265.826800pt;}
.x1b{left:272.767695pt;}
.x1c{left:276.408831pt;}
.x2{left:281.259867pt;}
.x2c{left:299.057067pt;}
.x39{left:301.609067pt;}
.x1a{left:323.318800pt;}
.x1f{left:364.214133pt;}
.x10{left:369.259867pt;}
.x3{left:382.226933pt;}
.x13{left:383.141333pt;}
.x68{left:391.181867pt;}
.x26{left:394.320000pt;}
.x3e{left:399.023600pt;}
.x6b{left:408.409467pt;}
.x45{left:409.449733pt;}
.x6f{left:410.390533pt;}
.x20{left:411.295067pt;}
.xb{left:416.392667pt;}
.x73{left:420.288933pt;}
.x28{left:424.566933pt;}
.xe{left:428.904667pt;}
.x25{left:432.128000pt;}
.x7a{left:433.425333pt;}
.x3f{left:436.812800pt;}
.x76{left:440.440933pt;}
.x19{left:443.766800pt;}
.x46{left:447.241733pt;}
.x70{left:448.182533pt;}
.x49{left:449.133867pt;}
.x69{left:454.977733pt;}
.x74{left:458.080933pt;}
.x3c{left:470.180860pt;}
.x16{left:471.265200pt;}
.x7{left:472.890667pt;}
.xf{left:474.472667pt;}
.xd{left:490.568667pt;}
.x14{left:492.349200pt;}
.x4{left:494.071200pt;}
.x12{left:503.126800pt;}
.x15{left:518.773200pt;}
.x6{left:519.930667pt;}
.x8{left:521.634667pt;}
.x5{left:523.026667pt;}
.xc{left:524.120667pt;}
.x3d{left:551.884533pt;}
.x2a{left:552.923867pt;}
.x1{left:556.052533pt;}
.x9{left:557.091867pt;}
.x37{left:559.727600pt;}
.x33{left:560.831475pt;}
.x21{left:585.826800pt;}
.x34{left:600.058558pt;}
.x36{left:604.825196pt;}
.x35{left:630.038886pt;}
.x2f{left:635.951600pt;}
.x30{left:668.849214pt;}
.x38{left:671.383264pt;}
.x55{left:707.423867pt;}
.x4c{left:709.626533pt;}
.x51{left:714.535867pt;}
.x50{left:717.783867pt;}
.x54{left:719.183867pt;}
.x4b{left:721.386533pt;}
.x4d{left:722.767867pt;}
.x53{left:724.765200pt;}
.x22{left:730.708533pt;}
.x52{left:733.818533pt;}
.x4e{left:734.994533pt;}
.x4f{left:736.786533pt;}
.x40{left:742.604800pt;}
.x43{left:754.024800pt;}
.x6a{left:758.433733pt;}
.x71{left:759.370000pt;}
.x29{left:761.301067pt;}
.x23{left:768.500533pt;}
.x77{left:774.803200pt;}
.x41{left:780.412400pt;}
.x42{left:791.816800pt;}
.x4a{left:792.718800pt;}
.x17{left:797.100000pt;}
.x65{left:818.298667pt;}
}




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