
    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_a87af9c36fb4660f2eaf3c40.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_814d198a17e9b98e67cbdcce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_4a7130787f68c152d534bcaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_03966e06319cd5192422bcba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_4838003cd3cd5a77913dbb90.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_58c125beee9fb17bb6dccca3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_fc02ba99acd69e32cdfa139d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_a4103dbda5324410ffcc2d1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_d2c41c73e827cac00db7501b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_74beb6493ac244730ad12b44.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_dfb3f356c5225e350c4f02b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d0c4df621d8032aa610e0548.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_8d10b6de48d76a2bf9f47a6d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:34.560000px;}
.lsc{letter-spacing:-0.828000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.229800px;}
.ls8{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.043920px;}
.lsf{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.064200px;}
.ls17{letter-spacing:0.067800px;}
.ls21{letter-spacing:0.140400px;}
.lsa{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.149760px;}
.ls1f{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.256200px;}
.ls28{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.305400px;}
.ls1c{letter-spacing:0.321000px;}
.ls2d{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.336000px;}
.lse{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.396000px;}
.ls1e{letter-spacing:0.894240px;}
.ls2b{letter-spacing:6.065280px;}
.ls1a{letter-spacing:13.968000px;}
.ls2c{letter-spacing:34.128000px;}
.ls29{letter-spacing:39.185280px;}
.ls10{letter-spacing:44.784000px;}
.ls1d{letter-spacing:46.026720px;}
.ls24{letter-spacing:49.985280px;}
.ls23{letter-spacing:55.386720px;}
.ls15{letter-spacing:57.917280px;}
.ls1{letter-spacing:60.588000px;}
.ls12{letter-spacing:81.354720px;}
.ls18{letter-spacing:217.008000px;}
.ls19{letter-spacing:494.328000px;}
.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;}
}
.ws20{word-spacing:-95.760000px;}
.ws21{word-spacing:-72.000000px;}
.ws9{word-spacing:-66.240000px;}
.ws1d{word-spacing:-59.760000px;}
.ws2{word-spacing:-54.000000px;}
.ws10{word-spacing:-32.256000px;}
.ws1a{word-spacing:-24.408000px;}
.ws18{word-spacing:-21.962760px;}
.ws19{word-spacing:-21.674304px;}
.ws11{word-spacing:-21.641760px;}
.ws15{word-spacing:-19.106040px;}
.ws14{word-spacing:-19.038240px;}
.ws13{word-spacing:-18.808440px;}
.wsb{word-spacing:-18.720120px;}
.wsc{word-spacing:-18.305520px;}
.wsa{word-spacing:-17.586720px;}
.wsd{word-spacing:-16.632000px;}
.ws16{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.488000px;}
.ws0{word-spacing:-16.272000px;}
.wse{word-spacing:-16.271994px;}
.wsf{word-spacing:-16.200000px;}
.ws7{word-spacing:-16.128000px;}
.ws12{word-spacing:-15.912000px;}
.ws17{word-spacing:-15.768000px;}
.ws22{word-spacing:-15.226440px;}
.ws1f{word-spacing:-14.970240px;}
.ws1c{word-spacing:-13.646160px;}
.ws5{word-spacing:-13.569960px;}
.ws6{word-spacing:-13.505760px;}
.ws4{word-spacing:-13.461840px;}
.ws1b{word-spacing:-13.447440px;}
.ws3{word-spacing:-12.204000px;}
.ws1e{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-18.688800px;}
._f{margin-left:-15.432000px;}
._13{margin-left:-13.812240px;}
._10{margin-left:-11.904000px;}
._e{margin-left:-9.456000px;}
._d{margin-left:-8.376000px;}
._11{margin-left:-6.468000px;}
._12{margin-left:-5.268000px;}
._64{margin-left:-4.228320px;}
._6{margin-left:-3.218400px;}
._0{margin-left:-2.170800px;}
._2{margin-left:-1.013040px;}
._1{width:1.061280px;}
._3{width:2.122560px;}
._7{width:3.421440px;}
._2b{width:4.680000px;}
._2a{width:6.197040px;}
._27{width:7.304400px;}
._26{width:8.391600px;}
._25{width:9.432000px;}
._31{width:10.769040px;}
._4{width:11.970000px;}
._5{width:13.053360px;}
._29{width:14.127840px;}
._28{width:15.264000px;}
._9{width:17.987760px;}
._38{width:19.109520px;}
._34{width:20.304000px;}
._2e{width:21.774720px;}
._2d{width:22.968000px;}
._2f{width:24.282720px;}
._36{width:25.992000px;}
._35{width:28.008000px;}
._30{width:29.232000px;}
._39{width:30.277440px;}
._37{width:31.531440px;}
._33{width:33.304800px;}
._32{width:34.848000px;}
._60{width:36.216000px;}
._24{width:37.584000px;}
._3c{width:38.736000px;}
._3a{width:40.104000px;}
._3b{width:41.184000px;}
._44{width:42.192000px;}
._3d{width:45.144000px;}
._55{width:46.296000px;}
._43{width:47.376000px;}
._48{width:48.456000px;}
._2c{width:50.688000px;}
._51{width:53.280000px;}
._50{width:54.360000px;}
._61{width:55.800000px;}
._c{width:57.011040px;}
._6e{width:58.290000px;}
._5e{width:59.760000px;}
._5d{width:60.768000px;}
._58{width:63.720000px;}
._5f{width:64.728000px;}
._5a{width:66.777120px;}
._b{width:68.006880px;}
._62{width:69.153120px;}
._3f{width:70.632000px;}
._57{width:73.440000px;}
._56{width:74.448000px;}
._59{width:80.136000px;}
._4c{width:83.808000px;}
._4f{width:86.256000px;}
._a{width:89.938800px;}
._5c{width:91.080000px;}
._49{width:94.896000px;}
._6a{width:95.904000px;}
._66{width:101.664000px;}
._65{width:102.744000px;}
._42{width:106.776000px;}
._4a{width:111.312000px;}
._4b{width:112.320000px;}
._6d{width:113.904000px;}
._47{width:125.069040px;}
._45{width:126.072000px;}
._6c{width:142.500000px;}
._52{width:145.152000px;}
._46{width:149.184000px;}
._54{width:150.696000px;}
._53{width:179.856000px;}
._40{width:195.552000px;}
._69{width:204.192000px;}
._67{width:207.979440px;}
._3e{width:213.264000px;}
._68{width:220.608000px;}
._41{width:246.816000px;}
._4e{width:407.160000px;}
._16{width:445.103520px;}
._5b{width:452.232000px;}
._4d{width:483.408000px;}
._15{width:704.063760px;}
._63{width:842.538240px;}
._8{width:848.028000px;}
._1c{width:891.101040px;}
._6b{width:917.784000px;}
._6f{width:962.856000px;}
._1e{width:992.232240px;}
._23{width:1042.872000px;}
._22{width:1094.159760px;}
._1d{width:1286.183760px;}
._1b{width:1351.487760px;}
._20{width:1369.968000px;}
._1f{width:1406.472000px;}
._17{width:1488.552000px;}
._1a{width:1624.632000px;}
._19{width:1633.992000px;}
._21{width:1686.912000px;}
._18{width:1748.760000px;}
.fc9{color:rgb(8,0,218);}
.fc7{color:transparent;}
.fc4{color:rgb(17,85,204);}
.fc6{color:rgb(33,33,33);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(184,181,255);}
.fc8{color:rgb(255,0,0);}
.fc1{color:rgb(131,88,152);}
.fc0{color:rgb(82,55,95);}
.fse{font-size:2.880000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fsd{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fsc{font-size:108.000000px;}
.fs6{font-size:144.000000px;}
.fs3{font-size:156.240000px;}
.y15f{bottom:-13.425000px;}
.y151{bottom:-13.395000px;}
.y0{bottom:0.000000px;}
.y238{bottom:4.860000px;}
.y234{bottom:5.040000px;}
.y161{bottom:6.915000px;}
.y153{bottom:6.945000px;}
.y14f{bottom:7.095000px;}
.y165{bottom:8.715000px;}
.y13c{bottom:11.010000px;}
.y20{bottom:16.920000px;}
.y3d{bottom:18.540000px;}
.y3a{bottom:18.720000px;}
.y1d{bottom:20.160000px;}
.y2a{bottom:20.190000px;}
.y1cf{bottom:20.205000px;}
.y156{bottom:20.265000px;}
.y2d{bottom:20.340000px;}
.y9d{bottom:20.385000px;}
.y8f{bottom:20.520000px;}
.y20c{bottom:21.240000px;}
.y167{bottom:23.655000px;}
.y237{bottom:26.820000px;}
.y242{bottom:27.000000px;}
.y14b{bottom:30.525000px;}
.y154{bottom:33.405000px;}
.y15b{bottom:37.155000px;}
.y1f{bottom:38.880000px;}
.y3c{bottom:39.600000px;}
.y42{bottom:39.780000px;}
.y91{bottom:40.680000px;}
.y189{bottom:45.360000px;}
.y13d{bottom:45.390000px;}
.y190{bottom:45.405000px;}
.y1d5{bottom:45.540000px;}
.y1ca{bottom:45.570000px;}
.y1fd{bottom:45.585000px;}
.y20b{bottom:46.620000px;}
.y236{bottom:48.780000px;}
.y241{bottom:48.960000px;}
.y159{bottom:50.295000px;}
.y149{bottom:50.325000px;}
.y25{bottom:50.760000px;}
.y166{bottom:53.175000px;}
.y1fb{bottom:57.420000px;}
.y14d{bottom:59.685000px;}
.y40{bottom:60.660000px;}
.y163{bottom:67.935000px;}
.y1c7{bottom:70.560000px;}
.y18f{bottom:70.605000px;}
.y188{bottom:70.740000px;}
.y18a{bottom:70.770000px;}
.y1ce{bottom:70.785000px;}
.y8{bottom:71.100000px;}
.y3f{bottom:81.720000px;}
.y1fa{bottom:82.800000px;}
.y24{bottom:84.780000px;}
.y136{bottom:88.815000px;}
.y187{bottom:95.940000px;}
.y18e{bottom:95.985000px;}
.y1d4{bottom:96.120000px;}
.y1c9{bottom:96.150000px;}
.y7{bottom:106.776000px;}
.y1f9{bottom:108.000000px;}
.y23{bottom:118.800000px;}
.y1f8{bottom:133.200000px;}
.y6{bottom:138.816000px;}
.y19{bottom:139.896000px;}
.y22{bottom:152.865000px;}
.y5{bottom:155.370000px;}
.y1f7{bottom:158.580000px;}
.y4{bottom:172.290000px;}
.y18{bottom:173.010000px;}
.y67{bottom:192.450000px;}
.y37{bottom:192.990000px;}
.y2ee{bottom:193.710000px;}
.yc5{bottom:197.850000px;}
.y108{bottom:198.210000px;}
.y1af{bottom:200.910000px;}
.y2be{bottom:201.450000px;}
.y31e{bottom:201.990000px;}
.y3{bottom:202.350000px;}
.y147{bottom:202.530000px;}
.y2cf{bottom:204.330000px;}
.y86{bottom:205.050000px;}
.y1c2{bottom:205.230000px;}
.y17e{bottom:209.190000px;}
.y1d0{bottom:213.690000px;}
.yf0{bottom:214.050000px;}
.y120{bottom:215.670000px;}
.y9f{bottom:216.390000px;}
.y2e3{bottom:216.570000px;}
.y352{bottom:218.550000px;}
.y66{bottom:218.910000px;}
.y20e{bottom:219.090000px;}
.y193{bottom:222.690000px;}
.yc4{bottom:223.050000px;}
.y107{bottom:223.410000px;}
.y36{bottom:223.950000px;}
.y1ae{bottom:226.290000px;}
.y2bd{bottom:226.830000px;}
.y31d{bottom:227.190000px;}
.y17d{bottom:227.550000px;}
.y146{bottom:227.730000px;}
.y1fe{bottom:228.450000px;}
.y2a6{bottom:229.530000px;}
.y2ce{bottom:229.710000px;}
.y1c1{bottom:230.430000px;}
.y134{bottom:231.330000px;}
.y85{bottom:231.510000px;}
.yef{bottom:239.250000px;}
.y351{bottom:240.510000px;}
.y11f{bottom:240.870000px;}
.y2e2{bottom:241.770000px;}
.y2ed{bottom:244.290000px;}
.y235{bottom:244.830000px;}
.y65{bottom:245.370000px;}
.y17c{bottom:245.910000px;}
.y1e3{bottom:246.810000px;}
.y192{bottom:248.610000px;}
.y106{bottom:248.790000px;}
.y27f{bottom:249.150000px;}
.y2bc{bottom:252.030000px;}
.y338{bottom:252.390000px;}
.y31c{bottom:252.570000px;}
.y145{bottom:253.110000px;}
.y2a5{bottom:254.730000px;}
.y35{bottom:254.910000px;}
.y1c0{bottom:255.810000px;}
.y84{bottom:257.970000px;}
.y25c{bottom:261.930000px;}
.y350{bottom:262.470000px;}
.y1ad{bottom:263.550000px;}
.y133{bottom:263.730000px;}
.y17b{bottom:264.270000px;}
.y23e{bottom:264.450000px;}
.y2e1{bottom:266.970000px;}
.y26f{bottom:267.150000px;}
.yc3{bottom:267.510000px;}
.y9e{bottom:268.770000px;}
.y2ec{bottom:269.490000px;}
.y64{bottom:271.830000px;}
.y21d{bottom:272.910000px;}
.y337{bottom:274.350000px;}
.y135{bottom:274.860000px;}
.y191{bottom:275.430000px;}
.yee{bottom:276.690000px;}
.y2bb{bottom:277.230000px;}
.y31b{bottom:277.770000px;}
.y144{bottom:278.310000px;}
.y25b{bottom:279.030000px;}
.y2a4{bottom:280.110000px;}
.y13b{bottom:280.620000px;}
.y1bf{bottom:281.010000px;}
.y20d{bottom:281.550000px;}
.y1e2{bottom:284.070000px;}
.y83{bottom:284.430000px;}
.y11e{bottom:285.510000px;}
.y34{bottom:285.870000px;}
.y23d{bottom:289.830000px;}
.y2e0{bottom:292.350000px;}
.y18d{bottom:292.530000px;}
.y105{bottom:293.250000px;}
.y2eb{bottom:294.870000px;}
.y336{bottom:296.310000px;}
.y63{bottom:298.290000px;}
.y1ac{bottom:300.450000px;}
.y17a{bottom:300.630000px;}
.y301{bottom:302.070000px;}
.y2ba{bottom:302.610000px;}
.y31a{bottom:302.970000px;}
.y143{bottom:303.510000px;}
.y2a3{bottom:305.310000px;}
.y2cd{bottom:305.490000px;}
.y34f{bottom:306.390000px;}
.y13a{bottom:308.910000px;}
.y233{bottom:310.710000px;}
.y82{bottom:310.890000px;}
.yc2{bottom:313.950000px;}
.y23c{bottom:315.030000px;}
.y1fc{bottom:316.110000px;}
.y33{bottom:316.830000px;}
.y2df{bottom:317.550000px;}
.y26a{bottom:317.595000px;}
.y1be{bottom:318.270000px;}
.y179{bottom:318.810000px;}
.y2ea{bottom:320.070000px;}
.y9c{bottom:321.330000px;}
.y1ab{bottom:322.410000px;}
.y62{bottom:324.750000px;}
.y139{bottom:326.010000px;}
.y1cd{bottom:326.730000px;}
.y300{bottom:327.270000px;}
.y2b9{bottom:327.810000px;}
.y319{bottom:328.350000px;}
.y34e{bottom:328.530000px;}
.y2a2{bottom:330.690000px;}
.y11d{bottom:331.590000px;}
.y21c{bottom:335.550000px;}
.y27e{bottom:336.990000px;}
.y81{bottom:337.350000px;}
.y178{bottom:338.115000px;}
.yc1{bottom:339.195000px;}
.y104{bottom:339.555000px;}
.y23b{bottom:340.275000px;}
.y25a{bottom:341.715000px;}
.y2de{bottom:342.795000px;}
.y1bd{bottom:343.695000px;}
.y177{bottom:344.055000px;}
.y2e9{bottom:345.495000px;}
.y142{bottom:346.575000px;}
.y1e1{bottom:346.755000px;}
.y32{bottom:349.275000px;}
.y34d{bottom:350.535000px;}
.y61{bottom:351.255000px;}
.ydb{bottom:352.155000px;}
.y2ff{bottom:352.515000px;}
.y2a1{bottom:355.935000px;}
.y2cc{bottom:356.115000px;}
.y11c{bottom:357.015000px;}
.y1aa{bottom:359.535000px;}
.y269{bottom:359.715000px;}
.y176{bottom:360.075000px;}
.y335{bottom:362.235000px;}
.y80{bottom:363.855000px;}
.yc0{bottom:364.395000px;}
.y103{bottom:364.755000px;}
.y2b8{bottom:365.115000px;}
.y23a{bottom:365.655000px;}
.y31{bottom:365.835000px;}
.y2dd{bottom:368.175000px;}
.y1bc{bottom:368.895000px;}
.y2e8{bottom:370.695000px;}
.y318{bottom:371.595000px;}
.y1e0{bottom:371.955000px;}
.y34c{bottom:372.495000px;}
.y9b{bottom:373.935000px;}
.y60{bottom:377.715000px;}
.y2fe{bottom:377.895000px;}
.y2a0{bottom:381.135000px;}
.y2cb{bottom:381.315000px;}
.y1a9{bottom:381.495000px;}
.y268{bottom:381.675000px;}
.y11b{bottom:382.215000px;}
.y334{bottom:384.195000px;}
.y28d{bottom:389.055000px;}
.yda{bottom:389.415000px;}
.ybf{bottom:389.775000px;}
.y102{bottom:390.135000px;}
.y7f{bottom:390.315000px;}
.y2b7{bottom:390.495000px;}
.y141{bottom:392.655000px;}
.y2dc{bottom:393.375000px;}
.y34b{bottom:394.455000px;}
.y20a{bottom:394.635000px;}
.y317{bottom:396.795000px;}
.y1df{bottom:397.155000px;}
.y21b{bottom:398.055000px;}
.y27d{bottom:399.495000px;}
.y239{bottom:402.915000px;}
.y2fd{bottom:403.095000px;}
.y267{bottom:403.635000px;}
.y30{bottom:403.815000px;}
.y1f6{bottom:403.995000px;}
.y5f{bottom:404.175000px;}
.y18c{bottom:405.615000px;}
.y1bb{bottom:406.155000px;}
.y333{bottom:406.335000px;}
.y29f{bottom:406.515000px;}
.y11a{bottom:407.595000px;}
.y2e7{bottom:407.955000px;}
.y138{bottom:411.015000px;}
.y1cc{bottom:414.615000px;}
.ybe{bottom:414.975000px;}
.y101{bottom:415.335000px;}
.y2b6{bottom:415.695000px;}
.y34a{bottom:416.415000px;}
.y7e{bottom:416.955000px;}
.y175{bottom:418.215000px;}
.y1a8{bottom:418.395000px;}
.y2db{bottom:418.755000px;}
.y137{bottom:419.655000px;}
.y316{bottom:422.175000px;}
.y1de{bottom:422.535000px;}
.y140{bottom:424.875000px;}
.y266{bottom:425.595000px;}
.y9a{bottom:426.315000px;}
.yd9{bottom:426.675000px;}
.y2fc{bottom:428.295000px;}
.y5e{bottom:430.815000px;}
.y1ba{bottom:431.355000px;}
.y29e{bottom:431.715000px;}
.y2ca{bottom:431.895000px;}
.y28c{bottom:432.075000px;}
.y119{bottom:432.795000px;}
.y2e6{bottom:433.155000px;}
.y249{bottom:433.515000px;}
.y158{bottom:435.780000px;}
.y349{bottom:438.375000px;}
.ybd{bottom:440.175000px;}
.y1a7{bottom:440.355000px;}
.y100{bottom:440.535000px;}
.y2b5{bottom:440.895000px;}
.y2f{bottom:441.795000px;}
.y7d{bottom:443.415000px;}
.y2da{bottom:443.955000px;}
.y162{bottom:445.500000px;}
.y315{bottom:447.375000px;}
.y265{bottom:447.555000px;}
.y1dd{bottom:447.735000px;}
.y15a{bottom:448.920000px;}
.y28b{bottom:449.175000px;}
.y332{bottom:450.255000px;}
.y2fb{bottom:453.675000px;}
.y1b9{bottom:456.735000px;}
.y29d{bottom:456.915000px;}
.y2c9{bottom:457.095000px;}
.y5d{bottom:457.275000px;}
.y209{bottom:458.355000px;}
.y348{bottom:460.335000px;}
.y21a{bottom:460.695000px;}
.y232{bottom:463.215000px;}
.yd8{bottom:463.935000px;}
.ybc{bottom:465.555000px;}
.yff{bottom:465.915000px;}
.y2b4{bottom:466.275000px;}
.y259{bottom:466.815000px;}
.y15d{bottom:469.155000px;}
.y7c{bottom:469.875000px;}
.y118{bottom:470.055000px;}
.y2e5{bottom:470.415000px;}
.y331{bottom:472.215000px;}
.y314{bottom:472.755000px;}
.y248{bottom:477.435000px;}
.yed{bottom:477.615000px;}
.y99{bottom:478.875000px;}
.y160{bottom:479.520000px;}
.y2e{bottom:479.775000px;}
.y174{bottom:480.675000px;}
.y1b8{bottom:481.935000px;}
.y29c{bottom:482.295000px;}
.y5c{bottom:483.735000px;}
.y164{bottom:483.915000px;}
.y1dc{bottom:484.995000px;}
.y27c{bottom:487.335000px;}
.y15e{bottom:490.320000px;}
.ybb{bottom:490.755000px;}
.y2b3{bottom:491.475000px;}
.y264{bottom:493.275000px;}
.y18b{bottom:493.455000px;}
.y231{bottom:494.175000px;}
.y2c8{bottom:494.355000px;}
.y132{bottom:495.795000px;}
.y7b{bottom:496.335000px;}
.y313{bottom:497.955000px;}
.y15c{bottom:498.675000px;}
.yd7{bottom:501.195000px;}
.y1cb{bottom:502.455000px;}
.yec{bottom:502.815000px;}
.y1a6{bottom:502.995000px;}
.y2fa{bottom:504.255000px;}
.y173{bottom:506.055000px;}
.y2d9{bottom:506.415000px;}
.y117{bottom:506.955000px;}
.y29b{bottom:507.495000px;}
.y5b{bottom:510.195000px;}
.yfe{bottom:510.375000px;}
.y28a{bottom:511.635000px;}
.y208{bottom:515.055000px;}
.yba{bottom:516.135000px;}
.y2b2{bottom:516.675000px;}
.y2c{bottom:517.755000px;}
.y1b7{bottom:519.195000px;}
.y2c7{bottom:519.735000px;}
.y131{bottom:520.995000px;}
.ya9{bottom:522.615000px;}
.y219{bottom:523.155000px;}
.y347{bottom:526.215000px;}
.yeb{bottom:528.015000px;}
.y116{bottom:529.095000px;}
.y258{bottom:529.275000px;}
.y27b{bottom:529.455000px;}
.y172{bottom:531.255000px;}
.y98{bottom:531.435000px;}
.y2d8{bottom:531.795000px;}
.y230{bottom:532.335000px;}
.y29a{bottom:532.875000px;}
.y1db{bottom:535.575000px;}
.y5a{bottom:536.655000px;}
.y330{bottom:538.095000px;}
.y1a5{bottom:540.255000px;}
.y312{bottom:541.155000px;}
.yb9{bottom:541.335000px;}
.y2b1{bottom:542.055000px;}
.y247{bottom:543.315000px;}
.yd6{bottom:544.575000px;}
.y2c6{bottom:544.935000px;}
.y130{bottom:546.375000px;}
.y346{bottom:548.175000px;}
.y115{bottom:551.055000px;}
.yea{bottom:553.395000px;}
.y27a{bottom:554.115000px;}
.y22f{bottom:554.295000px;}
.y2f9{bottom:554.655000px;}
.y7a{bottom:555.195000px;}
.y2b{bottom:555.915000px;}
.y171{bottom:556.455000px;}
.yfd{bottom:556.635000px;}
.y2d7{bottom:556.995000px;}
.y299{bottom:558.075000px;}
.y263{bottom:559.515000px;}
.y32f{bottom:560.055000px;}
.y218{bottom:560.415000px;}
.y1da{bottom:560.775000px;}
.y59{bottom:563.115000px;}
.yb8{bottom:566.535000px;}
.y2e4{bottom:566.895000px;}
.yd5{bottom:569.775000px;}
.y2c5{bottom:570.135000px;}
.y12f{bottom:571.575000px;}
.y114{bottom:573.015000px;}
.y148{bottom:573.300000px;}
.y289{bottom:574.095000px;}
.ya8{bottom:575.175000px;}
.y22e{bottom:576.255000px;}
.y262{bottom:576.435000px;}
.y1a4{bottom:577.515000px;}
.ye9{bottom:578.595000px;}
.y13{bottom:578.955000px;}
.y1f5{bottom:579.675000px;}
.yfc{bottom:581.835000px;}
.y32e{bottom:582.015000px;}
.y2d6{bottom:582.375000px;}
.y97{bottom:583.815000px;}
.y257{bottom:585.975000px;}
.y2b0{bottom:587.955000px;}
.y14c{bottom:588.960000px;}
.y58{bottom:589.575000px;}
.y1c8{bottom:590.115000px;}
.y311{bottom:591.735000px;}
.y2f8{bottom:591.915000px;}
.y345{bottom:592.095000px;}
.y14a{bottom:593.100000px;}
.y29{bottom:593.895000px;}
.yd4{bottom:594.975000px;}
.y279{bottom:595.515000px;}
.y12e{bottom:596.775000px;}
.y22d{bottom:598.215000px;}
.y47{bottom:599.295000px;}
.ye8{bottom:603.795000px;}
.y298{bottom:603.975000px;}
.y1d9{bottom:606.705000px;}
.yfb{bottom:607.245000px;}
.y2d5{bottom:607.605000px;}
.y157{bottom:609.225000px;}
.y113{bottom:610.305000px;}
.yb7{bottom:611.025000px;}
.y79{bottom:612.285000px;}
.y344{bottom:614.085000px;}
.y1a3{bottom:614.445000px;}
.y207{bottom:615.525000px;}
.y57{bottom:616.065000px;}
.y12{bottom:616.245000px;}
.y152{bottom:617.040000px;}
.y310{bottom:617.145000px;}
.y278{bottom:617.505000px;}
.y170{bottom:619.125000px;}
.y22c{bottom:620.205000px;}
.yd3{bottom:620.385000px;}
.y2c4{bottom:620.745000px;}
.y256{bottom:621.825000px;}
.y26e{bottom:622.005000px;}
.y12d{bottom:622.185000px;}
.y14e{bottom:622.365000px;}
.y217{bottom:623.085000px;}
.y1ec{bottom:625.785000px;}
.y32d{bottom:625.965000px;}
.ya7{bottom:627.765000px;}
.y150{bottom:627.840000px;}
.y28{bottom:631.905000px;}
.y1b6{bottom:632.265000px;}
.yfa{bottom:632.445000px;}
.y2d4{bottom:632.805000px;}
.y2af{bottom:634.065000px;}
.y155{bottom:635.505000px;}
.y343{bottom:636.045000px;}
.y96{bottom:636.405000px;}
.y46{bottom:636.585000px;}
.y288{bottom:636.765000px;}
.y206{bottom:637.485000px;}
.y261{bottom:638.925000px;}
.y277{bottom:639.645000px;}
.ye7{bottom:641.085000px;}
.y22b{bottom:642.165000px;}
.y30f{bottom:642.345000px;}
.y56{bottom:642.525000px;}
.y186{bottom:643.785000px;}
.y16f{bottom:644.325000px;}
.y2c3{bottom:645.945000px;}
.y297{bottom:647.025000px;}
.y255{bottom:647.205000px;}
.y112{bottom:647.565000px;}
.y32c{bottom:647.925000px;}
.y11{bottom:652.965000px;}
.y45{bottom:654.585000px;}
.y78{bottom:654.945000px;}
.yb6{bottom:657.465000px;}
.yf9{bottom:657.645000px;}
.y2d3{bottom:658.185000px;}
.y1a2{bottom:658.365000px;}
.y2ae{bottom:659.265000px;}
.y12c{bottom:659.445000px;}
.y1eb{bottom:663.045000px;}
.yd2{bottom:663.585000px;}
.y22a{bottom:664.125000px;}
.ye6{bottom:666.465000px;}
.y30e{bottom:667.545000px;}
.y55{bottom:668.985000px;}
.y16e{bottom:669.525000px;}
.y32b{bottom:669.885000px;}
.y2c2{bottom:671.325000px;}
.y254{bottom:672.405000px;}
.y111{bottom:672.765000px;}
.y1d8{bottom:673.845000px;}
.y246{bottom:675.285000px;}
.y287{bottom:678.885000px;}
.ya6{bottom:680.145000px;}
.y1a1{bottom:680.325000px;}
.y77{bottom:681.585000px;}
.y276{bottom:682.485000px;}
.yb5{bottom:682.665000px;}
.y1b5{bottom:682.845000px;}
.y205{bottom:683.385000px;}
.y26d{bottom:684.465000px;}
.y12b{bottom:684.645000px;}
.y216{bottom:685.545000px;}
.y1f4{bottom:686.985000px;}
.y27{bottom:687.525000px;}
.y1ea{bottom:688.425000px;}
.y95{bottom:688.965000px;}
.y10{bottom:690.225000px;}
.ye5{bottom:691.665000px;}
.y32a{bottom:691.845000px;}
.y30d{bottom:692.925000px;}
.y16c{bottom:694.905000px;}
.y54{bottom:695.445000px;}
.y2c1{bottom:696.525000px;}
.y296{bottom:697.605000px;}
.y253{bottom:697.785000px;}
.y110{bottom:697.965000px;}
.y229{bottom:698.145000px;}
.y1d7{bottom:699.045000px;}
.y26{bottom:699.585000px;}
.y16d{bottom:700.845000px;}
.y260{bottom:701.565000px;}
.y342{bottom:702.105000px;}
.yf8{bottom:702.285000px;}
.y1c6{bottom:703.365000px;}
.y286{bottom:703.545000px;}
.y275{bottom:704.445000px;}
.yb4{bottom:707.865000px;}
.y76{bottom:708.045000px;}
.y2d2{bottom:708.585000px;}
.y44{bottom:709.305000px;}
.y2ad{bottom:709.845000px;}
.y12a{bottom:710.025000px;}
.y1e9{bottom:713.625000px;}
.y329{bottom:713.985000px;}
.yd1{bottom:714.165000px;}
.yf{bottom:715.605000px;}
.ye4{bottom:717.045000px;}
.y30c{bottom:718.125000px;}
.y228{bottom:720.105000px;}
.y53{bottom:721.905000px;}
.y295{bottom:722.805000px;}
.y285{bottom:724.065000px;}
.y1a0{bottom:724.425000px;}
.y274{bottom:726.405000px;}
.y1b4{bottom:727.305000px;}
.y1f3{bottom:728.565000px;}
.y16b{bottom:732.165000px;}
.ya5{bottom:732.705000px;}
.yb3{bottom:733.245000px;}
.y2f7{bottom:733.425000px;}
.y2d1{bottom:733.965000px;}
.y75{bottom:734.505000px;}
.y2ac{bottom:735.045000px;}
.y129{bottom:735.225000px;}
.y328{bottom:735.945000px;}
.y1d6{bottom:736.305000px;}
.y21{bottom:737.565000px;}
.yd0{bottom:739.365000px;}
.ye{bottom:740.805000px;}
.y245{bottom:741.165000px;}
.y94{bottom:741.345000px;}
.y227{bottom:742.065000px;}
.ye3{bottom:742.245000px;}
.y10f{bottom:742.425000px;}
.y30b{bottom:743.325000px;}
.y252{bottom:743.685000px;}
.y284{bottom:746.025000px;}
.y26c{bottom:747.105000px;}
.y215{bottom:748.005000px;}
.y294{bottom:748.185000px;}
.y52{bottom:748.365000px;}
.yf7{bottom:748.545000px;}
.y1f2{bottom:750.525000px;}
.y1e8{bottom:750.885000px;}
.y1d3{bottom:753.405000px;}
.y13f{bottom:754.305000px;}
.y185{bottom:756.825000px;}
.y16a{bottom:757.365000px;}
.y327{bottom:757.905000px;}
.yb2{bottom:758.445000px;}
.y2f6{bottom:758.625000px;}
.y2ab{bottom:760.425000px;}
.y74{bottom:760.965000px;}
.y19f{bottom:761.325000px;}
.y226{bottom:764.025000px;}
.y43{bottom:764.205000px;}
.ycf{bottom:764.745000px;}
.yd{bottom:766.185000px;}
.ye2{bottom:767.445000px;}
.y283{bottom:767.985000px;}
.y30a{bottom:768.705000px;}
.y290{bottom:772.125000px;}
.y2c0{bottom:772.305000px;}
.y128{bottom:772.485000px;}
.y293{bottom:773.385000px;}
.y1b3{bottom:773.565000px;}
.y51{bottom:774.825000px;}
.y13e{bottom:779.505000px;}
.y2d0{bottom:779.865000px;}
.y19e{bottom:783.285000px;}
.y2f5{bottom:783.825000px;}
.ya4{bottom:785.265000px;}
.y2aa{bottom:785.625000px;}
.yf6{bottom:785.805000px;}
.y225{bottom:785.985000px;}
.y73{bottom:787.425000px;}
.y1e7{bottom:788.145000px;}
.y341{bottom:789.945000px;}
.y10e{bottom:791.385000px;}
.y93{bottom:793.905000px;}
.y1f1{bottom:794.445000px;}
.y251{bottom:795.705000px;}
.y127{bottom:797.685000px;}
.y292{bottom:798.585000px;}
.y1b2{bottom:798.945000px;}
.y50{bottom:801.465000px;}
.y169{bottom:801.825000px;}
.yb1{bottom:802.905000px;}
.ye1{bottom:804.705000px;}
.y19d{bottom:805.245000px;}
.yc{bottom:805.965000px;}
.y244{bottom:807.045000px;}
.yce{bottom:807.945000px;}
.y2f4{bottom:809.205000px;}
.y214{bottom:810.645000px;}
.y2a9{bottom:810.825000px;}
.yf5{bottom:811.005000px;}
.y309{bottom:811.905000px;}
.y184{bottom:813.525000px;}
.y72{bottom:813.885000px;}
.y1c5{bottom:816.405000px;}
.y41{bottom:819.105000px;}
.y224{bottom:820.005000px;}
.y250{bottom:820.905000px;}
.y2bf{bottom:822.885000px;}
.y126{bottom:823.065000px;}
.y326{bottom:823.785000px;}
.y291{bottom:823.965000px;}
.y1b1{bottom:824.145000px;}
.y1e6{bottom:825.405000px;}
.y25f{bottom:826.665000px;}
.y19c{bottom:827.205000px;}
.y4f{bottom:827.925000px;}
.ye0{bottom:830.085000px;}
.y282{bottom:832.965000px;}
.y340{bottom:833.865000px;}
.y2f3{bottom:834.405000px;}
.y28f{bottom:834.765000px;}
.y26b{bottom:834.945000px;}
.yf4{bottom:836.205000px;}
.y273{bottom:837.105000px;}
.y308{bottom:837.285000px;}
.ya3{bottom:837.645000px;}
.y1f0{bottom:838.365000px;}
.y71{bottom:838.905000px;}
.yb{bottom:839.805000px;}
.y223{bottom:841.965000px;}
.y325{bottom:845.745000px;}
.y24f{bottom:846.285000px;}
.y92{bottom:846.465000px;}
.y168{bottom:848.085000px;}
.y125{bottom:848.265000px;}
.yb0{bottom:849.165000px;}
.y183{bottom:849.525000px;}
.ycd{bottom:852.405000px;}
.y4e{bottom:854.385000px;}
.y281{bottom:854.925000px;}
.ydf{bottom:855.285000px;}
.y33f{bottom:855.825000px;}
.y213{bottom:856.005000px;}
.y10d{bottom:858.525000px;}
.y272{bottom:859.065000px;}
.y2f2{bottom:859.785000px;}
.y8c{bottom:859.965000px;}
.y2a8{bottom:861.405000px;}
.yf3{bottom:861.585000px;}
.y307{bottom:862.485000px;}
.y1e5{bottom:862.665000px;}
.y70{bottom:863.745000px;}
.y222{bottom:863.925000px;}
.y19b{bottom:864.465000px;}
.y1d2{bottom:866.625000px;}
.y324{bottom:867.705000px;}
.y25e{bottom:868.785000px;}
.ya{bottom:870.765000px;}
.y24e{bottom:871.530000px;}
.y243{bottom:872.970000px;}
.y1c4{bottom:873.150000px;}
.y124{bottom:873.510000px;}
.y3e{bottom:874.050000px;}
.yaf{bottom:874.590000px;}
.y182{bottom:874.770000px;}
.y280{bottom:876.930000px;}
.y33e{bottom:877.830000px;}
.yde{bottom:880.710000px;}
.y4d{bottom:880.890000px;}
.y271{bottom:881.070000px;}
.y8b{bottom:883.770000px;}
.y1ef{bottom:884.310000px;}
.y2f1{bottom:885.030000px;}
.y221{bottom:885.930000px;}
.yf2{bottom:886.830000px;}
.y306{bottom:887.730000px;}
.y323{bottom:889.710000px;}
.y6f{bottom:890.250000px;}
.y204{bottom:892.770000px;}
.y24d{bottom:896.730000px;}
.ycc{bottom:898.710000px;}
.y90{bottom:898.890000px;}
.y212{bottom:899.070000px;}
.yae{bottom:899.790000px;}
.y181{bottom:899.970000px;}
.y28e{bottom:901.410000px;}
.y19a{bottom:901.770000px;}
.y270{bottom:903.030000px;}
.ydd{bottom:905.910000px;}
.y25d{bottom:906.090000px;}
.y4c{bottom:907.350000px;}
.y220{bottom:907.890000px;}
.y1e{bottom:908.250000px;}
.y1c3{bottom:908.970000px;}
.y10c{bottom:909.150000px;}
.y8a{bottom:910.230000px;}
.y322{bottom:911.670000px;}
.y2a7{bottom:912.030000px;}
.y305{bottom:913.110000px;}
.y6e{bottom:916.710000px;}
.y9{bottom:920.130000px;}
.y211{bottom:921.030000px;}
.y33d{bottom:921.750000px;}
.y24c{bottom:921.930000px;}
.ycb{bottom:924.090000px;}
.yad{bottom:924.990000px;}
.y1e4{bottom:925.350000px;}
.y199{bottom:927.150000px;}
.y21f{bottom:929.850000px;}
.yf1{bottom:932.730000px;}
.y321{bottom:933.630000px;}
.y4b{bottom:933.810000px;}
.y10b{bottom:934.350000px;}
.y203{bottom:934.890000px;}
.y180{bottom:937.230000px;}
.y304{bottom:938.310000px;}
.y240{bottom:938.850000px;}
.ya2{bottom:942.810000px;}
.y210{bottom:942.990000px;}
.y6d{bottom:943.350000px;}
.y33c{bottom:943.710000px;}
.y123{bottom:944.790000px;}
.y2f0{bottom:947.490000px;}
.y1ee{bottom:949.110000px;}
.yca{bottom:949.290000px;}
.yac{bottom:950.370000px;}
.ydc{bottom:951.810000px;}
.y198{bottom:952.350000px;}
.y320{bottom:955.590000px;}
.y10a{bottom:959.550000px;}
.y4a{bottom:960.270000px;}
.y17f{bottom:962.610000px;}
.y303{bottom:963.510000px;}
.y1c{bottom:964.950000px;}
.y33b{bottom:965.850000px;}
.y89{bottom:969.090000px;}
.y6c{bottom:969.810000px;}
.y3b{bottom:971.070000px;}
.y8e{bottom:971.610000px;}
.yc9{bottom:974.490000px;}
.yab{bottom:975.570000px;}
.y21e{bottom:975.750000px;}
.y2{bottom:977.370000px;}
.y197{bottom:977.550000px;}
.y1d1{bottom:979.710000px;}
.y202{bottom:980.070000px;}
.y24b{bottom:984.030000px;}
.y2ef{bottom:984.750000px;}
.y49{bottom:986.730000px;}
.y122{bottom:987.810000px;}
.ya1{bottom:995.190000px;}
.y6b{bottom:996.270000px;}
.y31f{bottom:999.510000px;}
.yc8{bottom:999.870000px;}
.y201{bottom:1002.030000px;}
.y196{bottom:1002.930000px;}
.y109{bottom:1004.010000px;}
.y23f{bottom:1004.910000px;}
.y1ed{bottom:1007.970000px;}
.y1{bottom:1009.770000px;}
.y121{bottom:1013.010000px;}
.y48{bottom:1013.190000px;}
.y88{bottom:1014.270000px;}
.y1b{bottom:1018.950000px;}
.y302{bottom:1022.550000px;}
.y6a{bottom:1022.730000px;}
.y200{bottom:1023.990000px;}
.yc7{bottom:1025.070000px;}
.y39{bottom:1025.790000px;}
.y195{bottom:1028.130000px;}
.y33a{bottom:1031.730000px;}
.yaa{bottom:1034.430000px;}
.y24a{bottom:1034.610000px;}
.y1b0{bottom:1038.390000px;}
.ya0{bottom:1047.750000px;}
.y87{bottom:1047.930000px;}
.y69{bottom:1049.190000px;}
.yc6{bottom:1050.450000px;}
.y339{bottom:1053.690000px;}
.y8d{bottom:1058.370000px;}
.y1a{bottom:1058.550000px;}
.y20f{bottom:1069.710000px;}
.y1ff{bottom:1069.890000px;}
.y194{bottom:1072.590000px;}
.y68{bottom:1075.650000px;}
.y38{bottom:1078.350000px;}
.y17{bottom:1112.910000px;}
.y16{bottom:1150.200000px;}
.y15{bottom:1187.460000px;}
.y14{bottom:1224.720000px;}
.h46{height:2.176875px;}
.h28{height:3.960000px;}
.h40{height:22.140000px;}
.h2a{height:25.560000px;}
.h12{height:33.120000px;}
.ha{height:36.861328px;}
.hb{height:37.260000px;}
.he{height:37.296000px;}
.hf{height:37.440000px;}
.h1c{height:37.476000px;}
.h1a{height:37.620000px;}
.h1d{height:37.656000px;}
.h42{height:43.920000px;}
.h23{height:44.936719px;}
.h4{height:47.980898px;}
.h18{height:48.418594px;}
.h31{height:50.585625px;}
.h11{height:53.709961px;}
.h14{height:54.000000px;}
.h17{height:54.180000px;}
.h16{height:54.216000px;}
.h1f{height:54.984375px;}
.hc{height:55.980000px;}
.h1b{height:57.780000px;}
.h3{height:59.439023px;}
.h8{height:59.682240px;}
.h13{height:61.189805px;}
.h34{height:62.460000px;}
.h3f{height:62.496000px;}
.h3e{height:62.640000px;}
.h3c{height:62.676000px;}
.h3d{height:63.720000px;}
.h41{height:65.880000px;}
.h10{height:65.884219px;}
.h44{height:65.916000px;}
.h43{height:66.060000px;}
.h24{height:67.500000px;}
.h2{height:71.613281px;}
.h29{height:71.756508px;}
.h26{height:73.260000px;}
.h5{height:73.722656px;}
.h30{height:77.342344px;}
.h21{height:79.496719px;}
.h37{height:79.620469px;}
.h27{height:81.900000px;}
.h1e{height:86.255508px;}
.h2d{height:86.760000px;}
.h39{height:87.660000px;}
.h35{height:87.840000px;}
.h33{height:87.876000px;}
.h2f{height:93.600000px;}
.h7{height:95.245664px;}
.h15{height:96.120000px;}
.h19{height:98.051133px;}
.h2b{height:98.198578px;}
.h22{height:106.173281px;}
.h2e{height:110.583984px;}
.h2c{height:112.680000px;}
.h25{height:112.860000px;}
.h32{height:113.040000px;}
.h36{height:113.076000px;}
.h3a{height:113.220000px;}
.h38{height:113.256000px;}
.h9{height:147.445312px;}
.h6{height:155.400820px;}
.hd{height:169.950000px;}
.h3b{height:175.680000px;}
.h20{height:190.080000px;}
.h45{height:531.255000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3c{width:4.860000px;}
.w3d{width:6.120000px;}
.w13{width:25.380000px;}
.w15{width:25.560000px;}
.w7{width:37.476000px;}
.w8{width:104.940000px;}
.w23{width:106.416000px;}
.w25{width:111.960000px;}
.w1d{width:121.536000px;}
.w22{width:121.716000px;}
.w32{width:124.560000px;}
.w2f{width:124.956000px;}
.w3e{width:127.080000px;}
.w2b{width:132.120000px;}
.w39{width:133.560000px;}
.wb{width:140.796000px;}
.w21{width:144.000000px;}
.w2e{width:146.160000px;}
.we{width:149.940000px;}
.w28{width:157.500000px;}
.w35{width:157.860000px;}
.w16{width:162.000000px;}
.w14{width:162.720000px;}
.w11{width:162.900000px;}
.w18{width:163.440000px;}
.w17{width:163.620000px;}
.w12{width:164.340000px;}
.w1e{width:168.870000px;}
.w1a{width:170.130000px;}
.w41{width:177.660000px;}
.w2c{width:182.730000px;}
.w31{width:191.370000px;}
.w1b{width:197.130000px;}
.w26{width:205.230000px;}
.w1f{width:208.110000px;}
.w20{width:223.950000px;}
.w3a{width:232.095000px;}
.w42{width:240.915000px;}
.w5{width:250.995000px;}
.w3{width:253.875000px;}
.w30{width:258.690000px;}
.w9{width:260.895000px;}
.w37{width:264.090000px;}
.w29{width:265.575000px;}
.w34{width:268.950000px;}
.w40{width:292.530000px;}
.w2a{width:299.190000px;}
.w36{width:300.495000px;}
.w3f{width:302.655000px;}
.w43{width:303.690000px;}
.wa{width:315.570000px;}
.w33{width:328.935000px;}
.w3b{width:340.230000px;}
.w24{width:351.210000px;}
.w1c{width:355.215000px;}
.w27{width:405.255000px;}
.w2d{width:407.595000px;}
.w4{width:479.595000px;}
.w6{width:483.015000px;}
.wd{width:508.320000px;}
.wc{width:550.185000px;}
.w10{width:647.820000px;}
.wf{width:648.000000px;}
.w38{width:711.465000px;}
.w19{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x63{left:1.080000px;}
.x62{left:4.500000px;}
.x8{left:8.136000px;}
.x17{left:10.830000px;}
.x26{left:12.855000px;}
.x2f{left:14.295000px;}
.x56{left:17.280000px;}
.x31{left:18.285000px;}
.x4b{left:21.960000px;}
.x49{left:23.040000px;}
.x3d{left:26.856000px;}
.x4f{left:28.620000px;}
.x4d{left:30.600000px;}
.x24{left:34.590000px;}
.x5c{left:36.720000px;}
.x6a{left:37.980000px;}
.x28{left:39.855000px;}
.x58{left:41.220000px;}
.x22{left:43.050000px;}
.x60{left:45.000000px;}
.x47{left:46.440000px;}
.x37{left:51.156000px;}
.x51{left:53.280000px;}
.x29{left:58.755000px;}
.x6f{left:62.145000px;}
.x3f{left:63.180000px;}
.x5f{left:70.740000px;}
.x65{left:72.945000px;}
.x54{left:73.980000px;}
.x39{left:77.445000px;}
.x2{left:84.959987px;}
.x44{left:86.975987px;}
.x12{left:88.415987px;}
.x13{left:90.215987px;}
.xf{left:91.835987px;}
.x6c{left:93.105000px;}
.x3b{left:100.110000px;}
.x67{left:106.380000px;}
.xb{left:111.995987px;}
.x46{left:114.875987px;}
.x20{left:122.220000px;}
.xc{left:124.056000px;}
.x21{left:126.540000px;}
.x45{left:128.375987px;}
.x3{left:138.095987px;}
.x42{left:140.975987px;}
.x33{left:144.330000px;}
.x4{left:147.095987px;}
.x6{left:150.329987px;}
.x43{left:153.029987px;}
.x71{left:155.369987px;}
.x23{left:163.469987px;}
.x3c{left:165.989987px;}
.x2e{left:187.049987px;}
.x16{left:192.240000px;}
.x4e{left:199.830000px;}
.x3e{left:206.490000px;}
.x18{left:209.009987px;}
.x5d{left:212.430000px;}
.x6b{left:214.950000px;}
.x55{left:219.990000px;}
.x64{left:222.510000px;}
.x10{left:225.750000px;}
.x1f{left:227.549987px;}
.xd{left:229.710000px;}
.x48{left:231.870000px;}
.x15{left:232.949987px;}
.x59{left:236.190000px;}
.x52{left:245.370000px;}
.x38{left:255.090000px;}
.x6e{left:265.530000px;}
.x1b{left:275.220000px;}
.x1a{left:286.094987px;}
.x36{left:301.034987px;}
.x25{left:309.960000px;}
.xa{left:337.575000px;}
.x9{left:340.455000px;}
.x4a{left:353.595000px;}
.x5a{left:361.155000px;}
.x27{left:364.860000px;}
.x40{left:375.375000px;}
.x19{left:380.774987px;}
.x30{left:389.234987px;}
.x57{left:402.735000px;}
.x50{left:405.075000px;}
.x1c{left:446.940000px;}
.x3a{left:452.415000px;}
.x66{left:454.605000px;}
.x1d{left:457.844987px;}
.x4c{left:460.005000px;}
.xe{left:491.325000px;}
.x70{left:506.445000px;}
.x53{left:510.945000px;}
.x6d{left:517.605000px;}
.x5e{left:541.365000px;}
.x61{left:546.225000px;}
.x2a{left:548.100000px;}
.x41{left:583.485000px;}
.x2b{left:602.820000px;}
.x5b{left:619.845000px;}
.x32{left:622.364987px;}
.x2c{left:630.284987px;}
.x14{left:700.169987px;}
.x2d{left:723.749987px;}
.x5{left:745.709987px;}
.x1{left:757.409987px;}
.x1e{left:770.189987px;}
.x34{left:779.009973px;}
.x35{left:785.129987px;}
.x68{left:799.350000px;}
.x11{left:802.949987px;}
.x69{left:804.210000px;}
.x7{left:811.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.720000pt;}
.lsc{letter-spacing:-0.736000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.204267pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.039040pt;}
.lsf{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.057067pt;}
.ls17{letter-spacing:0.060267pt;}
.ls21{letter-spacing:0.124800pt;}
.lsa{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.133120pt;}
.ls1f{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.227733pt;}
.ls28{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1c{letter-spacing:0.285333pt;}
.ls2d{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.352000pt;}
.ls1e{letter-spacing:0.794880pt;}
.ls2b{letter-spacing:5.391360pt;}
.ls1a{letter-spacing:12.416000pt;}
.ls2c{letter-spacing:30.336000pt;}
.ls29{letter-spacing:34.831360pt;}
.ls10{letter-spacing:39.808000pt;}
.ls1d{letter-spacing:40.912640pt;}
.ls24{letter-spacing:44.431360pt;}
.ls23{letter-spacing:49.232640pt;}
.ls15{letter-spacing:51.482027pt;}
.ls1{letter-spacing:53.856000pt;}
.ls12{letter-spacing:72.315307pt;}
.ls18{letter-spacing:192.896000pt;}
.ls19{letter-spacing:439.402667pt;}
.ws20{word-spacing:-85.120000pt;}
.ws21{word-spacing:-64.000000pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1d{word-spacing:-53.120000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws10{word-spacing:-28.672000pt;}
.ws1a{word-spacing:-21.696000pt;}
.ws18{word-spacing:-19.522453pt;}
.ws19{word-spacing:-19.266048pt;}
.ws11{word-spacing:-19.237120pt;}
.ws15{word-spacing:-16.983147pt;}
.ws14{word-spacing:-16.922880pt;}
.ws13{word-spacing:-16.718613pt;}
.wsb{word-spacing:-16.640107pt;}
.wsc{word-spacing:-16.271573pt;}
.wsa{word-spacing:-15.632640pt;}
.wsd{word-spacing:-14.784000pt;}
.ws16{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.464000pt;}
.wse{word-spacing:-14.463995pt;}
.wsf{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.336000pt;}
.ws12{word-spacing:-14.144000pt;}
.ws17{word-spacing:-14.016000pt;}
.ws22{word-spacing:-13.534613pt;}
.ws1f{word-spacing:-13.306880pt;}
.ws1c{word-spacing:-12.129920pt;}
.ws5{word-spacing:-12.062187pt;}
.ws6{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.966080pt;}
.ws1b{word-spacing:-11.953280pt;}
.ws3{word-spacing:-10.848000pt;}
.ws1e{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-16.612267pt;}
._f{margin-left:-13.717333pt;}
._13{margin-left:-12.277547pt;}
._10{margin-left:-10.581333pt;}
._e{margin-left:-8.405333pt;}
._d{margin-left:-7.445333pt;}
._11{margin-left:-5.749333pt;}
._12{margin-left:-4.682667pt;}
._64{margin-left:-3.758507pt;}
._6{margin-left:-2.860800pt;}
._0{margin-left:-1.929600pt;}
._2{margin-left:-0.900480pt;}
._1{width:0.943360pt;}
._3{width:1.886720pt;}
._7{width:3.041280pt;}
._2b{width:4.160000pt;}
._2a{width:5.508480pt;}
._27{width:6.492800pt;}
._26{width:7.459200pt;}
._25{width:8.384000pt;}
._31{width:9.572480pt;}
._4{width:10.640000pt;}
._5{width:11.602987pt;}
._29{width:12.558080pt;}
._28{width:13.568000pt;}
._9{width:15.989120pt;}
._38{width:16.986240pt;}
._34{width:18.048000pt;}
._2e{width:19.355307pt;}
._2d{width:20.416000pt;}
._2f{width:21.584640pt;}
._36{width:23.104000pt;}
._35{width:24.896000pt;}
._30{width:25.984000pt;}
._39{width:26.913280pt;}
._37{width:28.027947pt;}
._33{width:29.604267pt;}
._32{width:30.976000pt;}
._60{width:32.192000pt;}
._24{width:33.408000pt;}
._3c{width:34.432000pt;}
._3a{width:35.648000pt;}
._3b{width:36.608000pt;}
._44{width:37.504000pt;}
._3d{width:40.128000pt;}
._55{width:41.152000pt;}
._43{width:42.112000pt;}
._48{width:43.072000pt;}
._2c{width:45.056000pt;}
._51{width:47.360000pt;}
._50{width:48.320000pt;}
._61{width:49.600000pt;}
._c{width:50.676480pt;}
._6e{width:51.813333pt;}
._5e{width:53.120000pt;}
._5d{width:54.016000pt;}
._58{width:56.640000pt;}
._5f{width:57.536000pt;}
._5a{width:59.357440pt;}
._b{width:60.450560pt;}
._62{width:61.469440pt;}
._3f{width:62.784000pt;}
._57{width:65.280000pt;}
._56{width:66.176000pt;}
._59{width:71.232000pt;}
._4c{width:74.496000pt;}
._4f{width:76.672000pt;}
._a{width:79.945600pt;}
._5c{width:80.960000pt;}
._49{width:84.352000pt;}
._6a{width:85.248000pt;}
._66{width:90.368000pt;}
._65{width:91.328000pt;}
._42{width:94.912000pt;}
._4a{width:98.944000pt;}
._4b{width:99.840000pt;}
._6d{width:101.248000pt;}
._47{width:111.172480pt;}
._45{width:112.064000pt;}
._6c{width:126.666667pt;}
._52{width:129.024000pt;}
._46{width:132.608000pt;}
._54{width:133.952000pt;}
._53{width:159.872000pt;}
._40{width:173.824000pt;}
._69{width:181.504000pt;}
._67{width:184.870613pt;}
._3e{width:189.568000pt;}
._68{width:196.096000pt;}
._41{width:219.392000pt;}
._4e{width:361.920000pt;}
._16{width:395.647573pt;}
._5b{width:401.984000pt;}
._4d{width:429.696000pt;}
._15{width:625.834453pt;}
._63{width:748.922880pt;}
._8{width:753.802667pt;}
._1c{width:792.089813pt;}
._6b{width:815.808000pt;}
._6f{width:855.872000pt;}
._1e{width:881.984213pt;}
._23{width:926.997333pt;}
._22{width:972.586453pt;}
._1d{width:1143.274453pt;}
._1b{width:1201.322453pt;}
._20{width:1217.749333pt;}
._1f{width:1250.197333pt;}
._17{width:1323.157333pt;}
._1a{width:1444.117333pt;}
._19{width:1452.437333pt;}
._21{width:1499.477333pt;}
._18{width:1554.453333pt;}
.fse{font-size:2.560000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fsd{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fsc{font-size:96.000000pt;}
.fs6{font-size:128.000000pt;}
.fs3{font-size:138.880000pt;}
.y15f{bottom:-11.933333pt;}
.y151{bottom:-11.906667pt;}
.y0{bottom:0.000000pt;}
.y238{bottom:4.320000pt;}
.y234{bottom:4.480000pt;}
.y161{bottom:6.146667pt;}
.y153{bottom:6.173333pt;}
.y14f{bottom:6.306667pt;}
.y165{bottom:7.746667pt;}
.y13c{bottom:9.786667pt;}
.y20{bottom:15.040000pt;}
.y3d{bottom:16.480000pt;}
.y3a{bottom:16.640000pt;}
.y1d{bottom:17.920000pt;}
.y2a{bottom:17.946667pt;}
.y1cf{bottom:17.960000pt;}
.y156{bottom:18.013333pt;}
.y2d{bottom:18.080000pt;}
.y9d{bottom:18.120000pt;}
.y8f{bottom:18.240000pt;}
.y20c{bottom:18.880000pt;}
.y167{bottom:21.026667pt;}
.y237{bottom:23.840000pt;}
.y242{bottom:24.000000pt;}
.y14b{bottom:27.133333pt;}
.y154{bottom:29.693333pt;}
.y15b{bottom:33.026667pt;}
.y1f{bottom:34.560000pt;}
.y3c{bottom:35.200000pt;}
.y42{bottom:35.360000pt;}
.y91{bottom:36.160000pt;}
.y189{bottom:40.320000pt;}
.y13d{bottom:40.346667pt;}
.y190{bottom:40.360000pt;}
.y1d5{bottom:40.480000pt;}
.y1ca{bottom:40.506667pt;}
.y1fd{bottom:40.520000pt;}
.y20b{bottom:41.440000pt;}
.y236{bottom:43.360000pt;}
.y241{bottom:43.520000pt;}
.y159{bottom:44.706667pt;}
.y149{bottom:44.733333pt;}
.y25{bottom:45.120000pt;}
.y166{bottom:47.266667pt;}
.y1fb{bottom:51.040000pt;}
.y14d{bottom:53.053333pt;}
.y40{bottom:53.920000pt;}
.y163{bottom:60.386667pt;}
.y1c7{bottom:62.720000pt;}
.y18f{bottom:62.760000pt;}
.y188{bottom:62.880000pt;}
.y18a{bottom:62.906667pt;}
.y1ce{bottom:62.920000pt;}
.y8{bottom:63.200000pt;}
.y3f{bottom:72.640000pt;}
.y1fa{bottom:73.600000pt;}
.y24{bottom:75.360000pt;}
.y136{bottom:78.946667pt;}
.y187{bottom:85.280000pt;}
.y18e{bottom:85.320000pt;}
.y1d4{bottom:85.440000pt;}
.y1c9{bottom:85.466667pt;}
.y7{bottom:94.912000pt;}
.y1f9{bottom:96.000000pt;}
.y23{bottom:105.600000pt;}
.y1f8{bottom:118.400000pt;}
.y6{bottom:123.392000pt;}
.y19{bottom:124.352000pt;}
.y22{bottom:135.880000pt;}
.y5{bottom:138.106667pt;}
.y1f7{bottom:140.960000pt;}
.y4{bottom:153.146667pt;}
.y18{bottom:153.786667pt;}
.y67{bottom:171.066667pt;}
.y37{bottom:171.546667pt;}
.y2ee{bottom:172.186667pt;}
.yc5{bottom:175.866667pt;}
.y108{bottom:176.186667pt;}
.y1af{bottom:178.586667pt;}
.y2be{bottom:179.066667pt;}
.y31e{bottom:179.546667pt;}
.y3{bottom:179.866667pt;}
.y147{bottom:180.026667pt;}
.y2cf{bottom:181.626667pt;}
.y86{bottom:182.266667pt;}
.y1c2{bottom:182.426667pt;}
.y17e{bottom:185.946667pt;}
.y1d0{bottom:189.946667pt;}
.yf0{bottom:190.266667pt;}
.y120{bottom:191.706667pt;}
.y9f{bottom:192.346667pt;}
.y2e3{bottom:192.506667pt;}
.y352{bottom:194.266667pt;}
.y66{bottom:194.586667pt;}
.y20e{bottom:194.746667pt;}
.y193{bottom:197.946667pt;}
.yc4{bottom:198.266667pt;}
.y107{bottom:198.586667pt;}
.y36{bottom:199.066667pt;}
.y1ae{bottom:201.146667pt;}
.y2bd{bottom:201.626667pt;}
.y31d{bottom:201.946667pt;}
.y17d{bottom:202.266667pt;}
.y146{bottom:202.426667pt;}
.y1fe{bottom:203.066667pt;}
.y2a6{bottom:204.026667pt;}
.y2ce{bottom:204.186667pt;}
.y1c1{bottom:204.826667pt;}
.y134{bottom:205.626667pt;}
.y85{bottom:205.786667pt;}
.yef{bottom:212.666667pt;}
.y351{bottom:213.786667pt;}
.y11f{bottom:214.106667pt;}
.y2e2{bottom:214.906667pt;}
.y2ed{bottom:217.146667pt;}
.y235{bottom:217.626667pt;}
.y65{bottom:218.106667pt;}
.y17c{bottom:218.586667pt;}
.y1e3{bottom:219.386667pt;}
.y192{bottom:220.986667pt;}
.y106{bottom:221.146667pt;}
.y27f{bottom:221.466667pt;}
.y2bc{bottom:224.026667pt;}
.y338{bottom:224.346667pt;}
.y31c{bottom:224.506667pt;}
.y145{bottom:224.986667pt;}
.y2a5{bottom:226.426667pt;}
.y35{bottom:226.586667pt;}
.y1c0{bottom:227.386667pt;}
.y84{bottom:229.306667pt;}
.y25c{bottom:232.826667pt;}
.y350{bottom:233.306667pt;}
.y1ad{bottom:234.266667pt;}
.y133{bottom:234.426667pt;}
.y17b{bottom:234.906667pt;}
.y23e{bottom:235.066667pt;}
.y2e1{bottom:237.306667pt;}
.y26f{bottom:237.466667pt;}
.yc3{bottom:237.786667pt;}
.y9e{bottom:238.906667pt;}
.y2ec{bottom:239.546667pt;}
.y64{bottom:241.626667pt;}
.y21d{bottom:242.586667pt;}
.y337{bottom:243.866667pt;}
.y135{bottom:244.320000pt;}
.y191{bottom:244.826667pt;}
.yee{bottom:245.946667pt;}
.y2bb{bottom:246.426667pt;}
.y31b{bottom:246.906667pt;}
.y144{bottom:247.386667pt;}
.y25b{bottom:248.026667pt;}
.y2a4{bottom:248.986667pt;}
.y13b{bottom:249.440000pt;}
.y1bf{bottom:249.786667pt;}
.y20d{bottom:250.266667pt;}
.y1e2{bottom:252.506667pt;}
.y83{bottom:252.826667pt;}
.y11e{bottom:253.786667pt;}
.y34{bottom:254.106667pt;}
.y23d{bottom:257.626667pt;}
.y2e0{bottom:259.866667pt;}
.y18d{bottom:260.026667pt;}
.y105{bottom:260.666667pt;}
.y2eb{bottom:262.106667pt;}
.y336{bottom:263.386667pt;}
.y63{bottom:265.146667pt;}
.y1ac{bottom:267.066667pt;}
.y17a{bottom:267.226667pt;}
.y301{bottom:268.506667pt;}
.y2ba{bottom:268.986667pt;}
.y31a{bottom:269.306667pt;}
.y143{bottom:269.786667pt;}
.y2a3{bottom:271.386667pt;}
.y2cd{bottom:271.546667pt;}
.y34f{bottom:272.346667pt;}
.y13a{bottom:274.586667pt;}
.y233{bottom:276.186667pt;}
.y82{bottom:276.346667pt;}
.yc2{bottom:279.066667pt;}
.y23c{bottom:280.026667pt;}
.y1fc{bottom:280.986667pt;}
.y33{bottom:281.626667pt;}
.y2df{bottom:282.266667pt;}
.y26a{bottom:282.306667pt;}
.y1be{bottom:282.906667pt;}
.y179{bottom:283.386667pt;}
.y2ea{bottom:284.506667pt;}
.y9c{bottom:285.626667pt;}
.y1ab{bottom:286.586667pt;}
.y62{bottom:288.666667pt;}
.y139{bottom:289.786667pt;}
.y1cd{bottom:290.426667pt;}
.y300{bottom:290.906667pt;}
.y2b9{bottom:291.386667pt;}
.y319{bottom:291.866667pt;}
.y34e{bottom:292.026667pt;}
.y2a2{bottom:293.946667pt;}
.y11d{bottom:294.746667pt;}
.y21c{bottom:298.266667pt;}
.y27e{bottom:299.546667pt;}
.y81{bottom:299.866667pt;}
.y178{bottom:300.546667pt;}
.yc1{bottom:301.506667pt;}
.y104{bottom:301.826667pt;}
.y23b{bottom:302.466667pt;}
.y25a{bottom:303.746667pt;}
.y2de{bottom:304.706667pt;}
.y1bd{bottom:305.506667pt;}
.y177{bottom:305.826667pt;}
.y2e9{bottom:307.106667pt;}
.y142{bottom:308.066667pt;}
.y1e1{bottom:308.226667pt;}
.y32{bottom:310.466667pt;}
.y34d{bottom:311.586667pt;}
.y61{bottom:312.226667pt;}
.ydb{bottom:313.026667pt;}
.y2ff{bottom:313.346667pt;}
.y2a1{bottom:316.386667pt;}
.y2cc{bottom:316.546667pt;}
.y11c{bottom:317.346667pt;}
.y1aa{bottom:319.586667pt;}
.y269{bottom:319.746667pt;}
.y176{bottom:320.066667pt;}
.y335{bottom:321.986667pt;}
.y80{bottom:323.426667pt;}
.yc0{bottom:323.906667pt;}
.y103{bottom:324.226667pt;}
.y2b8{bottom:324.546667pt;}
.y23a{bottom:325.026667pt;}
.y31{bottom:325.186667pt;}
.y2dd{bottom:327.266667pt;}
.y1bc{bottom:327.906667pt;}
.y2e8{bottom:329.506667pt;}
.y318{bottom:330.306667pt;}
.y1e0{bottom:330.626667pt;}
.y34c{bottom:331.106667pt;}
.y9b{bottom:332.386667pt;}
.y60{bottom:335.746667pt;}
.y2fe{bottom:335.906667pt;}
.y2a0{bottom:338.786667pt;}
.y2cb{bottom:338.946667pt;}
.y1a9{bottom:339.106667pt;}
.y268{bottom:339.266667pt;}
.y11b{bottom:339.746667pt;}
.y334{bottom:341.506667pt;}
.y28d{bottom:345.826667pt;}
.yda{bottom:346.146667pt;}
.ybf{bottom:346.466667pt;}
.y102{bottom:346.786667pt;}
.y7f{bottom:346.946667pt;}
.y2b7{bottom:347.106667pt;}
.y141{bottom:349.026667pt;}
.y2dc{bottom:349.666667pt;}
.y34b{bottom:350.626667pt;}
.y20a{bottom:350.786667pt;}
.y317{bottom:352.706667pt;}
.y1df{bottom:353.026667pt;}
.y21b{bottom:353.826667pt;}
.y27d{bottom:355.106667pt;}
.y239{bottom:358.146667pt;}
.y2fd{bottom:358.306667pt;}
.y267{bottom:358.786667pt;}
.y30{bottom:358.946667pt;}
.y1f6{bottom:359.106667pt;}
.y5f{bottom:359.266667pt;}
.y18c{bottom:360.546667pt;}
.y1bb{bottom:361.026667pt;}
.y333{bottom:361.186667pt;}
.y29f{bottom:361.346667pt;}
.y11a{bottom:362.306667pt;}
.y2e7{bottom:362.626667pt;}
.y138{bottom:365.346667pt;}
.y1cc{bottom:368.546667pt;}
.ybe{bottom:368.866667pt;}
.y101{bottom:369.186667pt;}
.y2b6{bottom:369.506667pt;}
.y34a{bottom:370.146667pt;}
.y7e{bottom:370.626667pt;}
.y175{bottom:371.746667pt;}
.y1a8{bottom:371.906667pt;}
.y2db{bottom:372.226667pt;}
.y137{bottom:373.026667pt;}
.y316{bottom:375.266667pt;}
.y1de{bottom:375.586667pt;}
.y140{bottom:377.666667pt;}
.y266{bottom:378.306667pt;}
.y9a{bottom:378.946667pt;}
.yd9{bottom:379.266667pt;}
.y2fc{bottom:380.706667pt;}
.y5e{bottom:382.946667pt;}
.y1ba{bottom:383.426667pt;}
.y29e{bottom:383.746667pt;}
.y2ca{bottom:383.906667pt;}
.y28c{bottom:384.066667pt;}
.y119{bottom:384.706667pt;}
.y2e6{bottom:385.026667pt;}
.y249{bottom:385.346667pt;}
.y158{bottom:387.360000pt;}
.y349{bottom:389.666667pt;}
.ybd{bottom:391.266667pt;}
.y1a7{bottom:391.426667pt;}
.y100{bottom:391.586667pt;}
.y2b5{bottom:391.906667pt;}
.y2f{bottom:392.706667pt;}
.y7d{bottom:394.146667pt;}
.y2da{bottom:394.626667pt;}
.y162{bottom:396.000000pt;}
.y315{bottom:397.666667pt;}
.y265{bottom:397.826667pt;}
.y1dd{bottom:397.986667pt;}
.y15a{bottom:399.040000pt;}
.y28b{bottom:399.266667pt;}
.y332{bottom:400.226667pt;}
.y2fb{bottom:403.266667pt;}
.y1b9{bottom:405.986667pt;}
.y29d{bottom:406.146667pt;}
.y2c9{bottom:406.306667pt;}
.y5d{bottom:406.466667pt;}
.y209{bottom:407.426667pt;}
.y348{bottom:409.186667pt;}
.y21a{bottom:409.506667pt;}
.y232{bottom:411.746667pt;}
.yd8{bottom:412.386667pt;}
.ybc{bottom:413.826667pt;}
.yff{bottom:414.146667pt;}
.y2b4{bottom:414.466667pt;}
.y259{bottom:414.946667pt;}
.y15d{bottom:417.026667pt;}
.y7c{bottom:417.666667pt;}
.y118{bottom:417.826667pt;}
.y2e5{bottom:418.146667pt;}
.y331{bottom:419.746667pt;}
.y314{bottom:420.226667pt;}
.y248{bottom:424.386667pt;}
.yed{bottom:424.546667pt;}
.y99{bottom:425.666667pt;}
.y160{bottom:426.240000pt;}
.y2e{bottom:426.466667pt;}
.y174{bottom:427.266667pt;}
.y1b8{bottom:428.386667pt;}
.y29c{bottom:428.706667pt;}
.y5c{bottom:429.986667pt;}
.y164{bottom:430.146667pt;}
.y1dc{bottom:431.106667pt;}
.y27c{bottom:433.186667pt;}
.y15e{bottom:435.840000pt;}
.ybb{bottom:436.226667pt;}
.y2b3{bottom:436.866667pt;}
.y264{bottom:438.466667pt;}
.y18b{bottom:438.626667pt;}
.y231{bottom:439.266667pt;}
.y2c8{bottom:439.426667pt;}
.y132{bottom:440.706667pt;}
.y7b{bottom:441.186667pt;}
.y313{bottom:442.626667pt;}
.y15c{bottom:443.266667pt;}
.yd7{bottom:445.506667pt;}
.y1cb{bottom:446.626667pt;}
.yec{bottom:446.946667pt;}
.y1a6{bottom:447.106667pt;}
.y2fa{bottom:448.226667pt;}
.y173{bottom:449.826667pt;}
.y2d9{bottom:450.146667pt;}
.y117{bottom:450.626667pt;}
.y29b{bottom:451.106667pt;}
.y5b{bottom:453.506667pt;}
.yfe{bottom:453.666667pt;}
.y28a{bottom:454.786667pt;}
.y208{bottom:457.826667pt;}
.yba{bottom:458.786667pt;}
.y2b2{bottom:459.266667pt;}
.y2c{bottom:460.226667pt;}
.y1b7{bottom:461.506667pt;}
.y2c7{bottom:461.986667pt;}
.y131{bottom:463.106667pt;}
.ya9{bottom:464.546667pt;}
.y219{bottom:465.026667pt;}
.y347{bottom:467.746667pt;}
.yeb{bottom:469.346667pt;}
.y116{bottom:470.306667pt;}
.y258{bottom:470.466667pt;}
.y27b{bottom:470.626667pt;}
.y172{bottom:472.226667pt;}
.y98{bottom:472.386667pt;}
.y2d8{bottom:472.706667pt;}
.y230{bottom:473.186667pt;}
.y29a{bottom:473.666667pt;}
.y1db{bottom:476.066667pt;}
.y5a{bottom:477.026667pt;}
.y330{bottom:478.306667pt;}
.y1a5{bottom:480.226667pt;}
.y312{bottom:481.026667pt;}
.yb9{bottom:481.186667pt;}
.y2b1{bottom:481.826667pt;}
.y247{bottom:482.946667pt;}
.yd6{bottom:484.066667pt;}
.y2c6{bottom:484.386667pt;}
.y130{bottom:485.666667pt;}
.y346{bottom:487.266667pt;}
.y115{bottom:489.826667pt;}
.yea{bottom:491.906667pt;}
.y27a{bottom:492.546667pt;}
.y22f{bottom:492.706667pt;}
.y2f9{bottom:493.026667pt;}
.y7a{bottom:493.506667pt;}
.y2b{bottom:494.146667pt;}
.y171{bottom:494.626667pt;}
.yfd{bottom:494.786667pt;}
.y2d7{bottom:495.106667pt;}
.y299{bottom:496.066667pt;}
.y263{bottom:497.346667pt;}
.y32f{bottom:497.826667pt;}
.y218{bottom:498.146667pt;}
.y1da{bottom:498.466667pt;}
.y59{bottom:500.546667pt;}
.yb8{bottom:503.586667pt;}
.y2e4{bottom:503.906667pt;}
.yd5{bottom:506.466667pt;}
.y2c5{bottom:506.786667pt;}
.y12f{bottom:508.066667pt;}
.y114{bottom:509.346667pt;}
.y148{bottom:509.600000pt;}
.y289{bottom:510.306667pt;}
.ya8{bottom:511.266667pt;}
.y22e{bottom:512.226667pt;}
.y262{bottom:512.386667pt;}
.y1a4{bottom:513.346667pt;}
.ye9{bottom:514.306667pt;}
.y13{bottom:514.626667pt;}
.y1f5{bottom:515.266667pt;}
.yfc{bottom:517.186667pt;}
.y32e{bottom:517.346667pt;}
.y2d6{bottom:517.666667pt;}
.y97{bottom:518.946667pt;}
.y257{bottom:520.866667pt;}
.y2b0{bottom:522.626667pt;}
.y14c{bottom:523.520000pt;}
.y58{bottom:524.066667pt;}
.y1c8{bottom:524.546667pt;}
.y311{bottom:525.986667pt;}
.y2f8{bottom:526.146667pt;}
.y345{bottom:526.306667pt;}
.y14a{bottom:527.200000pt;}
.y29{bottom:527.906667pt;}
.yd4{bottom:528.866667pt;}
.y279{bottom:529.346667pt;}
.y12e{bottom:530.466667pt;}
.y22d{bottom:531.746667pt;}
.y47{bottom:532.706667pt;}
.ye8{bottom:536.706667pt;}
.y298{bottom:536.866667pt;}
.y1d9{bottom:539.293333pt;}
.yfb{bottom:539.773333pt;}
.y2d5{bottom:540.093333pt;}
.y157{bottom:541.533333pt;}
.y113{bottom:542.493333pt;}
.yb7{bottom:543.133333pt;}
.y79{bottom:544.253333pt;}
.y344{bottom:545.853333pt;}
.y1a3{bottom:546.173333pt;}
.y207{bottom:547.133333pt;}
.y57{bottom:547.613333pt;}
.y12{bottom:547.773333pt;}
.y152{bottom:548.480000pt;}
.y310{bottom:548.573333pt;}
.y278{bottom:548.893333pt;}
.y170{bottom:550.333333pt;}
.y22c{bottom:551.293333pt;}
.yd3{bottom:551.453333pt;}
.y2c4{bottom:551.773333pt;}
.y256{bottom:552.733333pt;}
.y26e{bottom:552.893333pt;}
.y12d{bottom:553.053333pt;}
.y14e{bottom:553.213333pt;}
.y217{bottom:553.853333pt;}
.y1ec{bottom:556.253333pt;}
.y32d{bottom:556.413333pt;}
.ya7{bottom:558.013333pt;}
.y150{bottom:558.080000pt;}
.y28{bottom:561.693333pt;}
.y1b6{bottom:562.013333pt;}
.yfa{bottom:562.173333pt;}
.y2d4{bottom:562.493333pt;}
.y2af{bottom:563.613333pt;}
.y155{bottom:564.893333pt;}
.y343{bottom:565.373333pt;}
.y96{bottom:565.693333pt;}
.y46{bottom:565.853333pt;}
.y288{bottom:566.013333pt;}
.y206{bottom:566.653333pt;}
.y261{bottom:567.933333pt;}
.y277{bottom:568.573333pt;}
.ye7{bottom:569.853333pt;}
.y22b{bottom:570.813333pt;}
.y30f{bottom:570.973333pt;}
.y56{bottom:571.133333pt;}
.y186{bottom:572.253333pt;}
.y16f{bottom:572.733333pt;}
.y2c3{bottom:574.173333pt;}
.y297{bottom:575.133333pt;}
.y255{bottom:575.293333pt;}
.y112{bottom:575.613333pt;}
.y32c{bottom:575.933333pt;}
.y11{bottom:580.413333pt;}
.y45{bottom:581.853333pt;}
.y78{bottom:582.173333pt;}
.yb6{bottom:584.413333pt;}
.yf9{bottom:584.573333pt;}
.y2d3{bottom:585.053333pt;}
.y1a2{bottom:585.213333pt;}
.y2ae{bottom:586.013333pt;}
.y12c{bottom:586.173333pt;}
.y1eb{bottom:589.373333pt;}
.yd2{bottom:589.853333pt;}
.y22a{bottom:590.333333pt;}
.ye6{bottom:592.413333pt;}
.y30e{bottom:593.373333pt;}
.y55{bottom:594.653333pt;}
.y16e{bottom:595.133333pt;}
.y32b{bottom:595.453333pt;}
.y2c2{bottom:596.733333pt;}
.y254{bottom:597.693333pt;}
.y111{bottom:598.013333pt;}
.y1d8{bottom:598.973333pt;}
.y246{bottom:600.253333pt;}
.y287{bottom:603.453333pt;}
.ya6{bottom:604.573333pt;}
.y1a1{bottom:604.733333pt;}
.y77{bottom:605.853333pt;}
.y276{bottom:606.653333pt;}
.yb5{bottom:606.813333pt;}
.y1b5{bottom:606.973333pt;}
.y205{bottom:607.453333pt;}
.y26d{bottom:608.413333pt;}
.y12b{bottom:608.573333pt;}
.y216{bottom:609.373333pt;}
.y1f4{bottom:610.653333pt;}
.y27{bottom:611.133333pt;}
.y1ea{bottom:611.933333pt;}
.y95{bottom:612.413333pt;}
.y10{bottom:613.533333pt;}
.ye5{bottom:614.813333pt;}
.y32a{bottom:614.973333pt;}
.y30d{bottom:615.933333pt;}
.y16c{bottom:617.693333pt;}
.y54{bottom:618.173333pt;}
.y2c1{bottom:619.133333pt;}
.y296{bottom:620.093333pt;}
.y253{bottom:620.253333pt;}
.y110{bottom:620.413333pt;}
.y229{bottom:620.573333pt;}
.y1d7{bottom:621.373333pt;}
.y26{bottom:621.853333pt;}
.y16d{bottom:622.973333pt;}
.y260{bottom:623.613333pt;}
.y342{bottom:624.093333pt;}
.yf8{bottom:624.253333pt;}
.y1c6{bottom:625.213333pt;}
.y286{bottom:625.373333pt;}
.y275{bottom:626.173333pt;}
.yb4{bottom:629.213333pt;}
.y76{bottom:629.373333pt;}
.y2d2{bottom:629.853333pt;}
.y44{bottom:630.493333pt;}
.y2ad{bottom:630.973333pt;}
.y12a{bottom:631.133333pt;}
.y1e9{bottom:634.333333pt;}
.y329{bottom:634.653333pt;}
.yd1{bottom:634.813333pt;}
.yf{bottom:636.093333pt;}
.ye4{bottom:637.373333pt;}
.y30c{bottom:638.333333pt;}
.y228{bottom:640.093333pt;}
.y53{bottom:641.693333pt;}
.y295{bottom:642.493333pt;}
.y285{bottom:643.613333pt;}
.y1a0{bottom:643.933333pt;}
.y274{bottom:645.693333pt;}
.y1b4{bottom:646.493333pt;}
.y1f3{bottom:647.613333pt;}
.y16b{bottom:650.813333pt;}
.ya5{bottom:651.293333pt;}
.yb3{bottom:651.773333pt;}
.y2f7{bottom:651.933333pt;}
.y2d1{bottom:652.413333pt;}
.y75{bottom:652.893333pt;}
.y2ac{bottom:653.373333pt;}
.y129{bottom:653.533333pt;}
.y328{bottom:654.173333pt;}
.y1d6{bottom:654.493333pt;}
.y21{bottom:655.613333pt;}
.yd0{bottom:657.213333pt;}
.ye{bottom:658.493333pt;}
.y245{bottom:658.813333pt;}
.y94{bottom:658.973333pt;}
.y227{bottom:659.613333pt;}
.ye3{bottom:659.773333pt;}
.y10f{bottom:659.933333pt;}
.y30b{bottom:660.733333pt;}
.y252{bottom:661.053333pt;}
.y284{bottom:663.133333pt;}
.y26c{bottom:664.093333pt;}
.y215{bottom:664.893333pt;}
.y294{bottom:665.053333pt;}
.y52{bottom:665.213333pt;}
.yf7{bottom:665.373333pt;}
.y1f2{bottom:667.133333pt;}
.y1e8{bottom:667.453333pt;}
.y1d3{bottom:669.693333pt;}
.y13f{bottom:670.493333pt;}
.y185{bottom:672.733333pt;}
.y16a{bottom:673.213333pt;}
.y327{bottom:673.693333pt;}
.yb2{bottom:674.173333pt;}
.y2f6{bottom:674.333333pt;}
.y2ab{bottom:675.933333pt;}
.y74{bottom:676.413333pt;}
.y19f{bottom:676.733333pt;}
.y226{bottom:679.133333pt;}
.y43{bottom:679.293333pt;}
.ycf{bottom:679.773333pt;}
.yd{bottom:681.053333pt;}
.ye2{bottom:682.173333pt;}
.y283{bottom:682.653333pt;}
.y30a{bottom:683.293333pt;}
.y290{bottom:686.333333pt;}
.y2c0{bottom:686.493333pt;}
.y128{bottom:686.653333pt;}
.y293{bottom:687.453333pt;}
.y1b3{bottom:687.613333pt;}
.y51{bottom:688.733333pt;}
.y13e{bottom:692.893333pt;}
.y2d0{bottom:693.213333pt;}
.y19e{bottom:696.253333pt;}
.y2f5{bottom:696.733333pt;}
.ya4{bottom:698.013333pt;}
.y2aa{bottom:698.333333pt;}
.yf6{bottom:698.493333pt;}
.y225{bottom:698.653333pt;}
.y73{bottom:699.933333pt;}
.y1e7{bottom:700.573333pt;}
.y341{bottom:702.173333pt;}
.y10e{bottom:703.453333pt;}
.y93{bottom:705.693333pt;}
.y1f1{bottom:706.173333pt;}
.y251{bottom:707.293333pt;}
.y127{bottom:709.053333pt;}
.y292{bottom:709.853333pt;}
.y1b2{bottom:710.173333pt;}
.y50{bottom:712.413333pt;}
.y169{bottom:712.733333pt;}
.yb1{bottom:713.693333pt;}
.ye1{bottom:715.293333pt;}
.y19d{bottom:715.773333pt;}
.yc{bottom:716.413333pt;}
.y244{bottom:717.373333pt;}
.yce{bottom:718.173333pt;}
.y2f4{bottom:719.293333pt;}
.y214{bottom:720.573333pt;}
.y2a9{bottom:720.733333pt;}
.yf5{bottom:720.893333pt;}
.y309{bottom:721.693333pt;}
.y184{bottom:723.133333pt;}
.y72{bottom:723.453333pt;}
.y1c5{bottom:725.693333pt;}
.y41{bottom:728.093333pt;}
.y224{bottom:728.893333pt;}
.y250{bottom:729.693333pt;}
.y2bf{bottom:731.453333pt;}
.y126{bottom:731.613333pt;}
.y326{bottom:732.253333pt;}
.y291{bottom:732.413333pt;}
.y1b1{bottom:732.573333pt;}
.y1e6{bottom:733.693333pt;}
.y25f{bottom:734.813333pt;}
.y19c{bottom:735.293333pt;}
.y4f{bottom:735.933333pt;}
.ye0{bottom:737.853333pt;}
.y282{bottom:740.413333pt;}
.y340{bottom:741.213333pt;}
.y2f3{bottom:741.693333pt;}
.y28f{bottom:742.013333pt;}
.y26b{bottom:742.173333pt;}
.yf4{bottom:743.293333pt;}
.y273{bottom:744.093333pt;}
.y308{bottom:744.253333pt;}
.ya3{bottom:744.573333pt;}
.y1f0{bottom:745.213333pt;}
.y71{bottom:745.693333pt;}
.yb{bottom:746.493333pt;}
.y223{bottom:748.413333pt;}
.y325{bottom:751.773333pt;}
.y24f{bottom:752.253333pt;}
.y92{bottom:752.413333pt;}
.y168{bottom:753.853333pt;}
.y125{bottom:754.013333pt;}
.yb0{bottom:754.813333pt;}
.y183{bottom:755.133333pt;}
.ycd{bottom:757.693333pt;}
.y4e{bottom:759.453333pt;}
.y281{bottom:759.933333pt;}
.ydf{bottom:760.253333pt;}
.y33f{bottom:760.733333pt;}
.y213{bottom:760.893333pt;}
.y10d{bottom:763.133333pt;}
.y272{bottom:763.613333pt;}
.y2f2{bottom:764.253333pt;}
.y8c{bottom:764.413333pt;}
.y2a8{bottom:765.693333pt;}
.yf3{bottom:765.853333pt;}
.y307{bottom:766.653333pt;}
.y1e5{bottom:766.813333pt;}
.y70{bottom:767.773333pt;}
.y222{bottom:767.933333pt;}
.y19b{bottom:768.413333pt;}
.y1d2{bottom:770.333333pt;}
.y324{bottom:771.293333pt;}
.y25e{bottom:772.253333pt;}
.ya{bottom:774.013333pt;}
.y24e{bottom:774.693333pt;}
.y243{bottom:775.973333pt;}
.y1c4{bottom:776.133333pt;}
.y124{bottom:776.453333pt;}
.y3e{bottom:776.933333pt;}
.yaf{bottom:777.413333pt;}
.y182{bottom:777.573333pt;}
.y280{bottom:779.493333pt;}
.y33e{bottom:780.293333pt;}
.yde{bottom:782.853333pt;}
.y4d{bottom:783.013333pt;}
.y271{bottom:783.173333pt;}
.y8b{bottom:785.573333pt;}
.y1ef{bottom:786.053333pt;}
.y2f1{bottom:786.693333pt;}
.y221{bottom:787.493333pt;}
.yf2{bottom:788.293333pt;}
.y306{bottom:789.093333pt;}
.y323{bottom:790.853333pt;}
.y6f{bottom:791.333333pt;}
.y204{bottom:793.573333pt;}
.y24d{bottom:797.093333pt;}
.ycc{bottom:798.853333pt;}
.y90{bottom:799.013333pt;}
.y212{bottom:799.173333pt;}
.yae{bottom:799.813333pt;}
.y181{bottom:799.973333pt;}
.y28e{bottom:801.253333pt;}
.y19a{bottom:801.573333pt;}
.y270{bottom:802.693333pt;}
.ydd{bottom:805.253333pt;}
.y25d{bottom:805.413333pt;}
.y4c{bottom:806.533333pt;}
.y220{bottom:807.013333pt;}
.y1e{bottom:807.333333pt;}
.y1c3{bottom:807.973333pt;}
.y10c{bottom:808.133333pt;}
.y8a{bottom:809.093333pt;}
.y322{bottom:810.373333pt;}
.y2a7{bottom:810.693333pt;}
.y305{bottom:811.653333pt;}
.y6e{bottom:814.853333pt;}
.y9{bottom:817.893333pt;}
.y211{bottom:818.693333pt;}
.y33d{bottom:819.333333pt;}
.y24c{bottom:819.493333pt;}
.ycb{bottom:821.413333pt;}
.yad{bottom:822.213333pt;}
.y1e4{bottom:822.533333pt;}
.y199{bottom:824.133333pt;}
.y21f{bottom:826.533333pt;}
.yf1{bottom:829.093333pt;}
.y321{bottom:829.893333pt;}
.y4b{bottom:830.053333pt;}
.y10b{bottom:830.533333pt;}
.y203{bottom:831.013333pt;}
.y180{bottom:833.093333pt;}
.y304{bottom:834.053333pt;}
.y240{bottom:834.533333pt;}
.ya2{bottom:838.053333pt;}
.y210{bottom:838.213333pt;}
.y6d{bottom:838.533333pt;}
.y33c{bottom:838.853333pt;}
.y123{bottom:839.813333pt;}
.y2f0{bottom:842.213333pt;}
.y1ee{bottom:843.653333pt;}
.yca{bottom:843.813333pt;}
.yac{bottom:844.773333pt;}
.ydc{bottom:846.053333pt;}
.y198{bottom:846.533333pt;}
.y320{bottom:849.413333pt;}
.y10a{bottom:852.933333pt;}
.y4a{bottom:853.573333pt;}
.y17f{bottom:855.653333pt;}
.y303{bottom:856.453333pt;}
.y1c{bottom:857.733333pt;}
.y33b{bottom:858.533333pt;}
.y89{bottom:861.413333pt;}
.y6c{bottom:862.053333pt;}
.y3b{bottom:863.173333pt;}
.y8e{bottom:863.653333pt;}
.yc9{bottom:866.213333pt;}
.yab{bottom:867.173333pt;}
.y21e{bottom:867.333333pt;}
.y2{bottom:868.773333pt;}
.y197{bottom:868.933333pt;}
.y1d1{bottom:870.853333pt;}
.y202{bottom:871.173333pt;}
.y24b{bottom:874.693333pt;}
.y2ef{bottom:875.333333pt;}
.y49{bottom:877.093333pt;}
.y122{bottom:878.053333pt;}
.ya1{bottom:884.613333pt;}
.y6b{bottom:885.573333pt;}
.y31f{bottom:888.453333pt;}
.yc8{bottom:888.773333pt;}
.y201{bottom:890.693333pt;}
.y196{bottom:891.493333pt;}
.y109{bottom:892.453333pt;}
.y23f{bottom:893.253333pt;}
.y1ed{bottom:895.973333pt;}
.y1{bottom:897.573333pt;}
.y121{bottom:900.453333pt;}
.y48{bottom:900.613333pt;}
.y88{bottom:901.573333pt;}
.y1b{bottom:905.733333pt;}
.y302{bottom:908.933333pt;}
.y6a{bottom:909.093333pt;}
.y200{bottom:910.213333pt;}
.yc7{bottom:911.173333pt;}
.y39{bottom:911.813333pt;}
.y195{bottom:913.893333pt;}
.y33a{bottom:917.093333pt;}
.yaa{bottom:919.493333pt;}
.y24a{bottom:919.653333pt;}
.y1b0{bottom:923.013333pt;}
.ya0{bottom:931.333333pt;}
.y87{bottom:931.493333pt;}
.y69{bottom:932.613333pt;}
.yc6{bottom:933.733333pt;}
.y339{bottom:936.613333pt;}
.y8d{bottom:940.773333pt;}
.y1a{bottom:940.933333pt;}
.y20f{bottom:950.853333pt;}
.y1ff{bottom:951.013333pt;}
.y194{bottom:953.413333pt;}
.y68{bottom:956.133333pt;}
.y38{bottom:958.533333pt;}
.y17{bottom:989.253333pt;}
.y16{bottom:1022.400000pt;}
.y15{bottom:1055.520000pt;}
.y14{bottom:1088.640000pt;}
.h46{height:1.935000pt;}
.h28{height:3.520000pt;}
.h40{height:19.680000pt;}
.h2a{height:22.720000pt;}
.h12{height:29.440000pt;}
.ha{height:32.765625pt;}
.hb{height:33.120000pt;}
.he{height:33.152000pt;}
.hf{height:33.280000pt;}
.h1c{height:33.312000pt;}
.h1a{height:33.440000pt;}
.h1d{height:33.472000pt;}
.h42{height:39.040000pt;}
.h23{height:39.943750pt;}
.h4{height:42.649687pt;}
.h18{height:43.038750pt;}
.h31{height:44.965000pt;}
.h11{height:47.742188pt;}
.h14{height:48.000000pt;}
.h17{height:48.160000pt;}
.h16{height:48.192000pt;}
.h1f{height:48.875000pt;}
.hc{height:49.760000pt;}
.h1b{height:51.360000pt;}
.h3{height:52.834688pt;}
.h8{height:53.050880pt;}
.h13{height:54.390938pt;}
.h34{height:55.520000pt;}
.h3f{height:55.552000pt;}
.h3e{height:55.680000pt;}
.h3c{height:55.712000pt;}
.h3d{height:56.640000pt;}
.h41{height:58.560000pt;}
.h10{height:58.563750pt;}
.h44{height:58.592000pt;}
.h43{height:58.720000pt;}
.h24{height:60.000000pt;}
.h2{height:63.656250pt;}
.h29{height:63.783562pt;}
.h26{height:65.120000pt;}
.h5{height:65.531250pt;}
.h30{height:68.748750pt;}
.h21{height:70.663750pt;}
.h37{height:70.773750pt;}
.h27{height:72.800000pt;}
.h1e{height:76.671562pt;}
.h2d{height:77.120000pt;}
.h39{height:77.920000pt;}
.h35{height:78.080000pt;}
.h33{height:78.112000pt;}
.h2f{height:83.200000pt;}
.h7{height:84.662813pt;}
.h15{height:85.440000pt;}
.h19{height:87.156562pt;}
.h2b{height:87.287625pt;}
.h22{height:94.376250pt;}
.h2e{height:98.296875pt;}
.h2c{height:100.160000pt;}
.h25{height:100.320000pt;}
.h32{height:100.480000pt;}
.h36{height:100.512000pt;}
.h3a{height:100.640000pt;}
.h38{height:100.672000pt;}
.h9{height:131.062500pt;}
.h6{height:138.134062pt;}
.hd{height:151.066667pt;}
.h3b{height:156.160000pt;}
.h20{height:168.960000pt;}
.h45{height:472.226667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3c{width:4.320000pt;}
.w3d{width:5.440000pt;}
.w13{width:22.560000pt;}
.w15{width:22.720000pt;}
.w7{width:33.312000pt;}
.w8{width:93.280000pt;}
.w23{width:94.592000pt;}
.w25{width:99.520000pt;}
.w1d{width:108.032000pt;}
.w22{width:108.192000pt;}
.w32{width:110.720000pt;}
.w2f{width:111.072000pt;}
.w3e{width:112.960000pt;}
.w2b{width:117.440000pt;}
.w39{width:118.720000pt;}
.wb{width:125.152000pt;}
.w21{width:128.000000pt;}
.w2e{width:129.920000pt;}
.we{width:133.280000pt;}
.w28{width:140.000000pt;}
.w35{width:140.320000pt;}
.w16{width:144.000000pt;}
.w14{width:144.640000pt;}
.w11{width:144.800000pt;}
.w18{width:145.280000pt;}
.w17{width:145.440000pt;}
.w12{width:146.080000pt;}
.w1e{width:150.106667pt;}
.w1a{width:151.226667pt;}
.w41{width:157.920000pt;}
.w2c{width:162.426667pt;}
.w31{width:170.106667pt;}
.w1b{width:175.226667pt;}
.w26{width:182.426667pt;}
.w1f{width:184.986667pt;}
.w20{width:199.066667pt;}
.w3a{width:206.306667pt;}
.w42{width:214.146667pt;}
.w5{width:223.106667pt;}
.w3{width:225.666667pt;}
.w30{width:229.946667pt;}
.w9{width:231.906667pt;}
.w37{width:234.746667pt;}
.w29{width:236.066667pt;}
.w34{width:239.066667pt;}
.w40{width:260.026667pt;}
.w2a{width:265.946667pt;}
.w36{width:267.106667pt;}
.w3f{width:269.026667pt;}
.w43{width:269.946667pt;}
.wa{width:280.506667pt;}
.w33{width:292.386667pt;}
.w3b{width:302.426667pt;}
.w24{width:312.186667pt;}
.w1c{width:315.746667pt;}
.w27{width:360.226667pt;}
.w2d{width:362.306667pt;}
.w4{width:426.306667pt;}
.w6{width:429.346667pt;}
.wd{width:451.840000pt;}
.wc{width:489.053333pt;}
.w10{width:575.840000pt;}
.wf{width:576.000000pt;}
.w38{width:632.413333pt;}
.w19{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x63{left:0.960000pt;}
.x62{left:4.000000pt;}
.x8{left:7.232000pt;}
.x17{left:9.626667pt;}
.x26{left:11.426667pt;}
.x2f{left:12.706667pt;}
.x56{left:15.360000pt;}
.x31{left:16.253333pt;}
.x4b{left:19.520000pt;}
.x49{left:20.480000pt;}
.x3d{left:23.872000pt;}
.x4f{left:25.440000pt;}
.x4d{left:27.200000pt;}
.x24{left:30.746667pt;}
.x5c{left:32.640000pt;}
.x6a{left:33.760000pt;}
.x28{left:35.426667pt;}
.x58{left:36.640000pt;}
.x22{left:38.266667pt;}
.x60{left:40.000000pt;}
.x47{left:41.280000pt;}
.x37{left:45.472000pt;}
.x51{left:47.360000pt;}
.x29{left:52.226667pt;}
.x6f{left:55.240000pt;}
.x3f{left:56.160000pt;}
.x5f{left:62.880000pt;}
.x65{left:64.840000pt;}
.x54{left:65.760000pt;}
.x39{left:68.840000pt;}
.x2{left:75.519988pt;}
.x44{left:77.311988pt;}
.x12{left:78.591988pt;}
.x13{left:80.191988pt;}
.xf{left:81.631988pt;}
.x6c{left:82.760000pt;}
.x3b{left:88.986667pt;}
.x67{left:94.560000pt;}
.xb{left:99.551988pt;}
.x46{left:102.111988pt;}
.x20{left:108.640000pt;}
.xc{left:110.272000pt;}
.x21{left:112.480000pt;}
.x45{left:114.111988pt;}
.x3{left:122.751988pt;}
.x42{left:125.311988pt;}
.x33{left:128.293333pt;}
.x4{left:130.751988pt;}
.x6{left:133.626655pt;}
.x43{left:136.026655pt;}
.x71{left:138.106655pt;}
.x23{left:145.306655pt;}
.x3c{left:147.546655pt;}
.x2e{left:166.266655pt;}
.x16{left:170.880000pt;}
.x4e{left:177.626667pt;}
.x3e{left:183.546667pt;}
.x18{left:185.786655pt;}
.x5d{left:188.826667pt;}
.x6b{left:191.066667pt;}
.x55{left:195.546667pt;}
.x64{left:197.786667pt;}
.x10{left:200.666667pt;}
.x1f{left:202.266655pt;}
.xd{left:204.186667pt;}
.x48{left:206.106667pt;}
.x15{left:207.066655pt;}
.x59{left:209.946667pt;}
.x52{left:218.106667pt;}
.x38{left:226.746667pt;}
.x6e{left:236.026667pt;}
.x1b{left:244.640000pt;}
.x1a{left:254.306655pt;}
.x36{left:267.586655pt;}
.x25{left:275.520000pt;}
.xa{left:300.066667pt;}
.x9{left:302.626667pt;}
.x4a{left:314.306667pt;}
.x5a{left:321.026667pt;}
.x27{left:324.320000pt;}
.x40{left:333.666667pt;}
.x19{left:338.466655pt;}
.x30{left:345.986655pt;}
.x57{left:357.986667pt;}
.x50{left:360.066667pt;}
.x1c{left:397.280000pt;}
.x3a{left:402.146667pt;}
.x66{left:404.093333pt;}
.x1d{left:406.973322pt;}
.x4c{left:408.893333pt;}
.xe{left:436.733333pt;}
.x70{left:450.173333pt;}
.x53{left:454.173333pt;}
.x6d{left:460.093333pt;}
.x5e{left:481.213333pt;}
.x61{left:485.533333pt;}
.x2a{left:487.200000pt;}
.x41{left:518.653333pt;}
.x2b{left:535.840000pt;}
.x5b{left:550.973333pt;}
.x32{left:553.213322pt;}
.x2c{left:560.253322pt;}
.x14{left:622.373322pt;}
.x2d{left:643.333322pt;}
.x5{left:662.853322pt;}
.x1{left:673.253322pt;}
.x1e{left:684.613322pt;}
.x34{left:692.453310pt;}
.x35{left:697.893322pt;}
.x68{left:710.533333pt;}
.x11{left:713.733322pt;}
.x69{left:714.853333pt;}
.x7{left:721.733322pt;}
}




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