
    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_f067cd07adfba717bf495d9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_6c0d9af723c7e11ca1809572.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079000;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_86951f093a1610c2fcd40c03.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935000;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_d3fb45eb9e2412e93daa2b4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.118000;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_4f362167de27a8a9f8c3e4ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_094787436f6a0a6399251b21.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079000;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_c59ce0f5d71decf41fb2335e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.902000;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_bc2c7dfbee2e629502df4769.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_094787436f6a0a6399251b21.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.079000;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_c59ce0f5d71decf41fb2335e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.902000;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.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-8.100000px;}
.ls6{letter-spacing:-7.200000px;}
.ls1{letter-spacing:-4.500000px;}
.ls18{letter-spacing:-1.620000px;}
.ls14{letter-spacing:-1.458000px;}
.ls10{letter-spacing:-1.350000px;}
.ls11{letter-spacing:-1.296000px;}
.ls12{letter-spacing:-1.260000px;}
.lsf{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-1.050000px;}
.lse{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.486000px;}
.lsd{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.210000px;}
.ls4{letter-spacing:-0.168000px;}
.ls1b{letter-spacing:-0.162000px;}
.ls2{letter-spacing:-0.042000px;}
.ls8{letter-spacing:0.000000px;}
.ls16{letter-spacing:1.458000px;}
.ls19{letter-spacing:1.512000px;}
.ls1c{letter-spacing:1.728000px;}
.ls1a{letter-spacing:2.862000px;}
.ls17{letter-spacing:8.154000px;}
.ls0{letter-spacing:10.656000px;}
.ls15{letter-spacing:10.962000px;}
.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;}
}
.wseb{word-spacing:-16.470000px;}
.wsec{word-spacing:-14.850000px;}
.ws13{word-spacing:-14.202000px;}
.ws0{word-spacing:-13.344000px;}
.ws94{word-spacing:-3.888000px;}
.ws9c{word-spacing:-3.618000px;}
.wsf5{word-spacing:-3.294000px;}
.wsdb{word-spacing:-3.240000px;}
.ws84{word-spacing:-3.024000px;}
.wsf7{word-spacing:-2.862000px;}
.ws7c{word-spacing:-2.808000px;}
.ws1f{word-spacing:-2.700000px;}
.wse0{word-spacing:-2.646000px;}
.ws6b{word-spacing:-2.592000px;}
.ws8a{word-spacing:-2.538000px;}
.wsd2{word-spacing:-2.520000px;}
.ws88{word-spacing:-2.484000px;}
.wsac{word-spacing:-2.430000px;}
.ws17{word-spacing:-2.376000px;}
.wsc6{word-spacing:-2.322000px;}
.wse8{word-spacing:-2.268000px;}
.ws11a{word-spacing:-2.214000px;}
.ws10a{word-spacing:-2.160000px;}
.ws5b{word-spacing:-2.106000px;}
.wse3{word-spacing:-2.058000px;}
.wsa5{word-spacing:-2.052000px;}
.ws83{word-spacing:-1.998000px;}
.ws67{word-spacing:-1.944000px;}
.ws36{word-spacing:-1.890000px;}
.ws2a{word-spacing:-1.836000px;}
.ws3f{word-spacing:-1.728000px;}
.ws9a{word-spacing:-1.620000px;}
.ws3b{word-spacing:-1.566000px;}
.ws4e{word-spacing:-1.512000px;}
.wsd3{word-spacing:-1.386000px;}
.wsa4{word-spacing:-1.350000px;}
.wsa0{word-spacing:-1.296000px;}
.ws9b{word-spacing:-1.242000px;}
.ws53{word-spacing:-1.188000px;}
.wsa1{word-spacing:-1.134000px;}
.wscc{word-spacing:-1.080000px;}
.ws4b{word-spacing:-1.026000px;}
.ws27{word-spacing:-0.972000px;}
.ws49{word-spacing:-0.918000px;}
.ws61{word-spacing:-0.810000px;}
.wsa6{word-spacing:-0.756000px;}
.ws8d{word-spacing:-0.702000px;}
.ws78{word-spacing:-0.648000px;}
.wsb4{word-spacing:-0.594000px;}
.ws2{word-spacing:-0.588000px;}
.wsd1{word-spacing:-0.546000px;}
.ws29{word-spacing:-0.540000px;}
.ws8c{word-spacing:-0.486000px;}
.ws4{word-spacing:-0.462000px;}
.wsbb{word-spacing:-0.432000px;}
.ws3{word-spacing:-0.420000px;}
.ws16{word-spacing:-0.378000px;}
.ws11{word-spacing:-0.324000px;}
.ws8e{word-spacing:-0.270000px;}
.ws12{word-spacing:-0.240000px;}
.wse9{word-spacing:-0.216000px;}
.ws6e{word-spacing:-0.162000px;}
.ws4c{word-spacing:-0.108000px;}
.ws1d{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws92{word-spacing:0.054000px;}
.wsc0{word-spacing:0.108000px;}
.ws3d{word-spacing:0.162000px;}
.wsa3{word-spacing:0.216000px;}
.ws9f{word-spacing:0.270000px;}
.wsc2{word-spacing:0.324000px;}
.ws9d{word-spacing:0.378000px;}
.wsbc{word-spacing:0.432000px;}
.ws42{word-spacing:0.486000px;}
.ws6{word-spacing:0.540000px;}
.wsd0{word-spacing:0.594000px;}
.ws8{word-spacing:0.648000px;}
.ws93{word-spacing:0.702000px;}
.ws28{word-spacing:0.756000px;}
.ws7f{word-spacing:0.810000px;}
.ws6f{word-spacing:0.864000px;}
.ws5e{word-spacing:0.918000px;}
.ws34{word-spacing:0.972000px;}
.ws8b{word-spacing:1.080000px;}
.ws56{word-spacing:1.134000px;}
.ws74{word-spacing:1.188000px;}
.ws55{word-spacing:1.242000px;}
.ws22{word-spacing:1.296000px;}
.ws1a{word-spacing:1.350000px;}
.wsa{word-spacing:1.404000px;}
.ws3a{word-spacing:1.458000px;}
.ws2f{word-spacing:1.512000px;}
.ws124{word-spacing:1.554000px;}
.ws91{word-spacing:1.566000px;}
.wsf{word-spacing:1.620000px;}
.wsab{word-spacing:1.674000px;}
.wsd{word-spacing:1.728000px;}
.ws63{word-spacing:1.782000px;}
.ws87{word-spacing:1.836000px;}
.ws39{word-spacing:1.890000px;}
.ws9{word-spacing:1.944000px;}
.ws95{word-spacing:1.998000px;}
.wsa8{word-spacing:2.052000px;}
.ws79{word-spacing:2.106000px;}
.ws71{word-spacing:2.160000px;}
.ws57{word-spacing:2.214000px;}
.wsde{word-spacing:2.268000px;}
.ws33{word-spacing:2.322000px;}
.ws40{word-spacing:2.376000px;}
.wse{word-spacing:2.430000px;}
.wsb{word-spacing:2.484000px;}
.wsae{word-spacing:2.538000px;}
.wsb8{word-spacing:2.592000px;}
.ws10{word-spacing:2.646000px;}
.ws20{word-spacing:2.700000px;}
.ws25{word-spacing:2.754000px;}
.wse5{word-spacing:2.808000px;}
.ws86{word-spacing:2.862000px;}
.ws3e{word-spacing:2.916000px;}
.wsb9{word-spacing:2.970000px;}
.wsd4{word-spacing:3.024000px;}
.ws64{word-spacing:3.078000px;}
.wscd{word-spacing:3.132000px;}
.ws45{word-spacing:3.186000px;}
.wsc{word-spacing:3.240000px;}
.ws35{word-spacing:3.294000px;}
.ws6c{word-spacing:3.348000px;}
.wsba{word-spacing:3.402000px;}
.ws82{word-spacing:3.456000px;}
.wsdc{word-spacing:3.564000px;}
.ws46{word-spacing:3.618000px;}
.ws5a{word-spacing:3.672000px;}
.ws5f{word-spacing:3.726000px;}
.ws80{word-spacing:3.780000px;}
.wsdf{word-spacing:3.834000px;}
.ws7e{word-spacing:3.888000px;}
.wse1{word-spacing:3.942000px;}
.ws76{word-spacing:3.996000px;}
.ws89{word-spacing:4.050000px;}
.ws66{word-spacing:4.104000px;}
.wsa2{word-spacing:4.158000px;}
.ws68{word-spacing:4.212000px;}
.wsc1{word-spacing:4.266000px;}
.ws77{word-spacing:4.320000px;}
.wsb7{word-spacing:4.374000px;}
.wsa7{word-spacing:4.428000px;}
.ws7d{word-spacing:4.482000px;}
.ws50{word-spacing:4.536000px;}
.ws18{word-spacing:4.590000px;}
.ws24{word-spacing:4.644000px;}
.ws44{word-spacing:4.698000px;}
.ws7{word-spacing:4.752000px;}
.ws85{word-spacing:4.806000px;}
.ws54{word-spacing:4.860000px;}
.ws37{word-spacing:4.914000px;}
.ws2b{word-spacing:4.968000px;}
.ws10e{word-spacing:5.022000px;}
.ws26{word-spacing:5.076000px;}
.ws19{word-spacing:5.130000px;}
.ws112{word-spacing:5.184000px;}
.ws1c{word-spacing:5.238000px;}
.wse2{word-spacing:5.250000px;}
.ws72{word-spacing:5.292000px;}
.ws4a{word-spacing:5.346000px;}
.wsc7{word-spacing:5.400000px;}
.wsb3{word-spacing:5.454000px;}
.ws6d{word-spacing:5.562000px;}
.ws43{word-spacing:5.616000px;}
.ws6a{word-spacing:5.670000px;}
.wse7{word-spacing:5.724000px;}
.ws58{word-spacing:5.778000px;}
.ws3c{word-spacing:5.832000px;}
.ws99{word-spacing:5.886000px;}
.wsd8{word-spacing:5.940000px;}
.wscf{word-spacing:6.048000px;}
.ws110{word-spacing:6.102000px;}
.ws23{word-spacing:6.156000px;}
.ws81{word-spacing:6.210000px;}
.ws60{word-spacing:6.264000px;}
.ws4d{word-spacing:6.318000px;}
.ws1e{word-spacing:6.372000px;}
.ws70{word-spacing:6.426000px;}
.ws69{word-spacing:6.480000px;}
.ws108{word-spacing:6.534000px;}
.wsaf{word-spacing:6.588000px;}
.ws101{word-spacing:6.642000px;}
.ws62{word-spacing:6.750000px;}
.wsb5{word-spacing:6.804000px;}
.ws14{word-spacing:6.912000px;}
.wsbf{word-spacing:6.966000px;}
.wsf1{word-spacing:7.020000px;}
.ws96{word-spacing:7.074000px;}
.wsd7{word-spacing:7.182000px;}
.ws5{word-spacing:7.200000px;}
.wsbe{word-spacing:7.236000px;}
.ws47{word-spacing:7.290000px;}
.ws65{word-spacing:7.344000px;}
.ws97{word-spacing:7.398000px;}
.ws9e{word-spacing:7.452000px;}
.ws2e{word-spacing:7.506000px;}
.wsce{word-spacing:7.560000px;}
.wsad{word-spacing:7.668000px;}
.ws73{word-spacing:7.722000px;}
.ws51{word-spacing:7.830000px;}
.wsaa{word-spacing:7.938000px;}
.ws41{word-spacing:7.992000px;}
.wsbd{word-spacing:8.046000px;}
.ws100{word-spacing:8.100000px;}
.ws2d{word-spacing:8.208000px;}
.ws5c{word-spacing:8.262000px;}
.ws7b{word-spacing:8.424000px;}
.ws1b{word-spacing:8.478000px;}
.wsb1{word-spacing:8.532000px;}
.ws75{word-spacing:8.586000px;}
.ws15{word-spacing:8.640000px;}
.wsb0{word-spacing:8.694000px;}
.ws30{word-spacing:8.802000px;}
.wse4{word-spacing:8.856000px;}
.ws11c{word-spacing:8.910000px;}
.wsea{word-spacing:9.072000px;}
.ws116{word-spacing:9.234000px;}
.wsb2{word-spacing:9.450000px;}
.ws32{word-spacing:9.504000px;}
.ws38{word-spacing:9.558000px;}
.ws5d{word-spacing:9.612000px;}
.wsca{word-spacing:9.720000px;}
.ws105{word-spacing:9.774000px;}
.wscb{word-spacing:9.828000px;}
.ws10f{word-spacing:9.882000px;}
.wsd5{word-spacing:10.422000px;}
.ws117{word-spacing:10.476000px;}
.ws2c{word-spacing:10.530000px;}
.ws113{word-spacing:10.584000px;}
.ws10b{word-spacing:10.638000px;}
.wsd9{word-spacing:10.692000px;}
.ws21{word-spacing:10.746000px;}
.ws122{word-spacing:11.124000px;}
.wsf8{word-spacing:11.178000px;}
.ws59{word-spacing:11.232000px;}
.ws90{word-spacing:11.394000px;}
.ws7a{word-spacing:11.448000px;}
.wsc8{word-spacing:11.502000px;}
.ws107{word-spacing:11.556000px;}
.ws4f{word-spacing:11.718000px;}
.wsed{word-spacing:12.096000px;}
.ws98{word-spacing:12.258000px;}
.wsfa{word-spacing:12.744000px;}
.ws8f{word-spacing:12.798000px;}
.ws48{word-spacing:13.122000px;}
.ws104{word-spacing:13.392000px;}
.ws10c{word-spacing:13.446000px;}
.wsa9{word-spacing:13.662000px;}
.ws11e{word-spacing:13.770000px;}
.ws11f{word-spacing:14.040000px;}
.wsb6{word-spacing:14.256000px;}
.ws31{word-spacing:14.310000px;}
.ws115{word-spacing:14.364000px;}
.wse6{word-spacing:14.418000px;}
.wsfc{word-spacing:14.472000px;}
.wsd6{word-spacing:14.688000px;}
.ws52{word-spacing:15.012000px;}
.ws111{word-spacing:15.228000px;}
.ws123{word-spacing:15.372000px;}
.wsf9{word-spacing:15.606000px;}
.ws11d{word-spacing:15.660000px;}
.wsc3{word-spacing:15.930000px;}
.ws102{word-spacing:15.984000px;}
.wsc5{word-spacing:16.254000px;}
.ws11b{word-spacing:16.470000px;}
.wsc4{word-spacing:17.226000px;}
.wsda{word-spacing:17.442000px;}
.ws103{word-spacing:17.604000px;}
.wsfe{word-spacing:17.982000px;}
.wsdd{word-spacing:18.252000px;}
.wsfb{word-spacing:18.306000px;}
.wsf2{word-spacing:18.630000px;}
.ws109{word-spacing:18.684000px;}
.ws114{word-spacing:19.062000px;}
.ws119{word-spacing:19.170000px;}
.ws121{word-spacing:20.088000px;}
.ws120{word-spacing:20.520000px;}
.wsee{word-spacing:21.168000px;}
.wsc9{word-spacing:21.276000px;}
.ws10d{word-spacing:21.384000px;}
.wsfd{word-spacing:25.218000px;}
.wsf3{word-spacing:27.486000px;}
.wsf0{word-spacing:31.104000px;}
.ws118{word-spacing:36.234000px;}
.ws106{word-spacing:37.206000px;}
.wsf4{word-spacing:44.064000px;}
.wsf6{word-spacing:59.076000px;}
.wsef{word-spacing:61.884000px;}
.wsff{word-spacing:70.848000px;}
._b{margin-left:-11.124000px;}
._4{margin-left:-7.326000px;}
._5{margin-left:-5.994000px;}
._6{margin-left:-4.741800px;}
._8{margin-left:-3.363000px;}
._7{margin-left:-2.266200px;}
._1{margin-left:-1.192800px;}
._0{width:1.142400px;}
._2{width:2.301600px;}
._3{width:8.073000px;}
._d{width:11.772000px;}
._c{width:13.500000px;}
._e{width:16.486200px;}
._9{width:40.999200px;}
._a{width:1046.934000px;}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(79,76,77);}
.fc0{color:rgb(237,28,36);}
.fs1{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:270.000000px;}
.fs2{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y21b{bottom:90.349200px;}
.y98{bottom:90.349350px;}
.y16b{bottom:90.430050px;}
.y29{bottom:90.455250px;}
.y116{bottom:90.466200px;}
.y1a4{bottom:90.511200px;}
.y63{bottom:90.511350px;}
.yce{bottom:90.514200px;}
.y145{bottom:90.538050px;}
.yf2{bottom:90.574200px;}
.yb3{bottom:90.595200px;}
.y1ce{bottom:90.616200px;}
.y1ac{bottom:90.661200px;}
.y1b6{bottom:90.664200px;}
.y23d{bottom:90.954000px;}
.y23c{bottom:103.701000px;}
.y28{bottom:103.955250px;}
.y21a{bottom:107.602200px;}
.y97{bottom:107.602350px;}
.y16a{bottom:107.683050px;}
.y115{bottom:107.719200px;}
.y1a3{bottom:107.764200px;}
.y62{bottom:107.764350px;}
.ycd{bottom:107.767200px;}
.y144{bottom:107.791050px;}
.yf1{bottom:107.827200px;}
.yb2{bottom:107.848200px;}
.y1cd{bottom:107.869200px;}
.y1ab{bottom:107.914200px;}
.y1b5{bottom:107.917200px;}
.y23b{bottom:116.448000px;}
.y27{bottom:117.455250px;}
.y219{bottom:124.855200px;}
.y96{bottom:124.855350px;}
.y169{bottom:124.936050px;}
.y114{bottom:124.972200px;}
.y1a2{bottom:125.017200px;}
.y61{bottom:125.017350px;}
.ycc{bottom:125.020200px;}
.y143{bottom:125.044050px;}
.yf0{bottom:125.080200px;}
.yb1{bottom:125.101200px;}
.y1cc{bottom:125.122200px;}
.y1aa{bottom:125.167200px;}
.y1b4{bottom:125.170200px;}
.y218{bottom:142.108200px;}
.y95{bottom:142.108350px;}
.y168{bottom:142.189050px;}
.y113{bottom:142.225200px;}
.y1a1{bottom:142.270200px;}
.y60{bottom:142.270350px;}
.ycb{bottom:142.273200px;}
.y142{bottom:142.297050px;}
.yef{bottom:142.333200px;}
.yb0{bottom:142.354200px;}
.y1cb{bottom:142.375200px;}
.y22{bottom:142.387200px;}
.y1a9{bottom:142.420200px;}
.y1b3{bottom:142.423200px;}
.y217{bottom:159.361200px;}
.y94{bottom:159.361350px;}
.y167{bottom:159.442050px;}
.y112{bottom:159.478200px;}
.y1a0{bottom:159.523200px;}
.y5f{bottom:159.523350px;}
.yca{bottom:159.526200px;}
.y141{bottom:159.550050px;}
.yee{bottom:159.586200px;}
.yaf{bottom:159.607200px;}
.y1ca{bottom:159.628200px;}
.y21{bottom:159.640200px;}
.y1a8{bottom:159.673200px;}
.y216{bottom:176.614200px;}
.y93{bottom:176.614350px;}
.y166{bottom:176.695050px;}
.y111{bottom:176.731200px;}
.y19f{bottom:176.776200px;}
.y5e{bottom:176.776350px;}
.yc9{bottom:176.779200px;}
.y140{bottom:176.803050px;}
.yed{bottom:176.839200px;}
.yae{bottom:176.860200px;}
.y1c9{bottom:176.881200px;}
.y20{bottom:176.893200px;}
.y215{bottom:193.867200px;}
.y92{bottom:193.867350px;}
.y165{bottom:193.948050px;}
.y110{bottom:193.984200px;}
.y19e{bottom:194.029200px;}
.y5d{bottom:194.029350px;}
.yc8{bottom:194.032200px;}
.y13f{bottom:194.056050px;}
.yec{bottom:194.092200px;}
.yad{bottom:194.113200px;}
.y1c8{bottom:194.134200px;}
.y214{bottom:211.120200px;}
.y91{bottom:211.120350px;}
.y164{bottom:211.201050px;}
.y10f{bottom:211.237200px;}
.y19d{bottom:211.282200px;}
.y5c{bottom:211.282350px;}
.yc7{bottom:211.285200px;}
.y13e{bottom:211.309050px;}
.yeb{bottom:211.345200px;}
.yac{bottom:211.366200px;}
.y1c7{bottom:211.387200px;}
.y1f{bottom:211.399200px;}
.y1b2{bottom:216.144450px;}
.y1a6{bottom:221.933550px;}
.y1b1{bottom:228.145950px;}
.y213{bottom:228.373200px;}
.y90{bottom:228.373350px;}
.y163{bottom:228.454050px;}
.y10e{bottom:228.490200px;}
.y19c{bottom:228.535200px;}
.y5b{bottom:228.535350px;}
.yc6{bottom:228.538200px;}
.y13d{bottom:228.562050px;}
.yea{bottom:228.598200px;}
.yab{bottom:228.619200px;}
.y1c6{bottom:228.640200px;}
.y1e{bottom:228.652200px;}
.y212{bottom:245.626200px;}
.y8f{bottom:245.626350px;}
.y162{bottom:245.707050px;}
.y10d{bottom:245.743200px;}
.y19b{bottom:245.788200px;}
.y5a{bottom:245.788350px;}
.yc5{bottom:245.791200px;}
.y13c{bottom:245.815050px;}
.ye9{bottom:245.851200px;}
.yaa{bottom:245.872200px;}
.y1c5{bottom:245.893200px;}
.y1d{bottom:245.905200px;}
.y211{bottom:262.879200px;}
.y8e{bottom:262.879350px;}
.y161{bottom:262.960050px;}
.y10c{bottom:262.996200px;}
.y19a{bottom:263.041200px;}
.y59{bottom:263.041350px;}
.yc4{bottom:263.044200px;}
.y13b{bottom:263.068050px;}
.ye8{bottom:263.104200px;}
.ya9{bottom:263.125200px;}
.y1c4{bottom:263.146200px;}
.y1c{bottom:263.158200px;}
.y210{bottom:280.132200px;}
.y8d{bottom:280.132350px;}
.y160{bottom:280.213050px;}
.y10b{bottom:280.249200px;}
.y199{bottom:280.294200px;}
.y58{bottom:280.294350px;}
.yc3{bottom:280.297200px;}
.y13a{bottom:280.321050px;}
.ye7{bottom:280.357200px;}
.ya8{bottom:280.378200px;}
.y1c3{bottom:280.399200px;}
.y1b{bottom:280.411200px;}
.y20f{bottom:297.385200px;}
.y8c{bottom:297.385350px;}
.y15f{bottom:297.466050px;}
.y10a{bottom:297.502200px;}
.y198{bottom:297.547200px;}
.y57{bottom:297.547350px;}
.yc2{bottom:297.550200px;}
.ye6{bottom:297.610200px;}
.ya7{bottom:297.631200px;}
.y1c2{bottom:297.652200px;}
.y1a{bottom:297.664200px;}
.y20e{bottom:314.638200px;}
.y8b{bottom:314.638350px;}
.y15e{bottom:314.719050px;}
.y109{bottom:314.755200px;}
.y197{bottom:314.800200px;}
.y56{bottom:314.800350px;}
.yc1{bottom:314.803200px;}
.y139{bottom:314.827050px;}
.ye5{bottom:314.863200px;}
.ya6{bottom:314.884200px;}
.y1c1{bottom:314.905200px;}
.y19{bottom:314.917200px;}
.y20d{bottom:331.891200px;}
.y8a{bottom:331.891350px;}
.y15d{bottom:331.972050px;}
.y108{bottom:332.008200px;}
.y196{bottom:332.053200px;}
.y55{bottom:332.053350px;}
.yc0{bottom:332.056200px;}
.y138{bottom:332.080050px;}
.ya5{bottom:332.137200px;}
.y1c0{bottom:332.158200px;}
.y18{bottom:332.170200px;}
.y20c{bottom:349.144200px;}
.y89{bottom:349.144350px;}
.y15c{bottom:349.225050px;}
.y107{bottom:349.261200px;}
.y195{bottom:349.306200px;}
.y54{bottom:349.306350px;}
.ybf{bottom:349.309200px;}
.y137{bottom:349.333050px;}
.ye4{bottom:349.369200px;}
.ya4{bottom:349.390200px;}
.y1bf{bottom:349.411200px;}
.y17{bottom:349.423200px;}
.y20b{bottom:366.397200px;}
.y88{bottom:366.397350px;}
.y15b{bottom:366.478050px;}
.y106{bottom:366.514200px;}
.y194{bottom:366.559200px;}
.y53{bottom:366.559350px;}
.ybe{bottom:366.562200px;}
.y136{bottom:366.586050px;}
.ye3{bottom:366.622200px;}
.ya3{bottom:366.643200px;}
.y1be{bottom:366.664200px;}
.y16{bottom:366.673200px;}
.y20a{bottom:383.650200px;}
.y87{bottom:383.650350px;}
.y15a{bottom:383.731050px;}
.y105{bottom:383.767200px;}
.y193{bottom:383.812200px;}
.y52{bottom:383.812350px;}
.ybd{bottom:383.815200px;}
.y135{bottom:383.839050px;}
.ye2{bottom:383.875200px;}
.ya2{bottom:383.896200px;}
.y1bd{bottom:383.917200px;}
.y209{bottom:400.903200px;}
.y86{bottom:400.903350px;}
.y159{bottom:400.984050px;}
.y104{bottom:401.020200px;}
.y192{bottom:401.065200px;}
.y51{bottom:401.065350px;}
.ybc{bottom:401.068200px;}
.y134{bottom:401.092050px;}
.ye1{bottom:401.128200px;}
.ya1{bottom:401.149200px;}
.y1bc{bottom:401.170200px;}
.y208{bottom:418.156200px;}
.y85{bottom:418.156350px;}
.y158{bottom:418.237050px;}
.y103{bottom:418.273200px;}
.y191{bottom:418.318200px;}
.y50{bottom:418.318350px;}
.ybb{bottom:418.321200px;}
.y133{bottom:418.345050px;}
.ye0{bottom:418.381200px;}
.y15{bottom:418.390200px;}
.ya0{bottom:418.402200px;}
.y1bb{bottom:418.423200px;}
.y207{bottom:435.409200px;}
.y84{bottom:435.409350px;}
.y157{bottom:435.490050px;}
.y102{bottom:435.526200px;}
.y190{bottom:435.571200px;}
.y4f{bottom:435.571350px;}
.yba{bottom:435.574200px;}
.y132{bottom:435.598050px;}
.ydf{bottom:435.634200px;}
.y14{bottom:435.643200px;}
.y9f{bottom:435.655200px;}
.y206{bottom:452.662200px;}
.y83{bottom:452.662350px;}
.y156{bottom:452.743050px;}
.y101{bottom:452.779200px;}
.y18f{bottom:452.824200px;}
.y4e{bottom:452.824350px;}
.yb9{bottom:452.827200px;}
.y131{bottom:452.851050px;}
.yde{bottom:452.887200px;}
.y9e{bottom:452.908200px;}
.y205{bottom:469.915200px;}
.y82{bottom:469.915350px;}
.y155{bottom:469.996050px;}
.y100{bottom:470.032200px;}
.y18e{bottom:470.077200px;}
.y4d{bottom:470.077350px;}
.yb8{bottom:470.080200px;}
.y130{bottom:470.104050px;}
.ydd{bottom:470.140200px;}
.y13{bottom:470.149200px;}
.y9d{bottom:470.161200px;}
.y204{bottom:487.168200px;}
.y81{bottom:487.168350px;}
.y154{bottom:487.249050px;}
.yff{bottom:487.285200px;}
.y18d{bottom:487.330200px;}
.y4c{bottom:487.330350px;}
.yb7{bottom:487.333200px;}
.y12f{bottom:487.357050px;}
.ydc{bottom:487.393200px;}
.y12{bottom:487.402200px;}
.y9c{bottom:487.414200px;}
.y1ba{bottom:489.237450px;}
.y1b0{bottom:497.134950px;}
.y1b9{bottom:501.238950px;}
.y203{bottom:504.421200px;}
.y80{bottom:504.421350px;}
.y23a{bottom:504.488700px;}
.y153{bottom:504.502050px;}
.yfe{bottom:504.538200px;}
.y18c{bottom:504.583200px;}
.y4b{bottom:504.583350px;}
.yb6{bottom:504.586200px;}
.y12e{bottom:504.610050px;}
.ydb{bottom:504.646200px;}
.y11{bottom:504.655200px;}
.y9b{bottom:504.667200px;}
.y1a5{bottom:505.811550px;}
.y1af{bottom:509.136450px;}
.y202{bottom:521.674200px;}
.y7f{bottom:521.674350px;}
.y239{bottom:521.741700px;}
.y152{bottom:521.755050px;}
.yfd{bottom:521.791200px;}
.y18b{bottom:521.836200px;}
.y4a{bottom:521.836350px;}
.yb5{bottom:521.839200px;}
.y12d{bottom:521.863050px;}
.yda{bottom:521.899200px;}
.y10{bottom:521.908200px;}
.y9a{bottom:521.920200px;}
.y201{bottom:538.927200px;}
.y7e{bottom:538.927350px;}
.y238{bottom:538.994700px;}
.y151{bottom:539.008050px;}
.yfc{bottom:539.044200px;}
.y18a{bottom:539.089200px;}
.y49{bottom:539.089350px;}
.yb4{bottom:539.092200px;}
.y12c{bottom:539.116050px;}
.yd9{bottom:539.152200px;}
.yf{bottom:539.161200px;}
.y99{bottom:539.173200px;}
.y200{bottom:556.180200px;}
.y7d{bottom:556.180350px;}
.y237{bottom:556.247700px;}
.y150{bottom:556.261050px;}
.yfb{bottom:556.297200px;}
.y189{bottom:556.342200px;}
.y48{bottom:556.342350px;}
.y12b{bottom:556.369050px;}
.yd8{bottom:556.405200px;}
.ye{bottom:556.414200px;}
.y1ff{bottom:573.433200px;}
.y236{bottom:573.500700px;}
.y14f{bottom:573.514050px;}
.yfa{bottom:573.550200px;}
.y188{bottom:573.595200px;}
.y47{bottom:573.595350px;}
.y12a{bottom:573.622050px;}
.yd7{bottom:573.658200px;}
.yd{bottom:573.667200px;}
.y1fe{bottom:590.686200px;}
.y7c{bottom:590.686350px;}
.y235{bottom:590.753700px;}
.y14e{bottom:590.767050px;}
.yf9{bottom:590.803200px;}
.y187{bottom:590.848200px;}
.y46{bottom:590.848350px;}
.y129{bottom:590.875050px;}
.yd6{bottom:590.911200px;}
.yc{bottom:590.920200px;}
.yd1{bottom:605.734800px;}
.y1fd{bottom:607.939200px;}
.y7b{bottom:607.939350px;}
.y234{bottom:608.006700px;}
.y14d{bottom:608.020050px;}
.yf8{bottom:608.056200px;}
.y186{bottom:608.101200px;}
.y45{bottom:608.101350px;}
.y128{bottom:608.128050px;}
.yd5{bottom:608.164200px;}
.yb{bottom:608.173200px;}
.y1fc{bottom:625.192200px;}
.y7a{bottom:625.192350px;}
.y233{bottom:625.259700px;}
.y14c{bottom:625.273050px;}
.yf7{bottom:625.309200px;}
.y185{bottom:625.354200px;}
.y44{bottom:625.354350px;}
.y127{bottom:625.381050px;}
.yd4{bottom:625.417200px;}
.y1fb{bottom:642.445200px;}
.y79{bottom:642.445350px;}
.y232{bottom:642.512700px;}
.y14b{bottom:642.526050px;}
.yf6{bottom:642.562200px;}
.y184{bottom:642.607200px;}
.y43{bottom:642.607350px;}
.y126{bottom:642.634050px;}
.yd3{bottom:642.670200px;}
.y1fa{bottom:659.698200px;}
.y78{bottom:659.698350px;}
.y231{bottom:659.765700px;}
.y14a{bottom:659.779050px;}
.y1e4{bottom:659.792700px;}
.yf5{bottom:659.815200px;}
.y183{bottom:659.860200px;}
.y42{bottom:659.860350px;}
.y125{bottom:659.887050px;}
.yd2{bottom:659.923200px;}
.y1f9{bottom:676.951200px;}
.y77{bottom:676.951350px;}
.y230{bottom:677.018700px;}
.y149{bottom:677.032050px;}
.y1e3{bottom:677.045700px;}
.yf4{bottom:677.068200px;}
.y182{bottom:677.113200px;}
.y41{bottom:677.113350px;}
.y124{bottom:677.140050px;}
.y1f8{bottom:694.204200px;}
.y76{bottom:694.204350px;}
.y22f{bottom:694.271700px;}
.y148{bottom:694.285050px;}
.y1e2{bottom:694.298700px;}
.yf3{bottom:694.321200px;}
.y181{bottom:694.366200px;}
.y40{bottom:694.366350px;}
.y123{bottom:694.393050px;}
.y1f7{bottom:711.457200px;}
.y75{bottom:711.457350px;}
.y22e{bottom:711.524700px;}
.y147{bottom:711.538050px;}
.y1e1{bottom:711.551700px;}
.y180{bottom:711.619200px;}
.y3f{bottom:711.619350px;}
.y122{bottom:711.646050px;}
.y119{bottom:720.167850px;}
.yd0{bottom:726.673800px;}
.y1f6{bottom:728.710200px;}
.y74{bottom:728.710350px;}
.y22d{bottom:728.777700px;}
.y146{bottom:728.791050px;}
.y1e0{bottom:728.804700px;}
.y17f{bottom:728.872200px;}
.y3e{bottom:728.872350px;}
.y121{bottom:728.899050px;}
.y26{bottom:732.688200px;}
.y1f5{bottom:745.963200px;}
.y73{bottom:745.963350px;}
.y22c{bottom:746.030700px;}
.y1df{bottom:746.057700px;}
.y17e{bottom:746.125200px;}
.y3d{bottom:746.125350px;}
.y120{bottom:746.152050px;}
.y25{bottom:749.185200px;}
.y118{bottom:763.028850px;}
.y1f4{bottom:763.216200px;}
.y72{bottom:763.216350px;}
.y22b{bottom:763.283700px;}
.y1de{bottom:763.310700px;}
.y17d{bottom:763.378200px;}
.y3c{bottom:763.378350px;}
.y11f{bottom:763.405050px;}
.y24{bottom:765.682200px;}
.ycf{bottom:768.180300px;}
.y1b8{bottom:775.950450px;}
.y1ae{bottom:779.626950px;}
.y1f3{bottom:780.469200px;}
.y71{bottom:780.469350px;}
.y22a{bottom:780.536700px;}
.y1dd{bottom:780.563700px;}
.y17c{bottom:780.631200px;}
.y3b{bottom:780.631350px;}
.y23{bottom:782.179200px;}
.y1a7{bottom:782.423550px;}
.y1b7{bottom:787.951950px;}
.y16d{bottom:789.298650px;}
.y1ad{bottom:791.628450px;}
.y1f2{bottom:797.722200px;}
.y70{bottom:797.722350px;}
.y229{bottom:797.789700px;}
.y1dc{bottom:797.816700px;}
.y17b{bottom:797.884200px;}
.y3a{bottom:797.884350px;}
.y11e{bottom:797.911050px;}
.y1f1{bottom:814.975200px;}
.y6f{bottom:814.975350px;}
.y228{bottom:815.042700px;}
.y1db{bottom:815.069700px;}
.y17a{bottom:815.137200px;}
.y39{bottom:815.137350px;}
.y11d{bottom:815.164050px;}
.y1f0{bottom:832.228200px;}
.y6e{bottom:832.228350px;}
.y227{bottom:832.295700px;}
.y1da{bottom:832.322700px;}
.y179{bottom:832.390200px;}
.y38{bottom:832.390350px;}
.y11c{bottom:832.417050px;}
.y1ef{bottom:849.481200px;}
.y226{bottom:849.548700px;}
.y1d9{bottom:849.575700px;}
.y178{bottom:849.643200px;}
.y37{bottom:849.643350px;}
.y11b{bottom:849.670050px;}
.y1ee{bottom:866.734200px;}
.y6d{bottom:866.734350px;}
.y225{bottom:866.801700px;}
.y1d8{bottom:866.828700px;}
.y177{bottom:866.896200px;}
.y36{bottom:866.896350px;}
.y11a{bottom:866.923050px;}
.y1ed{bottom:883.987200px;}
.y6c{bottom:883.987350px;}
.y224{bottom:884.054700px;}
.y1d7{bottom:884.081700px;}
.y176{bottom:884.149200px;}
.y35{bottom:884.149350px;}
.y9{bottom:897.649650px;}
.y1ec{bottom:901.240200px;}
.y6b{bottom:901.240350px;}
.y223{bottom:901.307700px;}
.y1d6{bottom:901.334700px;}
.y175{bottom:901.402200px;}
.y34{bottom:901.402350px;}
.y1eb{bottom:918.493200px;}
.y6a{bottom:918.493350px;}
.y222{bottom:918.560700px;}
.y1d5{bottom:918.587700px;}
.y174{bottom:918.655200px;}
.y33{bottom:918.655350px;}
.y16c{bottom:933.652650px;}
.y1ea{bottom:935.746200px;}
.y69{bottom:935.746350px;}
.y221{bottom:935.813700px;}
.y1d4{bottom:935.840700px;}
.y173{bottom:935.908200px;}
.y32{bottom:935.908350px;}
.y117{bottom:950.926350px;}
.y1e9{bottom:952.999200px;}
.y68{bottom:952.999350px;}
.y220{bottom:953.066700px;}
.y1d3{bottom:953.093700px;}
.y172{bottom:953.161200px;}
.y31{bottom:953.161350px;}
.y8{bottom:963.664650px;}
.y1e8{bottom:970.252200px;}
.y67{bottom:970.252350px;}
.y21f{bottom:970.319700px;}
.y1d2{bottom:970.346700px;}
.y171{bottom:970.414200px;}
.y30{bottom:970.414350px;}
.y1e7{bottom:987.505200px;}
.y66{bottom:987.505350px;}
.y21e{bottom:987.572700px;}
.y1d1{bottom:987.599700px;}
.y170{bottom:987.667200px;}
.y2f{bottom:987.667350px;}
.y1e6{bottom:1004.758200px;}
.y65{bottom:1004.758350px;}
.y21d{bottom:1004.825700px;}
.y1d0{bottom:1004.852700px;}
.y16f{bottom:1004.920200px;}
.y2e{bottom:1004.920350px;}
.y1e5{bottom:1022.011200px;}
.y64{bottom:1022.011350px;}
.y21c{bottom:1022.078700px;}
.y1cf{bottom:1022.105700px;}
.y16e{bottom:1022.173200px;}
.y2d{bottom:1022.173350px;}
.y7{bottom:1029.679650px;}
.ya{bottom:1124.485500px;}
.y5{bottom:1125.364800px;}
.y2c{bottom:1135.785150px;}
.y6{bottom:1136.071500px;}
.y4{bottom:1137.366300px;}
.y2b{bottom:1145.115750px;}
.y3{bottom:1149.367800px;}
.y2a{bottom:1157.117250px;}
.y2{bottom:1161.369300px;}
.y1{bottom:1174.486350px;}
.h6{height:34.992000px;}
.h3{height:37.590000px;}
.hc{height:38.136000px;}
.hb{height:39.474000px;}
.ha{height:42.960000px;}
.h9{height:48.330000px;}
.h7{height:49.032000px;}
.h8{height:59.928000px;}
.h2{height:65.340000px;}
.h5{height:241.650000px;}
.h4{height:261.360000px;}
.h0{height:1288.347000px;}
.h1{height:1288.500000px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x1{left:97.795350px;}
.x10{left:119.058150px;}
.x5{left:151.163400px;}
.x12{left:168.375150px;}
.x4{left:178.795350px;}
.xa{left:204.701850px;}
.xb{left:225.964350px;}
.x9{left:361.054050px;}
.x2{left:411.175800px;}
.xe{left:418.515150px;}
.xf{left:439.777650px;}
.x11{left:473.243850px;}
.xc{left:525.421350px;}
.xd{left:546.683850px;}
.x3{left:608.864550px;}
.x7{left:698.801850px;}
.x13{left:716.569800px;}
.x6{left:727.144800px;}
.x8{left:749.716350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-7.200000pt;}
.ls6{letter-spacing:-6.400000pt;}
.ls1{letter-spacing:-4.000000pt;}
.ls18{letter-spacing:-1.440000pt;}
.ls14{letter-spacing:-1.296000pt;}
.ls10{letter-spacing:-1.200000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls12{letter-spacing:-1.120000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.933333pt;}
.lse{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.432000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.186667pt;}
.ls4{letter-spacing:-0.149333pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls2{letter-spacing:-0.037333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls16{letter-spacing:1.296000pt;}
.ls19{letter-spacing:1.344000pt;}
.ls1c{letter-spacing:1.536000pt;}
.ls1a{letter-spacing:2.544000pt;}
.ls17{letter-spacing:7.248000pt;}
.ls0{letter-spacing:9.472000pt;}
.ls15{letter-spacing:9.744000pt;}
.wseb{word-spacing:-14.640000pt;}
.wsec{word-spacing:-13.200000pt;}
.ws13{word-spacing:-12.624000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws94{word-spacing:-3.456000pt;}
.ws9c{word-spacing:-3.216000pt;}
.wsf5{word-spacing:-2.928000pt;}
.wsdb{word-spacing:-2.880000pt;}
.ws84{word-spacing:-2.688000pt;}
.wsf7{word-spacing:-2.544000pt;}
.ws7c{word-spacing:-2.496000pt;}
.ws1f{word-spacing:-2.400000pt;}
.wse0{word-spacing:-2.352000pt;}
.ws6b{word-spacing:-2.304000pt;}
.ws8a{word-spacing:-2.256000pt;}
.wsd2{word-spacing:-2.240000pt;}
.ws88{word-spacing:-2.208000pt;}
.wsac{word-spacing:-2.160000pt;}
.ws17{word-spacing:-2.112000pt;}
.wsc6{word-spacing:-2.064000pt;}
.wse8{word-spacing:-2.016000pt;}
.ws11a{word-spacing:-1.968000pt;}
.ws10a{word-spacing:-1.920000pt;}
.ws5b{word-spacing:-1.872000pt;}
.wse3{word-spacing:-1.829333pt;}
.wsa5{word-spacing:-1.824000pt;}
.ws83{word-spacing:-1.776000pt;}
.ws67{word-spacing:-1.728000pt;}
.ws36{word-spacing:-1.680000pt;}
.ws2a{word-spacing:-1.632000pt;}
.ws3f{word-spacing:-1.536000pt;}
.ws9a{word-spacing:-1.440000pt;}
.ws3b{word-spacing:-1.392000pt;}
.ws4e{word-spacing:-1.344000pt;}
.wsd3{word-spacing:-1.232000pt;}
.wsa4{word-spacing:-1.200000pt;}
.wsa0{word-spacing:-1.152000pt;}
.ws9b{word-spacing:-1.104000pt;}
.ws53{word-spacing:-1.056000pt;}
.wsa1{word-spacing:-1.008000pt;}
.wscc{word-spacing:-0.960000pt;}
.ws4b{word-spacing:-0.912000pt;}
.ws27{word-spacing:-0.864000pt;}
.ws49{word-spacing:-0.816000pt;}
.ws61{word-spacing:-0.720000pt;}
.wsa6{word-spacing:-0.672000pt;}
.ws8d{word-spacing:-0.624000pt;}
.ws78{word-spacing:-0.576000pt;}
.wsb4{word-spacing:-0.528000pt;}
.ws2{word-spacing:-0.522667pt;}
.wsd1{word-spacing:-0.485333pt;}
.ws29{word-spacing:-0.480000pt;}
.ws8c{word-spacing:-0.432000pt;}
.ws4{word-spacing:-0.410667pt;}
.wsbb{word-spacing:-0.384000pt;}
.ws3{word-spacing:-0.373333pt;}
.ws16{word-spacing:-0.336000pt;}
.ws11{word-spacing:-0.288000pt;}
.ws8e{word-spacing:-0.240000pt;}
.ws12{word-spacing:-0.213333pt;}
.wse9{word-spacing:-0.192000pt;}
.ws6e{word-spacing:-0.144000pt;}
.ws4c{word-spacing:-0.096000pt;}
.ws1d{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws92{word-spacing:0.048000pt;}
.wsc0{word-spacing:0.096000pt;}
.ws3d{word-spacing:0.144000pt;}
.wsa3{word-spacing:0.192000pt;}
.ws9f{word-spacing:0.240000pt;}
.wsc2{word-spacing:0.288000pt;}
.ws9d{word-spacing:0.336000pt;}
.wsbc{word-spacing:0.384000pt;}
.ws42{word-spacing:0.432000pt;}
.ws6{word-spacing:0.480000pt;}
.wsd0{word-spacing:0.528000pt;}
.ws8{word-spacing:0.576000pt;}
.ws93{word-spacing:0.624000pt;}
.ws28{word-spacing:0.672000pt;}
.ws7f{word-spacing:0.720000pt;}
.ws6f{word-spacing:0.768000pt;}
.ws5e{word-spacing:0.816000pt;}
.ws34{word-spacing:0.864000pt;}
.ws8b{word-spacing:0.960000pt;}
.ws56{word-spacing:1.008000pt;}
.ws74{word-spacing:1.056000pt;}
.ws55{word-spacing:1.104000pt;}
.ws22{word-spacing:1.152000pt;}
.ws1a{word-spacing:1.200000pt;}
.wsa{word-spacing:1.248000pt;}
.ws3a{word-spacing:1.296000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws124{word-spacing:1.381333pt;}
.ws91{word-spacing:1.392000pt;}
.wsf{word-spacing:1.440000pt;}
.wsab{word-spacing:1.488000pt;}
.wsd{word-spacing:1.536000pt;}
.ws63{word-spacing:1.584000pt;}
.ws87{word-spacing:1.632000pt;}
.ws39{word-spacing:1.680000pt;}
.ws9{word-spacing:1.728000pt;}
.ws95{word-spacing:1.776000pt;}
.wsa8{word-spacing:1.824000pt;}
.ws79{word-spacing:1.872000pt;}
.ws71{word-spacing:1.920000pt;}
.ws57{word-spacing:1.968000pt;}
.wsde{word-spacing:2.016000pt;}
.ws33{word-spacing:2.064000pt;}
.ws40{word-spacing:2.112000pt;}
.wse{word-spacing:2.160000pt;}
.wsb{word-spacing:2.208000pt;}
.wsae{word-spacing:2.256000pt;}
.wsb8{word-spacing:2.304000pt;}
.ws10{word-spacing:2.352000pt;}
.ws20{word-spacing:2.400000pt;}
.ws25{word-spacing:2.448000pt;}
.wse5{word-spacing:2.496000pt;}
.ws86{word-spacing:2.544000pt;}
.ws3e{word-spacing:2.592000pt;}
.wsb9{word-spacing:2.640000pt;}
.wsd4{word-spacing:2.688000pt;}
.ws64{word-spacing:2.736000pt;}
.wscd{word-spacing:2.784000pt;}
.ws45{word-spacing:2.832000pt;}
.wsc{word-spacing:2.880000pt;}
.ws35{word-spacing:2.928000pt;}
.ws6c{word-spacing:2.976000pt;}
.wsba{word-spacing:3.024000pt;}
.ws82{word-spacing:3.072000pt;}
.wsdc{word-spacing:3.168000pt;}
.ws46{word-spacing:3.216000pt;}
.ws5a{word-spacing:3.264000pt;}
.ws5f{word-spacing:3.312000pt;}
.ws80{word-spacing:3.360000pt;}
.wsdf{word-spacing:3.408000pt;}
.ws7e{word-spacing:3.456000pt;}
.wse1{word-spacing:3.504000pt;}
.ws76{word-spacing:3.552000pt;}
.ws89{word-spacing:3.600000pt;}
.ws66{word-spacing:3.648000pt;}
.wsa2{word-spacing:3.696000pt;}
.ws68{word-spacing:3.744000pt;}
.wsc1{word-spacing:3.792000pt;}
.ws77{word-spacing:3.840000pt;}
.wsb7{word-spacing:3.888000pt;}
.wsa7{word-spacing:3.936000pt;}
.ws7d{word-spacing:3.984000pt;}
.ws50{word-spacing:4.032000pt;}
.ws18{word-spacing:4.080000pt;}
.ws24{word-spacing:4.128000pt;}
.ws44{word-spacing:4.176000pt;}
.ws7{word-spacing:4.224000pt;}
.ws85{word-spacing:4.272000pt;}
.ws54{word-spacing:4.320000pt;}
.ws37{word-spacing:4.368000pt;}
.ws2b{word-spacing:4.416000pt;}
.ws10e{word-spacing:4.464000pt;}
.ws26{word-spacing:4.512000pt;}
.ws19{word-spacing:4.560000pt;}
.ws112{word-spacing:4.608000pt;}
.ws1c{word-spacing:4.656000pt;}
.wse2{word-spacing:4.666667pt;}
.ws72{word-spacing:4.704000pt;}
.ws4a{word-spacing:4.752000pt;}
.wsc7{word-spacing:4.800000pt;}
.wsb3{word-spacing:4.848000pt;}
.ws6d{word-spacing:4.944000pt;}
.ws43{word-spacing:4.992000pt;}
.ws6a{word-spacing:5.040000pt;}
.wse7{word-spacing:5.088000pt;}
.ws58{word-spacing:5.136000pt;}
.ws3c{word-spacing:5.184000pt;}
.ws99{word-spacing:5.232000pt;}
.wsd8{word-spacing:5.280000pt;}
.wscf{word-spacing:5.376000pt;}
.ws110{word-spacing:5.424000pt;}
.ws23{word-spacing:5.472000pt;}
.ws81{word-spacing:5.520000pt;}
.ws60{word-spacing:5.568000pt;}
.ws4d{word-spacing:5.616000pt;}
.ws1e{word-spacing:5.664000pt;}
.ws70{word-spacing:5.712000pt;}
.ws69{word-spacing:5.760000pt;}
.ws108{word-spacing:5.808000pt;}
.wsaf{word-spacing:5.856000pt;}
.ws101{word-spacing:5.904000pt;}
.ws62{word-spacing:6.000000pt;}
.wsb5{word-spacing:6.048000pt;}
.ws14{word-spacing:6.144000pt;}
.wsbf{word-spacing:6.192000pt;}
.wsf1{word-spacing:6.240000pt;}
.ws96{word-spacing:6.288000pt;}
.wsd7{word-spacing:6.384000pt;}
.ws5{word-spacing:6.400000pt;}
.wsbe{word-spacing:6.432000pt;}
.ws47{word-spacing:6.480000pt;}
.ws65{word-spacing:6.528000pt;}
.ws97{word-spacing:6.576000pt;}
.ws9e{word-spacing:6.624000pt;}
.ws2e{word-spacing:6.672000pt;}
.wsce{word-spacing:6.720000pt;}
.wsad{word-spacing:6.816000pt;}
.ws73{word-spacing:6.864000pt;}
.ws51{word-spacing:6.960000pt;}
.wsaa{word-spacing:7.056000pt;}
.ws41{word-spacing:7.104000pt;}
.wsbd{word-spacing:7.152000pt;}
.ws100{word-spacing:7.200000pt;}
.ws2d{word-spacing:7.296000pt;}
.ws5c{word-spacing:7.344000pt;}
.ws7b{word-spacing:7.488000pt;}
.ws1b{word-spacing:7.536000pt;}
.wsb1{word-spacing:7.584000pt;}
.ws75{word-spacing:7.632000pt;}
.ws15{word-spacing:7.680000pt;}
.wsb0{word-spacing:7.728000pt;}
.ws30{word-spacing:7.824000pt;}
.wse4{word-spacing:7.872000pt;}
.ws11c{word-spacing:7.920000pt;}
.wsea{word-spacing:8.064000pt;}
.ws116{word-spacing:8.208000pt;}
.wsb2{word-spacing:8.400000pt;}
.ws32{word-spacing:8.448000pt;}
.ws38{word-spacing:8.496000pt;}
.ws5d{word-spacing:8.544000pt;}
.wsca{word-spacing:8.640000pt;}
.ws105{word-spacing:8.688000pt;}
.wscb{word-spacing:8.736000pt;}
.ws10f{word-spacing:8.784000pt;}
.wsd5{word-spacing:9.264000pt;}
.ws117{word-spacing:9.312000pt;}
.ws2c{word-spacing:9.360000pt;}
.ws113{word-spacing:9.408000pt;}
.ws10b{word-spacing:9.456000pt;}
.wsd9{word-spacing:9.504000pt;}
.ws21{word-spacing:9.552000pt;}
.ws122{word-spacing:9.888000pt;}
.wsf8{word-spacing:9.936000pt;}
.ws59{word-spacing:9.984000pt;}
.ws90{word-spacing:10.128000pt;}
.ws7a{word-spacing:10.176000pt;}
.wsc8{word-spacing:10.224000pt;}
.ws107{word-spacing:10.272000pt;}
.ws4f{word-spacing:10.416000pt;}
.wsed{word-spacing:10.752000pt;}
.ws98{word-spacing:10.896000pt;}
.wsfa{word-spacing:11.328000pt;}
.ws8f{word-spacing:11.376000pt;}
.ws48{word-spacing:11.664000pt;}
.ws104{word-spacing:11.904000pt;}
.ws10c{word-spacing:11.952000pt;}
.wsa9{word-spacing:12.144000pt;}
.ws11e{word-spacing:12.240000pt;}
.ws11f{word-spacing:12.480000pt;}
.wsb6{word-spacing:12.672000pt;}
.ws31{word-spacing:12.720000pt;}
.ws115{word-spacing:12.768000pt;}
.wse6{word-spacing:12.816000pt;}
.wsfc{word-spacing:12.864000pt;}
.wsd6{word-spacing:13.056000pt;}
.ws52{word-spacing:13.344000pt;}
.ws111{word-spacing:13.536000pt;}
.ws123{word-spacing:13.664000pt;}
.wsf9{word-spacing:13.872000pt;}
.ws11d{word-spacing:13.920000pt;}
.wsc3{word-spacing:14.160000pt;}
.ws102{word-spacing:14.208000pt;}
.wsc5{word-spacing:14.448000pt;}
.ws11b{word-spacing:14.640000pt;}
.wsc4{word-spacing:15.312000pt;}
.wsda{word-spacing:15.504000pt;}
.ws103{word-spacing:15.648000pt;}
.wsfe{word-spacing:15.984000pt;}
.wsdd{word-spacing:16.224000pt;}
.wsfb{word-spacing:16.272000pt;}
.wsf2{word-spacing:16.560000pt;}
.ws109{word-spacing:16.608000pt;}
.ws114{word-spacing:16.944000pt;}
.ws119{word-spacing:17.040000pt;}
.ws121{word-spacing:17.856000pt;}
.ws120{word-spacing:18.240000pt;}
.wsee{word-spacing:18.816000pt;}
.wsc9{word-spacing:18.912000pt;}
.ws10d{word-spacing:19.008000pt;}
.wsfd{word-spacing:22.416000pt;}
.wsf3{word-spacing:24.432000pt;}
.wsf0{word-spacing:27.648000pt;}
.ws118{word-spacing:32.208000pt;}
.ws106{word-spacing:33.072000pt;}
.wsf4{word-spacing:39.168000pt;}
.wsf6{word-spacing:52.512000pt;}
.wsef{word-spacing:55.008000pt;}
.wsff{word-spacing:62.976000pt;}
._b{margin-left:-9.888000pt;}
._4{margin-left:-6.512000pt;}
._5{margin-left:-5.328000pt;}
._6{margin-left:-4.214933pt;}
._8{margin-left:-2.989333pt;}
._7{margin-left:-2.014400pt;}
._1{margin-left:-1.060267pt;}
._0{width:1.015467pt;}
._2{width:2.045867pt;}
._3{width:7.176000pt;}
._d{width:10.464000pt;}
._c{width:12.000000pt;}
._e{width:14.654400pt;}
._9{width:36.443733pt;}
._a{width:930.608000pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:240.000000pt;}
.fs2{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y21b{bottom:80.310400pt;}
.y98{bottom:80.310533pt;}
.y16b{bottom:80.382267pt;}
.y29{bottom:80.404667pt;}
.y116{bottom:80.414400pt;}
.y1a4{bottom:80.454400pt;}
.y63{bottom:80.454533pt;}
.yce{bottom:80.457067pt;}
.y145{bottom:80.478267pt;}
.yf2{bottom:80.510400pt;}
.yb3{bottom:80.529067pt;}
.y1ce{bottom:80.547733pt;}
.y1ac{bottom:80.587733pt;}
.y1b6{bottom:80.590400pt;}
.y23d{bottom:80.848000pt;}
.y23c{bottom:92.178667pt;}
.y28{bottom:92.404667pt;}
.y21a{bottom:95.646400pt;}
.y97{bottom:95.646533pt;}
.y16a{bottom:95.718267pt;}
.y115{bottom:95.750400pt;}
.y1a3{bottom:95.790400pt;}
.y62{bottom:95.790533pt;}
.ycd{bottom:95.793067pt;}
.y144{bottom:95.814267pt;}
.yf1{bottom:95.846400pt;}
.yb2{bottom:95.865067pt;}
.y1cd{bottom:95.883733pt;}
.y1ab{bottom:95.923733pt;}
.y1b5{bottom:95.926400pt;}
.y23b{bottom:103.509333pt;}
.y27{bottom:104.404667pt;}
.y219{bottom:110.982400pt;}
.y96{bottom:110.982533pt;}
.y169{bottom:111.054267pt;}
.y114{bottom:111.086400pt;}
.y1a2{bottom:111.126400pt;}
.y61{bottom:111.126533pt;}
.ycc{bottom:111.129067pt;}
.y143{bottom:111.150267pt;}
.yf0{bottom:111.182400pt;}
.yb1{bottom:111.201067pt;}
.y1cc{bottom:111.219733pt;}
.y1aa{bottom:111.259733pt;}
.y1b4{bottom:111.262400pt;}
.y218{bottom:126.318400pt;}
.y95{bottom:126.318533pt;}
.y168{bottom:126.390267pt;}
.y113{bottom:126.422400pt;}
.y1a1{bottom:126.462400pt;}
.y60{bottom:126.462533pt;}
.ycb{bottom:126.465067pt;}
.y142{bottom:126.486267pt;}
.yef{bottom:126.518400pt;}
.yb0{bottom:126.537067pt;}
.y1cb{bottom:126.555733pt;}
.y22{bottom:126.566400pt;}
.y1a9{bottom:126.595733pt;}
.y1b3{bottom:126.598400pt;}
.y217{bottom:141.654400pt;}
.y94{bottom:141.654533pt;}
.y167{bottom:141.726267pt;}
.y112{bottom:141.758400pt;}
.y1a0{bottom:141.798400pt;}
.y5f{bottom:141.798533pt;}
.yca{bottom:141.801067pt;}
.y141{bottom:141.822267pt;}
.yee{bottom:141.854400pt;}
.yaf{bottom:141.873067pt;}
.y1ca{bottom:141.891733pt;}
.y21{bottom:141.902400pt;}
.y1a8{bottom:141.931733pt;}
.y216{bottom:156.990400pt;}
.y93{bottom:156.990533pt;}
.y166{bottom:157.062267pt;}
.y111{bottom:157.094400pt;}
.y19f{bottom:157.134400pt;}
.y5e{bottom:157.134533pt;}
.yc9{bottom:157.137067pt;}
.y140{bottom:157.158267pt;}
.yed{bottom:157.190400pt;}
.yae{bottom:157.209067pt;}
.y1c9{bottom:157.227733pt;}
.y20{bottom:157.238400pt;}
.y215{bottom:172.326400pt;}
.y92{bottom:172.326533pt;}
.y165{bottom:172.398267pt;}
.y110{bottom:172.430400pt;}
.y19e{bottom:172.470400pt;}
.y5d{bottom:172.470533pt;}
.yc8{bottom:172.473067pt;}
.y13f{bottom:172.494267pt;}
.yec{bottom:172.526400pt;}
.yad{bottom:172.545067pt;}
.y1c8{bottom:172.563733pt;}
.y214{bottom:187.662400pt;}
.y91{bottom:187.662533pt;}
.y164{bottom:187.734267pt;}
.y10f{bottom:187.766400pt;}
.y19d{bottom:187.806400pt;}
.y5c{bottom:187.806533pt;}
.yc7{bottom:187.809067pt;}
.y13e{bottom:187.830267pt;}
.yeb{bottom:187.862400pt;}
.yac{bottom:187.881067pt;}
.y1c7{bottom:187.899733pt;}
.y1f{bottom:187.910400pt;}
.y1b2{bottom:192.128400pt;}
.y1a6{bottom:197.274267pt;}
.y1b1{bottom:202.796400pt;}
.y213{bottom:202.998400pt;}
.y90{bottom:202.998533pt;}
.y163{bottom:203.070267pt;}
.y10e{bottom:203.102400pt;}
.y19c{bottom:203.142400pt;}
.y5b{bottom:203.142533pt;}
.yc6{bottom:203.145067pt;}
.y13d{bottom:203.166267pt;}
.yea{bottom:203.198400pt;}
.yab{bottom:203.217067pt;}
.y1c6{bottom:203.235733pt;}
.y1e{bottom:203.246400pt;}
.y212{bottom:218.334400pt;}
.y8f{bottom:218.334533pt;}
.y162{bottom:218.406267pt;}
.y10d{bottom:218.438400pt;}
.y19b{bottom:218.478400pt;}
.y5a{bottom:218.478533pt;}
.yc5{bottom:218.481067pt;}
.y13c{bottom:218.502267pt;}
.ye9{bottom:218.534400pt;}
.yaa{bottom:218.553067pt;}
.y1c5{bottom:218.571733pt;}
.y1d{bottom:218.582400pt;}
.y211{bottom:233.670400pt;}
.y8e{bottom:233.670533pt;}
.y161{bottom:233.742267pt;}
.y10c{bottom:233.774400pt;}
.y19a{bottom:233.814400pt;}
.y59{bottom:233.814533pt;}
.yc4{bottom:233.817067pt;}
.y13b{bottom:233.838267pt;}
.ye8{bottom:233.870400pt;}
.ya9{bottom:233.889067pt;}
.y1c4{bottom:233.907733pt;}
.y1c{bottom:233.918400pt;}
.y210{bottom:249.006400pt;}
.y8d{bottom:249.006533pt;}
.y160{bottom:249.078267pt;}
.y10b{bottom:249.110400pt;}
.y199{bottom:249.150400pt;}
.y58{bottom:249.150533pt;}
.yc3{bottom:249.153067pt;}
.y13a{bottom:249.174267pt;}
.ye7{bottom:249.206400pt;}
.ya8{bottom:249.225067pt;}
.y1c3{bottom:249.243733pt;}
.y1b{bottom:249.254400pt;}
.y20f{bottom:264.342400pt;}
.y8c{bottom:264.342533pt;}
.y15f{bottom:264.414267pt;}
.y10a{bottom:264.446400pt;}
.y198{bottom:264.486400pt;}
.y57{bottom:264.486533pt;}
.yc2{bottom:264.489067pt;}
.ye6{bottom:264.542400pt;}
.ya7{bottom:264.561067pt;}
.y1c2{bottom:264.579733pt;}
.y1a{bottom:264.590400pt;}
.y20e{bottom:279.678400pt;}
.y8b{bottom:279.678533pt;}
.y15e{bottom:279.750267pt;}
.y109{bottom:279.782400pt;}
.y197{bottom:279.822400pt;}
.y56{bottom:279.822533pt;}
.yc1{bottom:279.825067pt;}
.y139{bottom:279.846267pt;}
.ye5{bottom:279.878400pt;}
.ya6{bottom:279.897067pt;}
.y1c1{bottom:279.915733pt;}
.y19{bottom:279.926400pt;}
.y20d{bottom:295.014400pt;}
.y8a{bottom:295.014533pt;}
.y15d{bottom:295.086267pt;}
.y108{bottom:295.118400pt;}
.y196{bottom:295.158400pt;}
.y55{bottom:295.158533pt;}
.yc0{bottom:295.161067pt;}
.y138{bottom:295.182267pt;}
.ya5{bottom:295.233067pt;}
.y1c0{bottom:295.251733pt;}
.y18{bottom:295.262400pt;}
.y20c{bottom:310.350400pt;}
.y89{bottom:310.350533pt;}
.y15c{bottom:310.422267pt;}
.y107{bottom:310.454400pt;}
.y195{bottom:310.494400pt;}
.y54{bottom:310.494533pt;}
.ybf{bottom:310.497067pt;}
.y137{bottom:310.518267pt;}
.ye4{bottom:310.550400pt;}
.ya4{bottom:310.569067pt;}
.y1bf{bottom:310.587733pt;}
.y17{bottom:310.598400pt;}
.y20b{bottom:325.686400pt;}
.y88{bottom:325.686533pt;}
.y15b{bottom:325.758267pt;}
.y106{bottom:325.790400pt;}
.y194{bottom:325.830400pt;}
.y53{bottom:325.830533pt;}
.ybe{bottom:325.833067pt;}
.y136{bottom:325.854267pt;}
.ye3{bottom:325.886400pt;}
.ya3{bottom:325.905067pt;}
.y1be{bottom:325.923733pt;}
.y16{bottom:325.931733pt;}
.y20a{bottom:341.022400pt;}
.y87{bottom:341.022533pt;}
.y15a{bottom:341.094267pt;}
.y105{bottom:341.126400pt;}
.y193{bottom:341.166400pt;}
.y52{bottom:341.166533pt;}
.ybd{bottom:341.169067pt;}
.y135{bottom:341.190267pt;}
.ye2{bottom:341.222400pt;}
.ya2{bottom:341.241067pt;}
.y1bd{bottom:341.259733pt;}
.y209{bottom:356.358400pt;}
.y86{bottom:356.358533pt;}
.y159{bottom:356.430267pt;}
.y104{bottom:356.462400pt;}
.y192{bottom:356.502400pt;}
.y51{bottom:356.502533pt;}
.ybc{bottom:356.505067pt;}
.y134{bottom:356.526267pt;}
.ye1{bottom:356.558400pt;}
.ya1{bottom:356.577067pt;}
.y1bc{bottom:356.595733pt;}
.y208{bottom:371.694400pt;}
.y85{bottom:371.694533pt;}
.y158{bottom:371.766267pt;}
.y103{bottom:371.798400pt;}
.y191{bottom:371.838400pt;}
.y50{bottom:371.838533pt;}
.ybb{bottom:371.841067pt;}
.y133{bottom:371.862267pt;}
.ye0{bottom:371.894400pt;}
.y15{bottom:371.902400pt;}
.ya0{bottom:371.913067pt;}
.y1bb{bottom:371.931733pt;}
.y207{bottom:387.030400pt;}
.y84{bottom:387.030533pt;}
.y157{bottom:387.102267pt;}
.y102{bottom:387.134400pt;}
.y190{bottom:387.174400pt;}
.y4f{bottom:387.174533pt;}
.yba{bottom:387.177067pt;}
.y132{bottom:387.198267pt;}
.ydf{bottom:387.230400pt;}
.y14{bottom:387.238400pt;}
.y9f{bottom:387.249067pt;}
.y206{bottom:402.366400pt;}
.y83{bottom:402.366533pt;}
.y156{bottom:402.438267pt;}
.y101{bottom:402.470400pt;}
.y18f{bottom:402.510400pt;}
.y4e{bottom:402.510533pt;}
.yb9{bottom:402.513067pt;}
.y131{bottom:402.534267pt;}
.yde{bottom:402.566400pt;}
.y9e{bottom:402.585067pt;}
.y205{bottom:417.702400pt;}
.y82{bottom:417.702533pt;}
.y155{bottom:417.774267pt;}
.y100{bottom:417.806400pt;}
.y18e{bottom:417.846400pt;}
.y4d{bottom:417.846533pt;}
.yb8{bottom:417.849067pt;}
.y130{bottom:417.870267pt;}
.ydd{bottom:417.902400pt;}
.y13{bottom:417.910400pt;}
.y9d{bottom:417.921067pt;}
.y204{bottom:433.038400pt;}
.y81{bottom:433.038533pt;}
.y154{bottom:433.110267pt;}
.yff{bottom:433.142400pt;}
.y18d{bottom:433.182400pt;}
.y4c{bottom:433.182533pt;}
.yb7{bottom:433.185067pt;}
.y12f{bottom:433.206267pt;}
.ydc{bottom:433.238400pt;}
.y12{bottom:433.246400pt;}
.y9c{bottom:433.257067pt;}
.y1ba{bottom:434.877733pt;}
.y1b0{bottom:441.897733pt;}
.y1b9{bottom:445.545733pt;}
.y203{bottom:448.374400pt;}
.y80{bottom:448.374533pt;}
.y23a{bottom:448.434400pt;}
.y153{bottom:448.446267pt;}
.yfe{bottom:448.478400pt;}
.y18c{bottom:448.518400pt;}
.y4b{bottom:448.518533pt;}
.yb6{bottom:448.521067pt;}
.y12e{bottom:448.542267pt;}
.ydb{bottom:448.574400pt;}
.y11{bottom:448.582400pt;}
.y9b{bottom:448.593067pt;}
.y1a5{bottom:449.610267pt;}
.y1af{bottom:452.565733pt;}
.y202{bottom:463.710400pt;}
.y7f{bottom:463.710533pt;}
.y239{bottom:463.770400pt;}
.y152{bottom:463.782267pt;}
.yfd{bottom:463.814400pt;}
.y18b{bottom:463.854400pt;}
.y4a{bottom:463.854533pt;}
.yb5{bottom:463.857067pt;}
.y12d{bottom:463.878267pt;}
.yda{bottom:463.910400pt;}
.y10{bottom:463.918400pt;}
.y9a{bottom:463.929067pt;}
.y201{bottom:479.046400pt;}
.y7e{bottom:479.046533pt;}
.y238{bottom:479.106400pt;}
.y151{bottom:479.118267pt;}
.yfc{bottom:479.150400pt;}
.y18a{bottom:479.190400pt;}
.y49{bottom:479.190533pt;}
.yb4{bottom:479.193067pt;}
.y12c{bottom:479.214267pt;}
.yd9{bottom:479.246400pt;}
.yf{bottom:479.254400pt;}
.y99{bottom:479.265067pt;}
.y200{bottom:494.382400pt;}
.y7d{bottom:494.382533pt;}
.y237{bottom:494.442400pt;}
.y150{bottom:494.454267pt;}
.yfb{bottom:494.486400pt;}
.y189{bottom:494.526400pt;}
.y48{bottom:494.526533pt;}
.y12b{bottom:494.550267pt;}
.yd8{bottom:494.582400pt;}
.ye{bottom:494.590400pt;}
.y1ff{bottom:509.718400pt;}
.y236{bottom:509.778400pt;}
.y14f{bottom:509.790267pt;}
.yfa{bottom:509.822400pt;}
.y188{bottom:509.862400pt;}
.y47{bottom:509.862533pt;}
.y12a{bottom:509.886267pt;}
.yd7{bottom:509.918400pt;}
.yd{bottom:509.926400pt;}
.y1fe{bottom:525.054400pt;}
.y7c{bottom:525.054533pt;}
.y235{bottom:525.114400pt;}
.y14e{bottom:525.126267pt;}
.yf9{bottom:525.158400pt;}
.y187{bottom:525.198400pt;}
.y46{bottom:525.198533pt;}
.y129{bottom:525.222267pt;}
.yd6{bottom:525.254400pt;}
.yc{bottom:525.262400pt;}
.yd1{bottom:538.430933pt;}
.y1fd{bottom:540.390400pt;}
.y7b{bottom:540.390533pt;}
.y234{bottom:540.450400pt;}
.y14d{bottom:540.462267pt;}
.yf8{bottom:540.494400pt;}
.y186{bottom:540.534400pt;}
.y45{bottom:540.534533pt;}
.y128{bottom:540.558267pt;}
.yd5{bottom:540.590400pt;}
.yb{bottom:540.598400pt;}
.y1fc{bottom:555.726400pt;}
.y7a{bottom:555.726533pt;}
.y233{bottom:555.786400pt;}
.y14c{bottom:555.798267pt;}
.yf7{bottom:555.830400pt;}
.y185{bottom:555.870400pt;}
.y44{bottom:555.870533pt;}
.y127{bottom:555.894267pt;}
.yd4{bottom:555.926400pt;}
.y1fb{bottom:571.062400pt;}
.y79{bottom:571.062533pt;}
.y232{bottom:571.122400pt;}
.y14b{bottom:571.134267pt;}
.yf6{bottom:571.166400pt;}
.y184{bottom:571.206400pt;}
.y43{bottom:571.206533pt;}
.y126{bottom:571.230267pt;}
.yd3{bottom:571.262400pt;}
.y1fa{bottom:586.398400pt;}
.y78{bottom:586.398533pt;}
.y231{bottom:586.458400pt;}
.y14a{bottom:586.470267pt;}
.y1e4{bottom:586.482400pt;}
.yf5{bottom:586.502400pt;}
.y183{bottom:586.542400pt;}
.y42{bottom:586.542533pt;}
.y125{bottom:586.566267pt;}
.yd2{bottom:586.598400pt;}
.y1f9{bottom:601.734400pt;}
.y77{bottom:601.734533pt;}
.y230{bottom:601.794400pt;}
.y149{bottom:601.806267pt;}
.y1e3{bottom:601.818400pt;}
.yf4{bottom:601.838400pt;}
.y182{bottom:601.878400pt;}
.y41{bottom:601.878533pt;}
.y124{bottom:601.902267pt;}
.y1f8{bottom:617.070400pt;}
.y76{bottom:617.070533pt;}
.y22f{bottom:617.130400pt;}
.y148{bottom:617.142267pt;}
.y1e2{bottom:617.154400pt;}
.yf3{bottom:617.174400pt;}
.y181{bottom:617.214400pt;}
.y40{bottom:617.214533pt;}
.y123{bottom:617.238267pt;}
.y1f7{bottom:632.406400pt;}
.y75{bottom:632.406533pt;}
.y22e{bottom:632.466400pt;}
.y147{bottom:632.478267pt;}
.y1e1{bottom:632.490400pt;}
.y180{bottom:632.550400pt;}
.y3f{bottom:632.550533pt;}
.y122{bottom:632.574267pt;}
.y119{bottom:640.149200pt;}
.yd0{bottom:645.932267pt;}
.y1f6{bottom:647.742400pt;}
.y74{bottom:647.742533pt;}
.y22d{bottom:647.802400pt;}
.y146{bottom:647.814267pt;}
.y1e0{bottom:647.826400pt;}
.y17f{bottom:647.886400pt;}
.y3e{bottom:647.886533pt;}
.y121{bottom:647.910267pt;}
.y26{bottom:651.278400pt;}
.y1f5{bottom:663.078400pt;}
.y73{bottom:663.078533pt;}
.y22c{bottom:663.138400pt;}
.y1df{bottom:663.162400pt;}
.y17e{bottom:663.222400pt;}
.y3d{bottom:663.222533pt;}
.y120{bottom:663.246267pt;}
.y25{bottom:665.942400pt;}
.y118{bottom:678.247867pt;}
.y1f4{bottom:678.414400pt;}
.y72{bottom:678.414533pt;}
.y22b{bottom:678.474400pt;}
.y1de{bottom:678.498400pt;}
.y17d{bottom:678.558400pt;}
.y3c{bottom:678.558533pt;}
.y11f{bottom:678.582267pt;}
.y24{bottom:680.606400pt;}
.ycf{bottom:682.826933pt;}
.y1b8{bottom:689.733733pt;}
.y1ae{bottom:693.001733pt;}
.y1f3{bottom:693.750400pt;}
.y71{bottom:693.750533pt;}
.y22a{bottom:693.810400pt;}
.y1dd{bottom:693.834400pt;}
.y17c{bottom:693.894400pt;}
.y3b{bottom:693.894533pt;}
.y23{bottom:695.270400pt;}
.y1a7{bottom:695.487600pt;}
.y1b7{bottom:700.401733pt;}
.y16d{bottom:701.598800pt;}
.y1ad{bottom:703.669733pt;}
.y1f2{bottom:709.086400pt;}
.y70{bottom:709.086533pt;}
.y229{bottom:709.146400pt;}
.y1dc{bottom:709.170400pt;}
.y17b{bottom:709.230400pt;}
.y3a{bottom:709.230533pt;}
.y11e{bottom:709.254267pt;}
.y1f1{bottom:724.422400pt;}
.y6f{bottom:724.422533pt;}
.y228{bottom:724.482400pt;}
.y1db{bottom:724.506400pt;}
.y17a{bottom:724.566400pt;}
.y39{bottom:724.566533pt;}
.y11d{bottom:724.590267pt;}
.y1f0{bottom:739.758400pt;}
.y6e{bottom:739.758533pt;}
.y227{bottom:739.818400pt;}
.y1da{bottom:739.842400pt;}
.y179{bottom:739.902400pt;}
.y38{bottom:739.902533pt;}
.y11c{bottom:739.926267pt;}
.y1ef{bottom:755.094400pt;}
.y226{bottom:755.154400pt;}
.y1d9{bottom:755.178400pt;}
.y178{bottom:755.238400pt;}
.y37{bottom:755.238533pt;}
.y11b{bottom:755.262267pt;}
.y1ee{bottom:770.430400pt;}
.y6d{bottom:770.430533pt;}
.y225{bottom:770.490400pt;}
.y1d8{bottom:770.514400pt;}
.y177{bottom:770.574400pt;}
.y36{bottom:770.574533pt;}
.y11a{bottom:770.598267pt;}
.y1ed{bottom:785.766400pt;}
.y6c{bottom:785.766533pt;}
.y224{bottom:785.826400pt;}
.y1d7{bottom:785.850400pt;}
.y176{bottom:785.910400pt;}
.y35{bottom:785.910533pt;}
.y9{bottom:797.910800pt;}
.y1ec{bottom:801.102400pt;}
.y6b{bottom:801.102533pt;}
.y223{bottom:801.162400pt;}
.y1d6{bottom:801.186400pt;}
.y175{bottom:801.246400pt;}
.y34{bottom:801.246533pt;}
.y1eb{bottom:816.438400pt;}
.y6a{bottom:816.438533pt;}
.y222{bottom:816.498400pt;}
.y1d5{bottom:816.522400pt;}
.y174{bottom:816.582400pt;}
.y33{bottom:816.582533pt;}
.y16c{bottom:829.913467pt;}
.y1ea{bottom:831.774400pt;}
.y69{bottom:831.774533pt;}
.y221{bottom:831.834400pt;}
.y1d4{bottom:831.858400pt;}
.y173{bottom:831.918400pt;}
.y32{bottom:831.918533pt;}
.y117{bottom:845.267867pt;}
.y1e9{bottom:847.110400pt;}
.y68{bottom:847.110533pt;}
.y220{bottom:847.170400pt;}
.y1d3{bottom:847.194400pt;}
.y172{bottom:847.254400pt;}
.y31{bottom:847.254533pt;}
.y8{bottom:856.590800pt;}
.y1e8{bottom:862.446400pt;}
.y67{bottom:862.446533pt;}
.y21f{bottom:862.506400pt;}
.y1d2{bottom:862.530400pt;}
.y171{bottom:862.590400pt;}
.y30{bottom:862.590533pt;}
.y1e7{bottom:877.782400pt;}
.y66{bottom:877.782533pt;}
.y21e{bottom:877.842400pt;}
.y1d1{bottom:877.866400pt;}
.y170{bottom:877.926400pt;}
.y2f{bottom:877.926533pt;}
.y1e6{bottom:893.118400pt;}
.y65{bottom:893.118533pt;}
.y21d{bottom:893.178400pt;}
.y1d0{bottom:893.202400pt;}
.y16f{bottom:893.262400pt;}
.y2e{bottom:893.262533pt;}
.y1e5{bottom:908.454400pt;}
.y64{bottom:908.454533pt;}
.y21c{bottom:908.514400pt;}
.y1cf{bottom:908.538400pt;}
.y16e{bottom:908.598400pt;}
.y2d{bottom:908.598533pt;}
.y7{bottom:915.270800pt;}
.ya{bottom:999.542667pt;}
.y5{bottom:1000.324267pt;}
.y2c{bottom:1009.586800pt;}
.y6{bottom:1009.841333pt;}
.y4{bottom:1010.992267pt;}
.y2b{bottom:1017.880667pt;}
.y3{bottom:1021.660267pt;}
.y2a{bottom:1028.548667pt;}
.y2{bottom:1032.328267pt;}
.y1{bottom:1043.987867pt;}
.h6{height:31.104000pt;}
.h3{height:33.413333pt;}
.hc{height:33.898667pt;}
.hb{height:35.088000pt;}
.ha{height:38.186667pt;}
.h9{height:42.960000pt;}
.h7{height:43.584000pt;}
.h8{height:53.269333pt;}
.h2{height:58.080000pt;}
.h5{height:214.800000pt;}
.h4{height:232.320000pt;}
.h0{height:1145.197333pt;}
.h1{height:1145.333333pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1{left:86.929200pt;}
.x10{left:105.829467pt;}
.x5{left:134.367467pt;}
.x12{left:149.666800pt;}
.x4{left:158.929200pt;}
.xa{left:181.957200pt;}
.xb{left:200.857200pt;}
.x9{left:320.936933pt;}
.x2{left:365.489600pt;}
.xe{left:372.013467pt;}
.xf{left:390.913467pt;}
.x11{left:420.661200pt;}
.xc{left:467.041200pt;}
.xd{left:485.941200pt;}
.x3{left:541.212933pt;}
.x7{left:621.157200pt;}
.x13{left:636.950933pt;}
.x6{left:646.350933pt;}
.x8{left:666.414533pt;}
}




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