
    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_d13d7ba2b4461f9a6d683a69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042000;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_9716695c856162251fb3088b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_131d24754cab174d0ecc2ad4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.955000;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_50a353cff94062209a460d59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_e5c9f3dbce1bc91bd0fd57e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084000;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_89cfdd3192d1eb63f6dbc42f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_29afc06fc37dcf4b89a3cc13.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912000;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_0f4c9ffb6025a66843ea08c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_04204fd058e8b383cbc27af7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_5a9becede940a39d6d35914e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_964b53df9764bcc9d2410724.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_292f4894db5d4c30d94d1ed5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_79a59639dd8b0fc89b09a083.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.693359;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_fa5eba6c248917d99b66a635.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d398bccf2b1034841dff6002.woff2')format("woff");}.fff{font-family:fff;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b549889ca525e9cac7f389a5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_779e0cdacea868fa38b71f21.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.932000;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);}
.v2{vertical-align:-17.100000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.500000px;}
.v1{vertical-align:17.100000px;}
.v4{vertical-align:27.000000px;}
.v5{vertical-align:40.500000px;}
.v6{vertical-align:54.000000px;}
.v7{vertical-align:67.500000px;}
.ls4{letter-spacing:-4.617000px;}
.lsd{letter-spacing:-1.026000px;}
.ls1e{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.570000px;}
.ls1c{letter-spacing:-0.456000px;}
.ls1a{letter-spacing:-0.450000px;}
.lsc{letter-spacing:-0.285000px;}
.ls1f{letter-spacing:-0.225000px;}
.ls22{letter-spacing:-0.210000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000300px;}
.ls6{letter-spacing:0.000600px;}
.ls5{letter-spacing:0.001200px;}
.lsb{letter-spacing:0.198900px;}
.ls9{letter-spacing:0.199500px;}
.ls8{letter-spacing:0.283800px;}
.lsa{letter-spacing:0.284400px;}
.ls7{letter-spacing:0.285000px;}
.ls20{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.456000px;}
.ls0{letter-spacing:0.570000px;}
.ls1b{letter-spacing:2.806200px;}
.ls21{letter-spacing:8.145000px;}
.ls19{letter-spacing:48.098100px;}
.ls18{letter-spacing:57.014100px;}
.ls1d{letter-spacing:178.515300px;}
.ls15{letter-spacing:180.057300px;}
.ls10{letter-spacing:274.785900px;}
.lsf{letter-spacing:317.401500px;}
.ls17{letter-spacing:371.151900px;}
.ls14{letter-spacing:378.533100px;}
.ls16{letter-spacing:583.345500px;}
.ls11{letter-spacing:666.078000px;}
.lse{letter-spacing:716.951700px;}
.ls13{letter-spacing:815.201700px;}
.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;}
}
.ws67{word-spacing:-13.395000px;}
.wsd7{word-spacing:-13.110000px;}
.ws2{word-spacing:-11.556000px;}
.ws0{word-spacing:-10.914000px;}
.wsa2{word-spacing:-9.630000px;}
.wsa0{word-spacing:-9.450000px;}
.ws68{word-spacing:-9.376500px;}
.wsa1{word-spacing:-6.741000px;}
.wsa5{word-spacing:-6.291600px;}
.wsbb{word-spacing:-5.400000px;}
.wsbc{word-spacing:-4.230000px;}
.wsf4{word-spacing:-1.998000px;}
.wsfc{word-spacing:-1.620000px;}
.ws89{word-spacing:-1.539000px;}
.wsde{word-spacing:-1.425000px;}
.ws44{word-spacing:-1.254000px;}
.ws95{word-spacing:-1.197000px;}
.ws74{word-spacing:-1.140000px;}
.ws21{word-spacing:-1.134000px;}
.ws9{word-spacing:-1.083000px;}
.ws8a{word-spacing:-1.026000px;}
.ws1c{word-spacing:-0.969000px;}
.wsc5{word-spacing:-0.912000px;}
.ws58{word-spacing:-0.855000px;}
.ws36{word-spacing:-0.798000px;}
.wsc4{word-spacing:-0.741000px;}
.wsd4{word-spacing:-0.714000px;}
.ws6c{word-spacing:-0.684000px;}
.wsbd{word-spacing:-0.672000px;}
.ws4{word-spacing:-0.627000px;}
.ws88{word-spacing:-0.570000px;}
.wse7{word-spacing:-0.546000px;}
.ws1{word-spacing:-0.513000px;}
.ws4e{word-spacing:-0.456000px;}
.wse6{word-spacing:-0.450000px;}
.ws53{word-spacing:-0.399000px;}
.ws56{word-spacing:-0.342000px;}
.ws1f{word-spacing:-0.324000px;}
.ws49{word-spacing:-0.285000px;}
.wsbf{word-spacing:-0.252000px;}
.ws4f{word-spacing:-0.228000px;}
.ws27{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.171000px;}
.ws37{word-spacing:-0.114000px;}
.wsc{word-spacing:-0.057000px;}
.wsf8{word-spacing:-0.054000px;}
.ws9f{word-spacing:-0.045000px;}
.wsa6{word-spacing:-0.042000px;}
.ws3{word-spacing:0.000000px;}
.wsea{word-spacing:0.042000px;}
.ws29{word-spacing:0.054000px;}
.ws4d{word-spacing:0.057000px;}
.ws79{word-spacing:0.114000px;}
.wsd2{word-spacing:0.180000px;}
.ws20{word-spacing:0.216000px;}
.wsa{word-spacing:0.228000px;}
.ws3b{word-spacing:0.285000px;}
.ws22{word-spacing:0.324000px;}
.ws10{word-spacing:0.342000px;}
.ws76{word-spacing:0.399000px;}
.ws26{word-spacing:0.432000px;}
.wsb7{word-spacing:0.456000px;}
.wsd6{word-spacing:0.495000px;}
.ws77{word-spacing:0.513000px;}
.wsf0{word-spacing:0.546000px;}
.ws4c{word-spacing:0.570000px;}
.wsae{word-spacing:0.627000px;}
.wsbe{word-spacing:0.630000px;}
.ws23{word-spacing:0.648000px;}
.ws2f{word-spacing:0.741000px;}
.ws1e{word-spacing:0.756000px;}
.wseb{word-spacing:0.840000px;}
.ws39{word-spacing:0.855000px;}
.ws4a{word-spacing:0.912000px;}
.ws48{word-spacing:0.969000px;}
.wse{word-spacing:1.026000px;}
.ws25{word-spacing:1.080000px;}
.ws8e{word-spacing:1.083000px;}
.wse9{word-spacing:1.134000px;}
.ws52{word-spacing:1.197000px;}
.ws66{word-spacing:1.254000px;}
.ws51{word-spacing:1.311000px;}
.ws80{word-spacing:1.368000px;}
.ws7d{word-spacing:1.425000px;}
.ws28{word-spacing:1.458000px;}
.ws5b{word-spacing:1.482000px;}
.ws97{word-spacing:1.539000px;}
.wscd{word-spacing:1.596000px;}
.ws8f{word-spacing:1.710000px;}
.ws91{word-spacing:1.824000px;}
.ws2a{word-spacing:1.836000px;}
.ws45{word-spacing:1.881000px;}
.ws71{word-spacing:1.938000px;}
.ws18{word-spacing:1.995000px;}
.ws46{word-spacing:2.052000px;}
.ws16{word-spacing:2.166000px;}
.ws2b{word-spacing:2.214000px;}
.ws83{word-spacing:2.223000px;}
.wsf5{word-spacing:2.268000px;}
.ws78{word-spacing:2.280000px;}
.ws55{word-spacing:2.337000px;}
.wsb5{word-spacing:2.394000px;}
.ws8b{word-spacing:2.451000px;}
.wsf{word-spacing:2.565000px;}
.ws42{word-spacing:2.622000px;}
.wsf1{word-spacing:2.646000px;}
.wsa7{word-spacing:2.679000px;}
.wsf2{word-spacing:2.688000px;}
.wsfa{word-spacing:2.754000px;}
.wsd3{word-spacing:2.814000px;}
.ws8c{word-spacing:2.907000px;}
.wsee{word-spacing:2.940000px;}
.wsc1{word-spacing:2.964000px;}
.ws5e{word-spacing:3.078000px;}
.ws84{word-spacing:3.135000px;}
.wsef{word-spacing:3.150000px;}
.ws86{word-spacing:3.192000px;}
.ws98{word-spacing:3.249000px;}
.ws1d{word-spacing:3.306000px;}
.ws69{word-spacing:3.363000px;}
.ws70{word-spacing:3.420000px;}
.wse2{word-spacing:3.477000px;}
.ws81{word-spacing:3.534000px;}
.ws8d{word-spacing:3.591000px;}
.ws5c{word-spacing:3.705000px;}
.ws93{word-spacing:3.762000px;}
.ws5f{word-spacing:3.819000px;}
.ws6d{word-spacing:3.876000px;}
.ws33{word-spacing:3.933000px;}
.ws17{word-spacing:3.990000px;}
.wsc6{word-spacing:4.047000px;}
.ws11{word-spacing:4.104000px;}
.ws6{word-spacing:4.161000px;}
.ws54{word-spacing:4.389000px;}
.wsc2{word-spacing:4.446000px;}
.ws92{word-spacing:4.503000px;}
.ws19{word-spacing:4.560000px;}
.wscb{word-spacing:4.674000px;}
.ws99{word-spacing:4.731000px;}
.ws47{word-spacing:4.788000px;}
.wsd1{word-spacing:4.845000px;}
.ws57{word-spacing:4.902000px;}
.ws85{word-spacing:4.959000px;}
.ws40{word-spacing:5.016000px;}
.wsf6{word-spacing:5.076000px;}
.ws59{word-spacing:5.130000px;}
.ws24{word-spacing:5.184000px;}
.ws7{word-spacing:5.301000px;}
.ws3f{word-spacing:5.358000px;}
.wse0{word-spacing:5.415000px;}
.wsed{word-spacing:5.418000px;}
.ws64{word-spacing:5.472000px;}
.ws50{word-spacing:5.529000px;}
.ws73{word-spacing:5.586000px;}
.wsb3{word-spacing:5.700000px;}
.ws96{word-spacing:5.814000px;}
.ws75{word-spacing:5.985000px;}
.wse1{word-spacing:6.042000px;}
.wsdb{word-spacing:6.099000px;}
.ws82{word-spacing:6.213000px;}
.wsb0{word-spacing:6.327000px;}
.wsc7{word-spacing:6.384000px;}
.ws6e{word-spacing:6.441000px;}
.ws1b{word-spacing:6.498000px;}
.wscc{word-spacing:6.555000px;}
.wsa8{word-spacing:6.669000px;}
.wsec{word-spacing:6.762000px;}
.wsc9{word-spacing:6.783000px;}
.ws14{word-spacing:6.840000px;}
.ws90{word-spacing:6.897000px;}
.ws87{word-spacing:6.954000px;}
.wsba{word-spacing:7.068000px;}
.ws15{word-spacing:7.125000px;}
.ws60{word-spacing:7.239000px;}
.ws63{word-spacing:7.296000px;}
.ws2d{word-spacing:7.353000px;}
.wsf3{word-spacing:7.398000px;}
.ws5d{word-spacing:7.410000px;}
.ws7a{word-spacing:7.581000px;}
.ws3d{word-spacing:7.638000px;}
.wsb{word-spacing:7.695000px;}
.ws43{word-spacing:7.809000px;}
.wsc8{word-spacing:7.866000px;}
.ws6f{word-spacing:7.923000px;}
.ws13{word-spacing:7.980000px;}
.wsfb{word-spacing:8.100000px;}
.ws62{word-spacing:8.151000px;}
.wsfd{word-spacing:8.154000px;}
.wsdf{word-spacing:8.208000px;}
.ws2e{word-spacing:8.436000px;}
.wsce{word-spacing:8.550000px;}
.wsab{word-spacing:8.607000px;}
.ws61{word-spacing:8.664000px;}
.wsb1{word-spacing:8.778000px;}
.ws94{word-spacing:8.949000px;}
.ws12{word-spacing:9.120000px;}
.ws30{word-spacing:9.348000px;}
.ws7e{word-spacing:9.405000px;}
.ws35{word-spacing:9.462000px;}
.ws3c{word-spacing:9.519000px;}
.ws32{word-spacing:9.576000px;}
.ws7c{word-spacing:9.690000px;}
.ws6b{word-spacing:9.747000px;}
.ws5a{word-spacing:9.918000px;}
.ws34{word-spacing:9.975000px;}
.wsb6{word-spacing:10.032000px;}
.wsaa{word-spacing:10.089000px;}
.wsdd{word-spacing:10.146000px;}
.wsd0{word-spacing:10.374000px;}
.wsd{word-spacing:10.431000px;}
.ws31{word-spacing:10.887000px;}
.wsf7{word-spacing:10.908000px;}
.ws3e{word-spacing:11.115000px;}
.ws38{word-spacing:11.172000px;}
.ws65{word-spacing:11.286000px;}
.wse3{word-spacing:11.514000px;}
.ws3a{word-spacing:11.628000px;}
.wscf{word-spacing:11.799000px;}
.wsaf{word-spacing:12.084000px;}
.wsb9{word-spacing:12.198000px;}
.wsf9{word-spacing:12.204000px;}
.ws7b{word-spacing:12.312000px;}
.ws4b{word-spacing:12.369000px;}
.ws41{word-spacing:12.540000px;}
.wse4{word-spacing:12.597000px;}
.wsca{word-spacing:12.768000px;}
.ws9a{word-spacing:12.825000px;}
.wsa9{word-spacing:13.224000px;}
.ws8{word-spacing:13.338000px;}
.wsb8{word-spacing:14.022000px;}
.wsad{word-spacing:14.307000px;}
.ws72{word-spacing:14.421000px;}
.wse5{word-spacing:14.592000px;}
.wsac{word-spacing:15.561000px;}
.ws9b{word-spacing:15.675000px;}
.ws9c{word-spacing:15.960000px;}
.wsdc{word-spacing:16.131000px;}
.ws6a{word-spacing:16.245000px;}
.ws7f{word-spacing:16.530000px;}
.wsd9{word-spacing:16.587000px;}
.ws9d{word-spacing:16.929000px;}
.wsda{word-spacing:17.157000px;}
.wsc3{word-spacing:17.955000px;}
.wsb4{word-spacing:18.582000px;}
.wsb2{word-spacing:19.836000px;}
.ws5{word-spacing:20.064000px;}
.wsc0{word-spacing:86.112600px;}
.wsd8{word-spacing:175.026000px;}
.wsa3{word-spacing:714.701700px;}
.wsa4{word-spacing:795.818700px;}
.ws9e{word-spacing:1941.304800px;}
.wse8{word-spacing:1943.599800px;}
.wsd5{word-spacing:1944.211800px;}
.ws2c{word-spacing:1950.331800px;}
._0{margin-left:-3078.426000px;}
._9{margin-left:-8.196000px;}
._8{margin-left:-6.104700px;}
._4{margin-left:-4.161000px;}
._a{margin-left:-2.342700px;}
._3{margin-left:-1.316700px;}
._2{width:1.254000px;}
._6{width:2.451000px;}
._7{width:4.414200px;}
._b{width:5.956500px;}
._5{width:7.176300px;}
._5c{width:11.135400px;}
._5b{width:12.140400px;}
._5a{width:19.035000px;}
._26{width:34.102800px;}
._1{width:40.086000px;}
._59{width:41.625000px;}
._4d{width:89.694300px;}
._54{width:97.361100px;}
._45{width:100.557000px;}
._40{width:101.797200px;}
._48{width:103.874100px;}
._4e{width:107.486400px;}
._17{width:109.637100px;}
._42{width:111.424200px;}
._1e{width:112.621200px;}
._4b{width:114.416400px;}
._20{width:115.425000px;}
._41{width:117.922800px;}
._4a{width:119.299200px;}
._27{width:121.878000px;}
._3b{width:124.572000px;}
._46{width:128.749200px;}
._47{width:130.706400px;}
._38{width:133.164000px;}
._37{width:134.868000px;}
._43{width:138.806400px;}
._3a{width:141.064800px;}
._25{width:161.220600px;}
._3d{width:164.197200px;}
._49{width:165.964200px;}
._c{width:172.642200px;}
._24{width:188.818800px;}
._22{width:207.742800px;}
._57{width:217.174200px;}
._56{width:223.092000px;}
._50{width:225.769200px;}
._3f{width:227.772000px;}
._51{width:233.081400px;}
._44{width:236.501400px;}
._53{width:241.069200px;}
._58{width:242.508600px;}
._1d{width:246.700800px;}
._52{width:248.404200px;}
._34{width:257.127600px;}
._e{width:266.535600px;}
._3c{width:274.829400px;}
._35{width:290.149800px;}
._36{width:292.148400px;}
._2e{width:296.136000px;}
._14{width:310.838400px;}
._1c{width:312.772800px;}
._1b{width:314.764200px;}
._2c{width:319.761000px;}
._4c{width:325.039200px;}
._16{width:326.902800px;}
._31{width:332.996400px;}
._2a{width:339.627000px;}
._4f{width:342.430200px;}
._2d{width:347.737200px;}
._29{width:349.447200px;}
._32{width:358.139400px;}
._33{width:360.100200px;}
._1a{width:370.834200px;}
._19{width:379.396800px;}
._10{width:380.520600px;}
._30{width:382.701600px;}
._12{width:390.646200px;}
._1f{width:439.239000px;}
._39{width:441.892200px;}
._18{width:456.535200px;}
._55{width:519.842400px;}
._28{width:537.694200px;}
._23{width:604.455600px;}
._13{width:606.116400px;}
._15{width:613.429200px;}
._2f{width:623.038200px;}
._3e{width:628.323600px;}
._21{width:655.980000px;}
._f{width:657.865800px;}
._11{width:665.965800px;}
._2b{width:802.656000px;}
._d{width:822.388800px;}
.fc1{color:rgb(0,159,221);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:29.400000px;}
.fs9{font-size:31.500000px;}
.fs6{font-size:39.000000px;}
.fs8{font-size:39.900000px;}
.fsd{font-size:40.200000px;}
.fsa{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:69.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:44.650500px;}
.y61{bottom:44.650650px;}
.y12{bottom:107.180550px;}
.ydd{bottom:112.632450px;}
.yf5{bottom:115.268700px;}
.y11{bottom:124.430550px;}
.ydc{bottom:125.382450px;}
.yf4{bottom:128.018700px;}
.ydb{bottom:138.132450px;}
.yf3{bottom:140.768700px;}
.y10{bottom:141.680550px;}
.yda{bottom:150.882450px;}
.yf2{bottom:153.518700px;}
.yf{bottom:158.930550px;}
.y60{bottom:168.180450px;}
.yd9{bottom:173.764500px;}
.ye{bottom:176.180550px;}
.y18c{bottom:178.697550px;}
.y149{bottom:178.990800px;}
.yf1{bottom:182.619300px;}
.y5f{bottom:183.916650px;}
.y8a{bottom:190.430550px;}
.y18b{bottom:191.447550px;}
.y148{bottom:191.740800px;}
.yd{bottom:193.430550px;}
.y5e{bottom:195.916650px;}
.yf0{bottom:196.119300px;}
.yd8{bottom:198.851100px;}
.y18a{bottom:204.197550px;}
.y147{bottom:204.490800px;}
.y5d{bottom:207.916650px;}
.yc{bottom:210.680550px;}
.y189{bottom:216.947550px;}
.y146{bottom:217.240800px;}
.yd7{bottom:223.937700px;}
.yb{bottom:227.930550px;}
.yef{bottom:229.390950px;}
.y188{bottom:229.697550px;}
.y145{bottom:229.990800px;}
.y5c{bottom:231.916650px;}
.y187{bottom:242.447550px;}
.y144{bottom:242.740800px;}
.yee{bottom:242.890950px;}
.y5b{bottom:243.916650px;}
.ya{bottom:245.180550px;}
.yd6{bottom:249.024450px;}
.y186{bottom:255.197550px;}
.y143{bottom:255.490800px;}
.y9{bottom:262.430550px;}
.y5a{bottom:267.916650px;}
.y185{bottom:267.947550px;}
.y142{bottom:268.240800px;}
.yd5{bottom:274.110900px;}
.yec{bottom:276.162600px;}
.y8{bottom:279.680550px;}
.y59{bottom:279.916650px;}
.y184{bottom:280.697550px;}
.y141{bottom:280.990800px;}
.yeb{bottom:282.912600px;}
.yed{bottom:289.662600px;}
.y58{bottom:291.916650px;}
.y183{bottom:293.447550px;}
.y140{bottom:293.740800px;}
.y7{bottom:296.930550px;}
.yd4{bottom:299.197500px;}
.y57{bottom:303.916650px;}
.y182{bottom:306.197550px;}
.y13f{bottom:306.490800px;}
.y1c5{bottom:310.517850px;}
.y6{bottom:314.180550px;}
.y56{bottom:315.916650px;}
.y181{bottom:318.947550px;}
.y13e{bottom:319.240800px;}
.yea{bottom:322.934250px;}
.yd3{bottom:324.284100px;}
.yf9{bottom:326.905650px;}
.y1c4{bottom:327.767850px;}
.y55{bottom:327.916650px;}
.y5{bottom:331.430550px;}
.y180{bottom:331.697550px;}
.y13d{bottom:331.990800px;}
.ye9{bottom:336.434250px;}
.y17f{bottom:344.447550px;}
.y13c{bottom:344.740800px;}
.yaf{bottom:345.680550px;}
.y4{bottom:348.680550px;}
.y1c3{bottom:349.269900px;}
.yd2{bottom:349.370850px;}
.y54{bottom:351.916650px;}
.y17e{bottom:357.197550px;}
.y13b{bottom:357.490800px;}
.yad{bottom:362.930550px;}
.y53{bottom:363.916650px;}
.y14{bottom:365.930550px;}
.y1c2{bottom:366.519900px;}
.ye7{bottom:369.705900px;}
.y17d{bottom:369.947550px;}
.y13a{bottom:370.240800px;}
.yd1{bottom:374.457450px;}
.y52{bottom:375.916650px;}
.ye6{bottom:376.455900px;}
.y3{bottom:380.180550px;}
.y17c{bottom:382.697550px;}
.y139{bottom:382.990800px;}
.y13{bottom:383.180550px;}
.ye8{bottom:383.205900px;}
.yab{bottom:383.806500px;}
.y51{bottom:387.916650px;}
.y1c1{bottom:388.021800px;}
.y17b{bottom:395.447550px;}
.y138{bottom:395.740800px;}
.yd0{bottom:399.544050px;}
.y50{bottom:399.916650px;}
.y7a{bottom:400.430550px;}
.y1c0{bottom:405.271800px;}
.yaa{bottom:407.806500px;}
.y17a{bottom:408.197550px;}
.y137{bottom:408.490800px;}
.y4f{bottom:411.916650px;}
.ye5{bottom:414.351600px;}
.y79{bottom:417.680550px;}
.ya9{bottom:419.806500px;}
.y179{bottom:420.947550px;}
.ye4{bottom:421.101600px;}
.y136{bottom:421.240800px;}
.y1bf{bottom:422.521800px;}
.y4e{bottom:423.916650px;}
.ycf{bottom:424.630650px;}
.y178{bottom:433.697550px;}
.y135{bottom:433.990800px;}
.y2f{bottom:434.351700px;}
.y78{bottom:434.930550px;}
.y4d{bottom:435.916650px;}
.y1be{bottom:439.771800px;}
.ya8{bottom:443.806500px;}
.y177{bottom:446.447550px;}
.y134{bottom:446.740800px;}
.y4c{bottom:447.916650px;}
.yce{bottom:449.717250px;}
.y2e{bottom:451.601700px;}
.y77{bottom:452.180550px;}
.ya7{bottom:455.806500px;}
.ye3{bottom:457.243350px;}
.y176{bottom:459.197550px;}
.y133{bottom:459.490800px;}
.y4b{bottom:459.916650px;}
.y1bd{bottom:461.273850px;}
.ya6{bottom:467.806500px;}
.y76{bottom:469.430550px;}
.y4a{bottom:471.916650px;}
.y175{bottom:471.947550px;}
.y132{bottom:472.240800px;}
.y2d{bottom:473.103750px;}
.ycb{bottom:473.847150px;}
.ycd{bottom:474.803850px;}
.y1bc{bottom:478.523850px;}
.ya5{bottom:479.806500px;}
.y49{bottom:483.916650px;}
.y174{bottom:484.697550px;}
.y131{bottom:484.990800px;}
.y75{bottom:486.680550px;}
.yca{bottom:487.347150px;}
.ye2{bottom:489.381000px;}
.y2c{bottom:490.353750px;}
.ya4{bottom:491.806500px;}
.y1bb{bottom:495.773850px;}
.y48{bottom:495.916650px;}
.y173{bottom:497.447550px;}
.y130{bottom:497.740800px;}
.ycc{bottom:499.890450px;}
.yc9{bottom:500.847150px;}
.ya3{bottom:503.806500px;}
.y74{bottom:503.930550px;}
.y47{bottom:507.916650px;}
.y172{bottom:510.197550px;}
.y12f{bottom:510.490800px;}
.y2b{bottom:511.855650px;}
.y1ba{bottom:513.023850px;}
.ya2{bottom:515.806500px;}
.y89{bottom:518.180550px;}
.y46{bottom:519.916650px;}
.y73{bottom:521.180550px;}
.y171{bottom:522.947550px;}
.y12e{bottom:523.240800px;}
.yc8{bottom:524.977050px;}
.ya1{bottom:527.806500px;}
.y2a{bottom:529.105650px;}
.y1b9{bottom:530.273850px;}
.y45{bottom:531.916650px;}
.y170{bottom:535.697550px;}
.y12d{bottom:535.990800px;}
.yf8{bottom:536.527800px;}
.y72{bottom:538.430550px;}
.ya0{bottom:539.806500px;}
.y44{bottom:543.916650px;}
.y29{bottom:546.355650px;}
.y16f{bottom:548.447550px;}
.y12c{bottom:548.740800px;}
.yc7{bottom:550.063650px;}
.y1b8{bottom:551.775750px;}
.y9f{bottom:551.806500px;}
.yfa{bottom:552.680550px;}
.y71{bottom:555.680550px;}
.y43{bottom:555.916650px;}
.y16e{bottom:561.197550px;}
.y12b{bottom:561.490800px;}
.y28{bottom:563.605650px;}
.y9e{bottom:563.806500px;}
.y42{bottom:567.916650px;}
.y70{bottom:572.930550px;}
.y1b7{bottom:573.277800px;}
.y16d{bottom:573.947550px;}
.y12a{bottom:574.240800px;}
.yc6{bottom:575.150400px;}
.y9d{bottom:575.806500px;}
.y41{bottom:579.916650px;}
.y27{bottom:580.855650px;}
.y16c{bottom:586.697550px;}
.y129{bottom:586.990800px;}
.y6f{bottom:590.180550px;}
.y1b6{bottom:590.527800px;}
.y40{bottom:591.916650px;}
.y26{bottom:598.105650px;}
.y16b{bottom:599.447550px;}
.y128{bottom:599.740800px;}
.y9c{bottom:599.806500px;}
.yc5{bottom:600.237000px;}
.y3f{bottom:603.916650px;}
.y6e{bottom:607.430550px;}
.y1b5{bottom:607.777800px;}
.y9b{bottom:611.806500px;}
.y16a{bottom:612.197550px;}
.y127{bottom:612.490800px;}
.y3e{bottom:615.916650px;}
.y25{bottom:619.607550px;}
.y9a{bottom:623.806500px;}
.y6d{bottom:624.680550px;}
.y169{bottom:624.947550px;}
.y1b4{bottom:625.027800px;}
.y126{bottom:625.240800px;}
.yc4{bottom:625.323600px;}
.y3d{bottom:627.916650px;}
.y107{bottom:634.343100px;}
.y24{bottom:636.857550px;}
.y168{bottom:637.697550px;}
.y125{bottom:637.990800px;}
.y3c{bottom:639.916650px;}
.y6c{bottom:641.930550px;}
.y106{bottom:647.093100px;}
.y99{bottom:647.806500px;}
.yc3{bottom:650.410200px;}
.y167{bottom:650.447550px;}
.y124{bottom:650.740800px;}
.y3b{bottom:651.916650px;}
.y23{bottom:654.107550px;}
.yb0{bottom:656.180550px;}
.y1b3{bottom:656.285550px;}
.y6b{bottom:659.180550px;}
.y98{bottom:659.806500px;}
.y166{bottom:663.197550px;}
.y123{bottom:663.490800px;}
.y3a{bottom:663.916650px;}
.y22{bottom:671.357550px;}
.y1b2{bottom:673.535550px;}
.y105{bottom:674.061750px;}
.yc2{bottom:675.496800px;}
.y39{bottom:675.916650px;}
.y165{bottom:675.947550px;}
.y122{bottom:676.240800px;}
.y6a{bottom:676.430550px;}
.y97{bottom:683.806500px;}
.y104{bottom:687.561750px;}
.y38{bottom:687.916650px;}
.y21{bottom:688.607550px;}
.y164{bottom:688.697550px;}
.y121{bottom:688.990800px;}
.y88{bottom:690.680550px;}
.y69{bottom:693.680550px;}
.y96{bottom:695.806500px;}
.y37{bottom:699.916650px;}
.yc1{bottom:700.583400px;}
.y163{bottom:701.447550px;}
.y120{bottom:701.740800px;}
.y95{bottom:707.806500px;}
.y20{bottom:710.109600px;}
.y68{bottom:710.930550px;}
.y36{bottom:711.916650px;}
.y162{bottom:714.197550px;}
.y11f{bottom:714.490800px;}
.y103{bottom:718.016400px;}
.y94{bottom:719.806500px;}
.y35{bottom:723.916650px;}
.y87{bottom:725.180550px;}
.yc0{bottom:725.670000px;}
.y161{bottom:726.947550px;}
.y11e{bottom:727.240800px;}
.y67{bottom:728.180550px;}
.y1f{bottom:731.611500px;}
.y93{bottom:731.806500px;}
.y34{bottom:735.916650px;}
.ybd{bottom:738.213300px;}
.y1b0{bottom:738.887100px;}
.y160{bottom:739.697550px;}
.y11d{bottom:739.990800px;}
.y92{bottom:743.806500px;}
.y66{bottom:745.430550px;}
.yf7{bottom:747.000150px;}
.y33{bottom:747.916650px;}
.y1e{bottom:748.861500px;}
.y102{bottom:749.906250px;}
.ybf{bottom:750.756600px;}
.y1af{bottom:750.887100px;}
.y19d{bottom:752.009250px;}
.y15f{bottom:752.447550px;}
.y11c{bottom:752.740800px;}
.y91{bottom:755.806500px;}
.yae{bottom:759.680550px;}
.y32{bottom:759.916650px;}
.ye1{bottom:762.604950px;}
.y65{bottom:762.680550px;}
.y1ae{bottom:762.887100px;}
.y15e{bottom:765.197550px;}
.y11b{bottom:765.490800px;}
.y19c{bottom:765.509250px;}
.y1d{bottom:766.111500px;}
.y90{bottom:767.806500px;}
.y31{bottom:771.916650px;}
.y1ad{bottom:774.887100px;}
.ybe{bottom:775.843200px;}
.yde{bottom:776.930550px;}
.y15d{bottom:777.947550px;}
.y11a{bottom:778.240800px;}
.y19b{bottom:779.009250px;}
.y8f{bottom:779.806500px;}
.y64{bottom:779.930550px;}
.y101{bottom:781.795950px;}
.y1c{bottom:783.361500px;}
.y30{bottom:783.916650px;}
.y1ac{bottom:786.887100px;}
.y15c{bottom:790.697550px;}
.y119{bottom:790.990800px;}
.y8e{bottom:791.806500px;}
.y19a{bottom:792.509250px;}
.y63{bottom:797.180550px;}
.y1ab{bottom:798.887100px;}
.ybc{bottom:800.929800px;}
.y15b{bottom:803.447550px;}
.y118{bottom:803.740800px;}
.y8d{bottom:803.806500px;}
.y199{bottom:808.135200px;}
.y1aa{bottom:810.887100px;}
.y100{bottom:813.685800px;}
.y62{bottom:814.430550px;}
.y8c{bottom:815.806500px;}
.y15a{bottom:816.197550px;}
.y117{bottom:816.490800px;}
.y198{bottom:821.635200px;}
.y1a9{bottom:822.887100px;}
.ybb{bottom:826.016400px;}
.y159{bottom:828.947550px;}
.y116{bottom:829.240800px;}
.y86{bottom:831.680550px;}
.y1a8{bottom:834.887100px;}
.y197{bottom:835.135200px;}
.y158{bottom:841.697550px;}
.y115{bottom:841.990800px;}
.y1b{bottom:842.454150px;}
.yff{bottom:845.575500px;}
.y1a7{bottom:846.887100px;}
.y196{bottom:848.635200px;}
.y85{bottom:848.930550px;}
.yb7{bottom:850.146300px;}
.yba{bottom:851.103000px;}
.y157{bottom:854.447550px;}
.y114{bottom:854.740800px;}
.y1a6{bottom:858.887100px;}
.y1a{bottom:860.454150px;}
.y195{bottom:862.135200px;}
.yb6{bottom:863.646300px;}
.y84{bottom:866.180550px;}
.y156{bottom:867.197550px;}
.y113{bottom:867.490800px;}
.y1a5{bottom:870.887100px;}
.y194{bottom:875.635200px;}
.yb9{bottom:876.189750px;}
.yb5{bottom:877.146300px;}
.yfe{bottom:877.465350px;}
.y19{bottom:878.454150px;}
.y155{bottom:879.947550px;}
.y112{bottom:880.240800px;}
.y1a4{bottom:882.887100px;}
.y83{bottom:883.430550px;}
.y193{bottom:889.135200px;}
.y154{bottom:892.697550px;}
.y111{bottom:892.990800px;}
.y1a3{bottom:894.887100px;}
.y18{bottom:896.454150px;}
.y82{bottom:900.680550px;}
.yb8{bottom:901.276200px;}
.y192{bottom:904.761150px;}
.y153{bottom:905.447550px;}
.y110{bottom:905.740800px;}
.y1a2{bottom:906.887100px;}
.yfd{bottom:909.355050px;}
.y81{bottom:917.930550px;}
.y152{bottom:918.197550px;}
.y191{bottom:918.261150px;}
.y10f{bottom:918.490800px;}
.y1a1{bottom:918.887100px;}
.yb4{bottom:926.362950px;}
.y1a0{bottom:930.887100px;}
.y151{bottom:930.947550px;}
.y10e{bottom:931.240800px;}
.y190{bottom:931.761150px;}
.y80{bottom:935.180550px;}
.yfc{bottom:941.244750px;}
.y19f{bottom:942.887100px;}
.y150{bottom:943.697550px;}
.y10d{bottom:943.990800px;}
.y18f{bottom:945.261150px;}
.y17{bottom:945.954600px;}
.yac{bottom:949.430550px;}
.yb3{bottom:951.449550px;}
.y7f{bottom:952.430550px;}
.ye0{bottom:952.880550px;}
.y19e{bottom:954.887100px;}
.y14f{bottom:956.447550px;}
.y10c{bottom:956.740800px;}
.y18e{bottom:958.761150px;}
.yf6{bottom:960.023850px;}
.y14e{bottom:969.197550px;}
.y10b{bottom:969.490800px;}
.y7e{bottom:969.680550px;}
.yfb{bottom:973.134600px;}
.y18d{bottom:974.387100px;}
.yb2{bottom:976.536150px;}
.y16{bottom:978.354750px;}
.y14d{bottom:981.947550px;}
.y10a{bottom:982.240800px;}
.y7d{bottom:986.930550px;}
.ydf{bottom:992.835600px;}
.y14c{bottom:994.697550px;}
.y109{bottom:994.990800px;}
.y7c{bottom:1004.180550px;}
.y1b1{bottom:1004.543100px;}
.yb1{bottom:1006.335450px;}
.y8b{bottom:1006.335600px;}
.y14b{bottom:1007.447550px;}
.y15{bottom:1010.754600px;}
.y108{bottom:1019.646300px;}
.y14a{bottom:1020.197550px;}
.y7b{bottom:1021.430550px;}
.y2{bottom:1124.930550px;}
.ha{height:28.183594px;}
.he{height:28.431000px;}
.h9{height:29.835000px;}
.h1b{height:30.702000px;}
.h8{height:33.150000px;}
.h19{height:33.600000px;}
.h1c{height:34.170000px;}
.h10{height:34.425000px;}
.h13{height:34.650000px;}
.h17{height:35.700000px;}
.h12{height:37.590000px;}
.h18{height:37.597500px;}
.h1a{height:37.755000px;}
.hd{height:38.250000px;}
.hb{height:38.964000px;}
.h11{height:40.275000px;}
.h2{height:43.350000px;}
.h3{height:45.900000px;}
.hc{height:46.200000px;}
.h5{height:47.823000px;}
.hf{height:50.576100px;}
.h7{height:51.000000px;}
.h4{height:53.130000px;}
.h14{height:64.597500px;}
.h16{height:65.250000px;}
.h6{height:78.948000px;}
.h15{height:91.597500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:59.527500px;}
.x13{left:60.563850px;}
.x1e{left:62.182500px;}
.x3{left:63.779550px;}
.x18{left:69.835800px;}
.x15{left:71.171700px;}
.x12{left:73.394400px;}
.xf{left:76.621350px;}
.x11{left:78.327600px;}
.x4{left:80.787450px;}
.x16{left:84.899100px;}
.x10{left:92.698950px;}
.x1c{left:95.302200px;}
.x1f{left:96.715350px;}
.x17{left:97.778700px;}
.x1d{left:99.874650px;}
.x1b{left:102.448500px;}
.x1a{left:103.725900px;}
.x14{left:107.762100px;}
.xe{left:120.680700px;}
.x22{left:146.692950px;}
.x19{left:153.449700px;}
.xa{left:204.094500px;}
.xb{left:221.102400px;}
.x45{left:225.354300px;}
.x44{left:227.546400px;}
.x43{left:269.629050px;}
.x21{left:304.483200px;}
.x20{left:348.198150px;}
.x5{left:384.803100px;}
.x47{left:397.559100px;}
.x6{left:401.811000px;}
.x32{left:478.171050px;}
.x27{left:479.239800px;}
.x37{left:480.404100px;}
.x3c{left:483.987150px;}
.x25{left:492.120750px;}
.x31{left:493.824900px;}
.x3b{left:496.271700px;}
.xc{left:525.118050px;}
.x24{left:528.040050px;}
.x33{left:538.597800px;}
.x29{left:539.773500px;}
.xd{left:542.125950px;}
.x46{left:546.378000px;}
.x28{left:553.104450px;}
.x38{left:555.168750px;}
.x3d{left:556.670400px;}
.x2b{left:597.393600px;}
.x34{left:598.743600px;}
.x23{left:609.329850px;}
.x2a{left:612.794400px;}
.x35{left:658.956600px;}
.x3f{left:661.662150px;}
.x2d{left:663.214650px;}
.x2c{left:673.896300px;}
.x3e{left:675.876150px;}
.x7{left:705.826800px;}
.x2f{left:718.815450px;}
.x39{left:720.671550px;}
.x2e{left:733.715700px;}
.x40{left:735.689850px;}
.x36{left:777.414300px;}
.x2{left:778.651950px;}
.x26{left:787.966500px;}
.x30{left:792.201900px;}
.x41{left:793.259400px;}
.x3a{left:795.188850px;}
.x42{left:820.763550px;}
.x1{left:823.300800px;}
.x8{left:824.697450px;}
@media print{
.v2{vertical-align:-15.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.000000pt;}
.v1{vertical-align:15.200000pt;}
.v4{vertical-align:24.000000pt;}
.v5{vertical-align:36.000000pt;}
.v6{vertical-align:48.000000pt;}
.v7{vertical-align:60.000000pt;}
.ls4{letter-spacing:-4.104000pt;}
.lsd{letter-spacing:-0.912000pt;}
.ls1e{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.506667pt;}
.ls1c{letter-spacing:-0.405333pt;}
.ls1a{letter-spacing:-0.400000pt;}
.lsc{letter-spacing:-0.253333pt;}
.ls1f{letter-spacing:-0.200000pt;}
.ls22{letter-spacing:-0.186667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000267pt;}
.ls6{letter-spacing:0.000533pt;}
.ls5{letter-spacing:0.001067pt;}
.lsb{letter-spacing:0.176800pt;}
.ls9{letter-spacing:0.177333pt;}
.ls8{letter-spacing:0.252267pt;}
.lsa{letter-spacing:0.252800pt;}
.ls7{letter-spacing:0.253333pt;}
.ls20{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.405333pt;}
.ls0{letter-spacing:0.506667pt;}
.ls1b{letter-spacing:2.494400pt;}
.ls21{letter-spacing:7.240000pt;}
.ls19{letter-spacing:42.753867pt;}
.ls18{letter-spacing:50.679200pt;}
.ls1d{letter-spacing:158.680267pt;}
.ls15{letter-spacing:160.050933pt;}
.ls10{letter-spacing:244.254133pt;}
.lsf{letter-spacing:282.134667pt;}
.ls17{letter-spacing:329.912800pt;}
.ls14{letter-spacing:336.473867pt;}
.ls16{letter-spacing:518.529333pt;}
.ls11{letter-spacing:592.069333pt;}
.lse{letter-spacing:637.290400pt;}
.ls13{letter-spacing:724.623733pt;}
.ws67{word-spacing:-11.906667pt;}
.wsd7{word-spacing:-11.653333pt;}
.ws2{word-spacing:-10.272000pt;}
.ws0{word-spacing:-9.701333pt;}
.wsa2{word-spacing:-8.560000pt;}
.wsa0{word-spacing:-8.400000pt;}
.ws68{word-spacing:-8.334667pt;}
.wsa1{word-spacing:-5.992000pt;}
.wsa5{word-spacing:-5.592533pt;}
.wsbb{word-spacing:-4.800000pt;}
.wsbc{word-spacing:-3.760000pt;}
.wsf4{word-spacing:-1.776000pt;}
.wsfc{word-spacing:-1.440000pt;}
.ws89{word-spacing:-1.368000pt;}
.wsde{word-spacing:-1.266667pt;}
.ws44{word-spacing:-1.114667pt;}
.ws95{word-spacing:-1.064000pt;}
.ws74{word-spacing:-1.013333pt;}
.ws21{word-spacing:-1.008000pt;}
.ws9{word-spacing:-0.962667pt;}
.ws8a{word-spacing:-0.912000pt;}
.ws1c{word-spacing:-0.861333pt;}
.wsc5{word-spacing:-0.810667pt;}
.ws58{word-spacing:-0.760000pt;}
.ws36{word-spacing:-0.709333pt;}
.wsc4{word-spacing:-0.658667pt;}
.wsd4{word-spacing:-0.634667pt;}
.ws6c{word-spacing:-0.608000pt;}
.wsbd{word-spacing:-0.597333pt;}
.ws4{word-spacing:-0.557333pt;}
.ws88{word-spacing:-0.506667pt;}
.wse7{word-spacing:-0.485333pt;}
.ws1{word-spacing:-0.456000pt;}
.ws4e{word-spacing:-0.405333pt;}
.wse6{word-spacing:-0.400000pt;}
.ws53{word-spacing:-0.354667pt;}
.ws56{word-spacing:-0.304000pt;}
.ws1f{word-spacing:-0.288000pt;}
.ws49{word-spacing:-0.253333pt;}
.wsbf{word-spacing:-0.224000pt;}
.ws4f{word-spacing:-0.202667pt;}
.ws27{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.152000pt;}
.ws37{word-spacing:-0.101333pt;}
.wsc{word-spacing:-0.050667pt;}
.wsf8{word-spacing:-0.048000pt;}
.ws9f{word-spacing:-0.040000pt;}
.wsa6{word-spacing:-0.037333pt;}
.ws3{word-spacing:0.000000pt;}
.wsea{word-spacing:0.037333pt;}
.ws29{word-spacing:0.048000pt;}
.ws4d{word-spacing:0.050667pt;}
.ws79{word-spacing:0.101333pt;}
.wsd2{word-spacing:0.160000pt;}
.ws20{word-spacing:0.192000pt;}
.wsa{word-spacing:0.202667pt;}
.ws3b{word-spacing:0.253333pt;}
.ws22{word-spacing:0.288000pt;}
.ws10{word-spacing:0.304000pt;}
.ws76{word-spacing:0.354667pt;}
.ws26{word-spacing:0.384000pt;}
.wsb7{word-spacing:0.405333pt;}
.wsd6{word-spacing:0.440000pt;}
.ws77{word-spacing:0.456000pt;}
.wsf0{word-spacing:0.485333pt;}
.ws4c{word-spacing:0.506667pt;}
.wsae{word-spacing:0.557333pt;}
.wsbe{word-spacing:0.560000pt;}
.ws23{word-spacing:0.576000pt;}
.ws2f{word-spacing:0.658667pt;}
.ws1e{word-spacing:0.672000pt;}
.wseb{word-spacing:0.746667pt;}
.ws39{word-spacing:0.760000pt;}
.ws4a{word-spacing:0.810667pt;}
.ws48{word-spacing:0.861333pt;}
.wse{word-spacing:0.912000pt;}
.ws25{word-spacing:0.960000pt;}
.ws8e{word-spacing:0.962667pt;}
.wse9{word-spacing:1.008000pt;}
.ws52{word-spacing:1.064000pt;}
.ws66{word-spacing:1.114667pt;}
.ws51{word-spacing:1.165333pt;}
.ws80{word-spacing:1.216000pt;}
.ws7d{word-spacing:1.266667pt;}
.ws28{word-spacing:1.296000pt;}
.ws5b{word-spacing:1.317333pt;}
.ws97{word-spacing:1.368000pt;}
.wscd{word-spacing:1.418667pt;}
.ws8f{word-spacing:1.520000pt;}
.ws91{word-spacing:1.621333pt;}
.ws2a{word-spacing:1.632000pt;}
.ws45{word-spacing:1.672000pt;}
.ws71{word-spacing:1.722667pt;}
.ws18{word-spacing:1.773333pt;}
.ws46{word-spacing:1.824000pt;}
.ws16{word-spacing:1.925333pt;}
.ws2b{word-spacing:1.968000pt;}
.ws83{word-spacing:1.976000pt;}
.wsf5{word-spacing:2.016000pt;}
.ws78{word-spacing:2.026667pt;}
.ws55{word-spacing:2.077333pt;}
.wsb5{word-spacing:2.128000pt;}
.ws8b{word-spacing:2.178667pt;}
.wsf{word-spacing:2.280000pt;}
.ws42{word-spacing:2.330667pt;}
.wsf1{word-spacing:2.352000pt;}
.wsa7{word-spacing:2.381333pt;}
.wsf2{word-spacing:2.389333pt;}
.wsfa{word-spacing:2.448000pt;}
.wsd3{word-spacing:2.501333pt;}
.ws8c{word-spacing:2.584000pt;}
.wsee{word-spacing:2.613333pt;}
.wsc1{word-spacing:2.634667pt;}
.ws5e{word-spacing:2.736000pt;}
.ws84{word-spacing:2.786667pt;}
.wsef{word-spacing:2.800000pt;}
.ws86{word-spacing:2.837333pt;}
.ws98{word-spacing:2.888000pt;}
.ws1d{word-spacing:2.938667pt;}
.ws69{word-spacing:2.989333pt;}
.ws70{word-spacing:3.040000pt;}
.wse2{word-spacing:3.090667pt;}
.ws81{word-spacing:3.141333pt;}
.ws8d{word-spacing:3.192000pt;}
.ws5c{word-spacing:3.293333pt;}
.ws93{word-spacing:3.344000pt;}
.ws5f{word-spacing:3.394667pt;}
.ws6d{word-spacing:3.445333pt;}
.ws33{word-spacing:3.496000pt;}
.ws17{word-spacing:3.546667pt;}
.wsc6{word-spacing:3.597333pt;}
.ws11{word-spacing:3.648000pt;}
.ws6{word-spacing:3.698667pt;}
.ws54{word-spacing:3.901333pt;}
.wsc2{word-spacing:3.952000pt;}
.ws92{word-spacing:4.002667pt;}
.ws19{word-spacing:4.053333pt;}
.wscb{word-spacing:4.154667pt;}
.ws99{word-spacing:4.205333pt;}
.ws47{word-spacing:4.256000pt;}
.wsd1{word-spacing:4.306667pt;}
.ws57{word-spacing:4.357333pt;}
.ws85{word-spacing:4.408000pt;}
.ws40{word-spacing:4.458667pt;}
.wsf6{word-spacing:4.512000pt;}
.ws59{word-spacing:4.560000pt;}
.ws24{word-spacing:4.608000pt;}
.ws7{word-spacing:4.712000pt;}
.ws3f{word-spacing:4.762667pt;}
.wse0{word-spacing:4.813333pt;}
.wsed{word-spacing:4.816000pt;}
.ws64{word-spacing:4.864000pt;}
.ws50{word-spacing:4.914667pt;}
.ws73{word-spacing:4.965333pt;}
.wsb3{word-spacing:5.066667pt;}
.ws96{word-spacing:5.168000pt;}
.ws75{word-spacing:5.320000pt;}
.wse1{word-spacing:5.370667pt;}
.wsdb{word-spacing:5.421333pt;}
.ws82{word-spacing:5.522667pt;}
.wsb0{word-spacing:5.624000pt;}
.wsc7{word-spacing:5.674667pt;}
.ws6e{word-spacing:5.725333pt;}
.ws1b{word-spacing:5.776000pt;}
.wscc{word-spacing:5.826667pt;}
.wsa8{word-spacing:5.928000pt;}
.wsec{word-spacing:6.010667pt;}
.wsc9{word-spacing:6.029333pt;}
.ws14{word-spacing:6.080000pt;}
.ws90{word-spacing:6.130667pt;}
.ws87{word-spacing:6.181333pt;}
.wsba{word-spacing:6.282667pt;}
.ws15{word-spacing:6.333333pt;}
.ws60{word-spacing:6.434667pt;}
.ws63{word-spacing:6.485333pt;}
.ws2d{word-spacing:6.536000pt;}
.wsf3{word-spacing:6.576000pt;}
.ws5d{word-spacing:6.586667pt;}
.ws7a{word-spacing:6.738667pt;}
.ws3d{word-spacing:6.789333pt;}
.wsb{word-spacing:6.840000pt;}
.ws43{word-spacing:6.941333pt;}
.wsc8{word-spacing:6.992000pt;}
.ws6f{word-spacing:7.042667pt;}
.ws13{word-spacing:7.093333pt;}
.wsfb{word-spacing:7.200000pt;}
.ws62{word-spacing:7.245333pt;}
.wsfd{word-spacing:7.248000pt;}
.wsdf{word-spacing:7.296000pt;}
.ws2e{word-spacing:7.498667pt;}
.wsce{word-spacing:7.600000pt;}
.wsab{word-spacing:7.650667pt;}
.ws61{word-spacing:7.701333pt;}
.wsb1{word-spacing:7.802667pt;}
.ws94{word-spacing:7.954667pt;}
.ws12{word-spacing:8.106667pt;}
.ws30{word-spacing:8.309333pt;}
.ws7e{word-spacing:8.360000pt;}
.ws35{word-spacing:8.410667pt;}
.ws3c{word-spacing:8.461333pt;}
.ws32{word-spacing:8.512000pt;}
.ws7c{word-spacing:8.613333pt;}
.ws6b{word-spacing:8.664000pt;}
.ws5a{word-spacing:8.816000pt;}
.ws34{word-spacing:8.866667pt;}
.wsb6{word-spacing:8.917333pt;}
.wsaa{word-spacing:8.968000pt;}
.wsdd{word-spacing:9.018667pt;}
.wsd0{word-spacing:9.221333pt;}
.wsd{word-spacing:9.272000pt;}
.ws31{word-spacing:9.677333pt;}
.wsf7{word-spacing:9.696000pt;}
.ws3e{word-spacing:9.880000pt;}
.ws38{word-spacing:9.930667pt;}
.ws65{word-spacing:10.032000pt;}
.wse3{word-spacing:10.234667pt;}
.ws3a{word-spacing:10.336000pt;}
.wscf{word-spacing:10.488000pt;}
.wsaf{word-spacing:10.741333pt;}
.wsb9{word-spacing:10.842667pt;}
.wsf9{word-spacing:10.848000pt;}
.ws7b{word-spacing:10.944000pt;}
.ws4b{word-spacing:10.994667pt;}
.ws41{word-spacing:11.146667pt;}
.wse4{word-spacing:11.197333pt;}
.wsca{word-spacing:11.349333pt;}
.ws9a{word-spacing:11.400000pt;}
.wsa9{word-spacing:11.754667pt;}
.ws8{word-spacing:11.856000pt;}
.wsb8{word-spacing:12.464000pt;}
.wsad{word-spacing:12.717333pt;}
.ws72{word-spacing:12.818667pt;}
.wse5{word-spacing:12.970667pt;}
.wsac{word-spacing:13.832000pt;}
.ws9b{word-spacing:13.933333pt;}
.ws9c{word-spacing:14.186667pt;}
.wsdc{word-spacing:14.338667pt;}
.ws6a{word-spacing:14.440000pt;}
.ws7f{word-spacing:14.693333pt;}
.wsd9{word-spacing:14.744000pt;}
.ws9d{word-spacing:15.048000pt;}
.wsda{word-spacing:15.250667pt;}
.wsc3{word-spacing:15.960000pt;}
.wsb4{word-spacing:16.517333pt;}
.wsb2{word-spacing:17.632000pt;}
.ws5{word-spacing:17.834667pt;}
.wsc0{word-spacing:76.544533pt;}
.wsd8{word-spacing:155.578667pt;}
.wsa3{word-spacing:635.290400pt;}
.wsa4{word-spacing:707.394400pt;}
.ws9e{word-spacing:1725.604267pt;}
.wse8{word-spacing:1727.644267pt;}
.wsd5{word-spacing:1728.188267pt;}
.ws2c{word-spacing:1733.628267pt;}
._0{margin-left:-2736.378667pt;}
._9{margin-left:-7.285333pt;}
._8{margin-left:-5.426400pt;}
._4{margin-left:-3.698667pt;}
._a{margin-left:-2.082400pt;}
._3{margin-left:-1.170400pt;}
._2{width:1.114667pt;}
._6{width:2.178667pt;}
._7{width:3.923733pt;}
._b{width:5.294667pt;}
._5{width:6.378933pt;}
._5c{width:9.898133pt;}
._5b{width:10.791467pt;}
._5a{width:16.920000pt;}
._26{width:30.313600pt;}
._1{width:35.632000pt;}
._59{width:37.000000pt;}
._4d{width:79.728267pt;}
._54{width:86.543200pt;}
._45{width:89.384000pt;}
._40{width:90.486400pt;}
._48{width:92.332533pt;}
._4e{width:95.543467pt;}
._17{width:97.455200pt;}
._42{width:99.043733pt;}
._1e{width:100.107733pt;}
._4b{width:101.703467pt;}
._20{width:102.600000pt;}
._41{width:104.820267pt;}
._4a{width:106.043733pt;}
._27{width:108.336000pt;}
._3b{width:110.730667pt;}
._46{width:114.443733pt;}
._47{width:116.183467pt;}
._38{width:118.368000pt;}
._37{width:119.882667pt;}
._43{width:123.383467pt;}
._3a{width:125.390933pt;}
._25{width:143.307200pt;}
._3d{width:145.953067pt;}
._49{width:147.523733pt;}
._c{width:153.459733pt;}
._24{width:167.838933pt;}
._22{width:184.660267pt;}
._57{width:193.043733pt;}
._56{width:198.304000pt;}
._50{width:200.683733pt;}
._3f{width:202.464000pt;}
._51{width:207.183467pt;}
._44{width:210.223467pt;}
._53{width:214.283733pt;}
._58{width:215.563200pt;}
._1d{width:219.289600pt;}
._52{width:220.803733pt;}
._34{width:228.557867pt;}
._e{width:236.920533pt;}
._3c{width:244.292800pt;}
._35{width:257.910933pt;}
._36{width:259.687467pt;}
._2e{width:263.232000pt;}
._14{width:276.300800pt;}
._1c{width:278.020267pt;}
._1b{width:279.790400pt;}
._2c{width:284.232000pt;}
._4c{width:288.923733pt;}
._16{width:290.580267pt;}
._31{width:295.996800pt;}
._2a{width:301.890667pt;}
._4f{width:304.382400pt;}
._2d{width:309.099733pt;}
._29{width:310.619733pt;}
._32{width:318.346133pt;}
._33{width:320.089067pt;}
._1a{width:329.630400pt;}
._19{width:337.241600pt;}
._10{width:338.240533pt;}
._30{width:340.179200pt;}
._12{width:347.241067pt;}
._1f{width:390.434667pt;}
._39{width:392.793067pt;}
._18{width:405.809067pt;}
._55{width:462.082133pt;}
._28{width:477.950400pt;}
._23{width:537.293867pt;}
._13{width:538.770133pt;}
._15{width:545.270400pt;}
._2f{width:553.811733pt;}
._3e{width:558.509867pt;}
._21{width:583.093333pt;}
._f{width:584.769600pt;}
._11{width:591.969600pt;}
._2b{width:713.472000pt;}
._d{width:731.012267pt;}
.fsb{font-size:26.133333pt;}
.fs9{font-size:28.000000pt;}
.fs6{font-size:34.666667pt;}
.fs8{font-size:35.466667pt;}
.fsd{font-size:35.733333pt;}
.fsa{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:61.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.689333pt;}
.y61{bottom:39.689467pt;}
.y12{bottom:95.271600pt;}
.ydd{bottom:100.117733pt;}
.yf5{bottom:102.461067pt;}
.y11{bottom:110.604933pt;}
.ydc{bottom:111.451067pt;}
.yf4{bottom:113.794400pt;}
.ydb{bottom:122.784400pt;}
.yf3{bottom:125.127733pt;}
.y10{bottom:125.938267pt;}
.yda{bottom:134.117733pt;}
.yf2{bottom:136.461067pt;}
.yf{bottom:141.271600pt;}
.y60{bottom:149.493733pt;}
.yd9{bottom:154.457333pt;}
.ye{bottom:156.604933pt;}
.y18c{bottom:158.842267pt;}
.y149{bottom:159.102933pt;}
.yf1{bottom:162.328267pt;}
.y5f{bottom:163.481467pt;}
.y8a{bottom:169.271600pt;}
.y18b{bottom:170.175600pt;}
.y148{bottom:170.436267pt;}
.yd{bottom:171.938267pt;}
.y5e{bottom:174.148133pt;}
.yf0{bottom:174.328267pt;}
.yd8{bottom:176.756533pt;}
.y18a{bottom:181.508933pt;}
.y147{bottom:181.769600pt;}
.y5d{bottom:184.814800pt;}
.yc{bottom:187.271600pt;}
.y189{bottom:192.842267pt;}
.y146{bottom:193.102933pt;}
.yd7{bottom:199.055733pt;}
.yb{bottom:202.604933pt;}
.yef{bottom:203.903067pt;}
.y188{bottom:204.175600pt;}
.y145{bottom:204.436267pt;}
.y5c{bottom:206.148133pt;}
.y187{bottom:215.508933pt;}
.y144{bottom:215.769600pt;}
.yee{bottom:215.903067pt;}
.y5b{bottom:216.814800pt;}
.ya{bottom:217.938267pt;}
.yd6{bottom:221.355067pt;}
.y186{bottom:226.842267pt;}
.y143{bottom:227.102933pt;}
.y9{bottom:233.271600pt;}
.y5a{bottom:238.148133pt;}
.y185{bottom:238.175600pt;}
.y142{bottom:238.436267pt;}
.yd5{bottom:243.654133pt;}
.yec{bottom:245.477867pt;}
.y8{bottom:248.604933pt;}
.y59{bottom:248.814800pt;}
.y184{bottom:249.508933pt;}
.y141{bottom:249.769600pt;}
.yeb{bottom:251.477867pt;}
.yed{bottom:257.477867pt;}
.y58{bottom:259.481467pt;}
.y183{bottom:260.842267pt;}
.y140{bottom:261.102933pt;}
.y7{bottom:263.938267pt;}
.yd4{bottom:265.953333pt;}
.y57{bottom:270.148133pt;}
.y182{bottom:272.175600pt;}
.y13f{bottom:272.436267pt;}
.y1c5{bottom:276.015867pt;}
.y6{bottom:279.271600pt;}
.y56{bottom:280.814800pt;}
.y181{bottom:283.508933pt;}
.y13e{bottom:283.769600pt;}
.yea{bottom:287.052667pt;}
.yd3{bottom:288.252533pt;}
.yf9{bottom:290.582800pt;}
.y1c4{bottom:291.349200pt;}
.y55{bottom:291.481467pt;}
.y5{bottom:294.604933pt;}
.y180{bottom:294.842267pt;}
.y13d{bottom:295.102933pt;}
.ye9{bottom:299.052667pt;}
.y17f{bottom:306.175600pt;}
.y13c{bottom:306.436267pt;}
.yaf{bottom:307.271600pt;}
.y4{bottom:309.938267pt;}
.y1c3{bottom:310.462133pt;}
.yd2{bottom:310.551867pt;}
.y54{bottom:312.814800pt;}
.y17e{bottom:317.508933pt;}
.y13b{bottom:317.769600pt;}
.yad{bottom:322.604933pt;}
.y53{bottom:323.481467pt;}
.y14{bottom:325.271600pt;}
.y1c2{bottom:325.795467pt;}
.ye7{bottom:328.627467pt;}
.y17d{bottom:328.842267pt;}
.y13a{bottom:329.102933pt;}
.yd1{bottom:332.851067pt;}
.y52{bottom:334.148133pt;}
.ye6{bottom:334.627467pt;}
.y3{bottom:337.938267pt;}
.y17c{bottom:340.175600pt;}
.y139{bottom:340.436267pt;}
.y13{bottom:340.604933pt;}
.ye8{bottom:340.627467pt;}
.yab{bottom:341.161333pt;}
.y51{bottom:344.814800pt;}
.y1c1{bottom:344.908267pt;}
.y17b{bottom:351.508933pt;}
.y138{bottom:351.769600pt;}
.yd0{bottom:355.150267pt;}
.y50{bottom:355.481467pt;}
.y7a{bottom:355.938267pt;}
.y1c0{bottom:360.241600pt;}
.yaa{bottom:362.494667pt;}
.y17a{bottom:362.842267pt;}
.y137{bottom:363.102933pt;}
.y4f{bottom:366.148133pt;}
.ye5{bottom:368.312533pt;}
.y79{bottom:371.271600pt;}
.ya9{bottom:373.161333pt;}
.y179{bottom:374.175600pt;}
.ye4{bottom:374.312533pt;}
.y136{bottom:374.436267pt;}
.y1bf{bottom:375.574933pt;}
.y4e{bottom:376.814800pt;}
.ycf{bottom:377.449467pt;}
.y178{bottom:385.508933pt;}
.y135{bottom:385.769600pt;}
.y2f{bottom:386.090400pt;}
.y78{bottom:386.604933pt;}
.y4d{bottom:387.481467pt;}
.y1be{bottom:390.908267pt;}
.ya8{bottom:394.494667pt;}
.y177{bottom:396.842267pt;}
.y134{bottom:397.102933pt;}
.y4c{bottom:398.148133pt;}
.yce{bottom:399.748667pt;}
.y2e{bottom:401.423733pt;}
.y77{bottom:401.938267pt;}
.ya7{bottom:405.161333pt;}
.ye3{bottom:406.438533pt;}
.y176{bottom:408.175600pt;}
.y133{bottom:408.436267pt;}
.y4b{bottom:408.814800pt;}
.y1bd{bottom:410.021200pt;}
.ya6{bottom:415.828000pt;}
.y76{bottom:417.271600pt;}
.y4a{bottom:419.481467pt;}
.y175{bottom:419.508933pt;}
.y132{bottom:419.769600pt;}
.y2d{bottom:420.536667pt;}
.ycb{bottom:421.197467pt;}
.ycd{bottom:422.047867pt;}
.y1bc{bottom:425.354533pt;}
.ya5{bottom:426.494667pt;}
.y49{bottom:430.148133pt;}
.y174{bottom:430.842267pt;}
.y131{bottom:431.102933pt;}
.y75{bottom:432.604933pt;}
.yca{bottom:433.197467pt;}
.ye2{bottom:435.005333pt;}
.y2c{bottom:435.870000pt;}
.ya4{bottom:437.161333pt;}
.y1bb{bottom:440.687867pt;}
.y48{bottom:440.814800pt;}
.y173{bottom:442.175600pt;}
.y130{bottom:442.436267pt;}
.ycc{bottom:444.347067pt;}
.yc9{bottom:445.197467pt;}
.ya3{bottom:447.828000pt;}
.y74{bottom:447.938267pt;}
.y47{bottom:451.481467pt;}
.y172{bottom:453.508933pt;}
.y12f{bottom:453.769600pt;}
.y2b{bottom:454.982800pt;}
.y1ba{bottom:456.021200pt;}
.ya2{bottom:458.494667pt;}
.y89{bottom:460.604933pt;}
.y46{bottom:462.148133pt;}
.y73{bottom:463.271600pt;}
.y171{bottom:464.842267pt;}
.y12e{bottom:465.102933pt;}
.yc8{bottom:466.646267pt;}
.ya1{bottom:469.161333pt;}
.y2a{bottom:470.316133pt;}
.y1b9{bottom:471.354533pt;}
.y45{bottom:472.814800pt;}
.y170{bottom:476.175600pt;}
.y12d{bottom:476.436267pt;}
.yf8{bottom:476.913600pt;}
.y72{bottom:478.604933pt;}
.ya0{bottom:479.828000pt;}
.y44{bottom:483.481467pt;}
.y29{bottom:485.649467pt;}
.y16f{bottom:487.508933pt;}
.y12c{bottom:487.769600pt;}
.yc7{bottom:488.945467pt;}
.y1b8{bottom:490.467333pt;}
.y9f{bottom:490.494667pt;}
.yfa{bottom:491.271600pt;}
.y71{bottom:493.938267pt;}
.y43{bottom:494.148133pt;}
.y16e{bottom:498.842267pt;}
.y12b{bottom:499.102933pt;}
.y28{bottom:500.982800pt;}
.y9e{bottom:501.161333pt;}
.y42{bottom:504.814800pt;}
.y70{bottom:509.271600pt;}
.y1b7{bottom:509.580267pt;}
.y16d{bottom:510.175600pt;}
.y12a{bottom:510.436267pt;}
.yc6{bottom:511.244800pt;}
.y9d{bottom:511.828000pt;}
.y41{bottom:515.481467pt;}
.y27{bottom:516.316133pt;}
.y16c{bottom:521.508933pt;}
.y129{bottom:521.769600pt;}
.y6f{bottom:524.604933pt;}
.y1b6{bottom:524.913600pt;}
.y40{bottom:526.148133pt;}
.y26{bottom:531.649467pt;}
.y16b{bottom:532.842267pt;}
.y128{bottom:533.102933pt;}
.y9c{bottom:533.161333pt;}
.yc5{bottom:533.544000pt;}
.y3f{bottom:536.814800pt;}
.y6e{bottom:539.938267pt;}
.y1b5{bottom:540.246933pt;}
.y9b{bottom:543.828000pt;}
.y16a{bottom:544.175600pt;}
.y127{bottom:544.436267pt;}
.y3e{bottom:547.481467pt;}
.y25{bottom:550.762267pt;}
.y9a{bottom:554.494667pt;}
.y6d{bottom:555.271600pt;}
.y169{bottom:555.508933pt;}
.y1b4{bottom:555.580267pt;}
.y126{bottom:555.769600pt;}
.yc4{bottom:555.843200pt;}
.y3d{bottom:558.148133pt;}
.y107{bottom:563.860533pt;}
.y24{bottom:566.095600pt;}
.y168{bottom:566.842267pt;}
.y125{bottom:567.102933pt;}
.y3c{bottom:568.814800pt;}
.y6c{bottom:570.604933pt;}
.y106{bottom:575.193867pt;}
.y99{bottom:575.828000pt;}
.yc3{bottom:578.142400pt;}
.y167{bottom:578.175600pt;}
.y124{bottom:578.436267pt;}
.y3b{bottom:579.481467pt;}
.y23{bottom:581.428933pt;}
.yb0{bottom:583.271600pt;}
.y1b3{bottom:583.364933pt;}
.y6b{bottom:585.938267pt;}
.y98{bottom:586.494667pt;}
.y166{bottom:589.508933pt;}
.y123{bottom:589.769600pt;}
.y3a{bottom:590.148133pt;}
.y22{bottom:596.762267pt;}
.y1b2{bottom:598.698267pt;}
.y105{bottom:599.166000pt;}
.yc2{bottom:600.441600pt;}
.y39{bottom:600.814800pt;}
.y165{bottom:600.842267pt;}
.y122{bottom:601.102933pt;}
.y6a{bottom:601.271600pt;}
.y97{bottom:607.828000pt;}
.y104{bottom:611.166000pt;}
.y38{bottom:611.481467pt;}
.y21{bottom:612.095600pt;}
.y164{bottom:612.175600pt;}
.y121{bottom:612.436267pt;}
.y88{bottom:613.938267pt;}
.y69{bottom:616.604933pt;}
.y96{bottom:618.494667pt;}
.y37{bottom:622.148133pt;}
.yc1{bottom:622.740800pt;}
.y163{bottom:623.508933pt;}
.y120{bottom:623.769600pt;}
.y95{bottom:629.161333pt;}
.y20{bottom:631.208533pt;}
.y68{bottom:631.938267pt;}
.y36{bottom:632.814800pt;}
.y162{bottom:634.842267pt;}
.y11f{bottom:635.102933pt;}
.y103{bottom:638.236800pt;}
.y94{bottom:639.828000pt;}
.y35{bottom:643.481467pt;}
.y87{bottom:644.604933pt;}
.yc0{bottom:645.040000pt;}
.y161{bottom:646.175600pt;}
.y11e{bottom:646.436267pt;}
.y67{bottom:647.271600pt;}
.y1f{bottom:650.321333pt;}
.y93{bottom:650.494667pt;}
.y34{bottom:654.148133pt;}
.ybd{bottom:656.189600pt;}
.y1b0{bottom:656.788533pt;}
.y160{bottom:657.508933pt;}
.y11d{bottom:657.769600pt;}
.y92{bottom:661.161333pt;}
.y66{bottom:662.604933pt;}
.yf7{bottom:664.000133pt;}
.y33{bottom:664.814800pt;}
.y1e{bottom:665.654667pt;}
.y102{bottom:666.583333pt;}
.ybf{bottom:667.339200pt;}
.y1af{bottom:667.455200pt;}
.y19d{bottom:668.452667pt;}
.y15f{bottom:668.842267pt;}
.y11c{bottom:669.102933pt;}
.y91{bottom:671.828000pt;}
.yae{bottom:675.271600pt;}
.y32{bottom:675.481467pt;}
.ye1{bottom:677.871067pt;}
.y65{bottom:677.938267pt;}
.y1ae{bottom:678.121867pt;}
.y15e{bottom:680.175600pt;}
.y11b{bottom:680.436267pt;}
.y19c{bottom:680.452667pt;}
.y1d{bottom:680.988000pt;}
.y90{bottom:682.494667pt;}
.y31{bottom:686.148133pt;}
.y1ad{bottom:688.788533pt;}
.ybe{bottom:689.638400pt;}
.yde{bottom:690.604933pt;}
.y15d{bottom:691.508933pt;}
.y11a{bottom:691.769600pt;}
.y19b{bottom:692.452667pt;}
.y8f{bottom:693.161333pt;}
.y64{bottom:693.271600pt;}
.y101{bottom:694.929733pt;}
.y1c{bottom:696.321333pt;}
.y30{bottom:696.814800pt;}
.y1ac{bottom:699.455200pt;}
.y15c{bottom:702.842267pt;}
.y119{bottom:703.102933pt;}
.y8e{bottom:703.828000pt;}
.y19a{bottom:704.452667pt;}
.y63{bottom:708.604933pt;}
.y1ab{bottom:710.121867pt;}
.ybc{bottom:711.937600pt;}
.y15b{bottom:714.175600pt;}
.y118{bottom:714.436267pt;}
.y8d{bottom:714.494667pt;}
.y199{bottom:718.342400pt;}
.y1aa{bottom:720.788533pt;}
.y100{bottom:723.276267pt;}
.y62{bottom:723.938267pt;}
.y8c{bottom:725.161333pt;}
.y15a{bottom:725.508933pt;}
.y117{bottom:725.769600pt;}
.y198{bottom:730.342400pt;}
.y1a9{bottom:731.455200pt;}
.ybb{bottom:734.236800pt;}
.y159{bottom:736.842267pt;}
.y116{bottom:737.102933pt;}
.y86{bottom:739.271600pt;}
.y1a8{bottom:742.121867pt;}
.y197{bottom:742.342400pt;}
.y158{bottom:748.175600pt;}
.y115{bottom:748.436267pt;}
.y1b{bottom:748.848133pt;}
.yff{bottom:751.622667pt;}
.y1a7{bottom:752.788533pt;}
.y196{bottom:754.342400pt;}
.y85{bottom:754.604933pt;}
.yb7{bottom:755.685600pt;}
.yba{bottom:756.536000pt;}
.y157{bottom:759.508933pt;}
.y114{bottom:759.769600pt;}
.y1a6{bottom:763.455200pt;}
.y1a{bottom:764.848133pt;}
.y195{bottom:766.342400pt;}
.yb6{bottom:767.685600pt;}
.y84{bottom:769.938267pt;}
.y156{bottom:770.842267pt;}
.y113{bottom:771.102933pt;}
.y1a5{bottom:774.121867pt;}
.y194{bottom:778.342400pt;}
.yb9{bottom:778.835333pt;}
.yb5{bottom:779.685600pt;}
.yfe{bottom:779.969200pt;}
.y19{bottom:780.848133pt;}
.y155{bottom:782.175600pt;}
.y112{bottom:782.436267pt;}
.y1a4{bottom:784.788533pt;}
.y83{bottom:785.271600pt;}
.y193{bottom:790.342400pt;}
.y154{bottom:793.508933pt;}
.y111{bottom:793.769600pt;}
.y1a3{bottom:795.455200pt;}
.y18{bottom:796.848133pt;}
.y82{bottom:800.604933pt;}
.yb8{bottom:801.134400pt;}
.y192{bottom:804.232133pt;}
.y153{bottom:804.842267pt;}
.y110{bottom:805.102933pt;}
.y1a2{bottom:806.121867pt;}
.yfd{bottom:808.315600pt;}
.y81{bottom:815.938267pt;}
.y152{bottom:816.175600pt;}
.y191{bottom:816.232133pt;}
.y10f{bottom:816.436267pt;}
.y1a1{bottom:816.788533pt;}
.yb4{bottom:823.433733pt;}
.y1a0{bottom:827.455200pt;}
.y151{bottom:827.508933pt;}
.y10e{bottom:827.769600pt;}
.y190{bottom:828.232133pt;}
.y80{bottom:831.271600pt;}
.yfc{bottom:836.662000pt;}
.y19f{bottom:838.121867pt;}
.y150{bottom:838.842267pt;}
.y10d{bottom:839.102933pt;}
.y18f{bottom:840.232133pt;}
.y17{bottom:840.848533pt;}
.yac{bottom:843.938267pt;}
.yb3{bottom:845.732933pt;}
.y7f{bottom:846.604933pt;}
.ye0{bottom:847.004933pt;}
.y19e{bottom:848.788533pt;}
.y14f{bottom:850.175600pt;}
.y10c{bottom:850.436267pt;}
.y18e{bottom:852.232133pt;}
.yf6{bottom:853.354533pt;}
.y14e{bottom:861.508933pt;}
.y10b{bottom:861.769600pt;}
.y7e{bottom:861.938267pt;}
.yfb{bottom:865.008533pt;}
.y18d{bottom:866.121867pt;}
.yb2{bottom:868.032133pt;}
.y16{bottom:869.648667pt;}
.y14d{bottom:872.842267pt;}
.y10a{bottom:873.102933pt;}
.y7d{bottom:877.271600pt;}
.ydf{bottom:882.520533pt;}
.y14c{bottom:884.175600pt;}
.y109{bottom:884.436267pt;}
.y7c{bottom:892.604933pt;}
.y1b1{bottom:892.927200pt;}
.yb1{bottom:894.520400pt;}
.y8b{bottom:894.520533pt;}
.y14b{bottom:895.508933pt;}
.y15{bottom:898.448533pt;}
.y108{bottom:906.352267pt;}
.y14a{bottom:906.842267pt;}
.y7b{bottom:907.938267pt;}
.y2{bottom:999.938267pt;}
.ha{height:25.052083pt;}
.he{height:25.272000pt;}
.h9{height:26.520000pt;}
.h1b{height:27.290667pt;}
.h8{height:29.466667pt;}
.h19{height:29.866667pt;}
.h1c{height:30.373333pt;}
.h10{height:30.600000pt;}
.h13{height:30.800000pt;}
.h17{height:31.733333pt;}
.h12{height:33.413333pt;}
.h18{height:33.420000pt;}
.h1a{height:33.560000pt;}
.hd{height:34.000000pt;}
.hb{height:34.634667pt;}
.h11{height:35.800000pt;}
.h2{height:38.533333pt;}
.h3{height:40.800000pt;}
.hc{height:41.066667pt;}
.h5{height:42.509333pt;}
.hf{height:44.956533pt;}
.h7{height:45.333333pt;}
.h4{height:47.226667pt;}
.h14{height:57.420000pt;}
.h16{height:58.000000pt;}
.h6{height:70.176000pt;}
.h15{height:81.420000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:52.913333pt;}
.x13{left:53.834533pt;}
.x1e{left:55.273333pt;}
.x3{left:56.692933pt;}
.x18{left:62.076267pt;}
.x15{left:63.263733pt;}
.x12{left:65.239467pt;}
.xf{left:68.107867pt;}
.x11{left:69.624533pt;}
.x4{left:71.811067pt;}
.x16{left:75.465867pt;}
.x10{left:82.399067pt;}
.x1c{left:84.713067pt;}
.x1f{left:85.969200pt;}
.x17{left:86.914400pt;}
.x1d{left:88.777467pt;}
.x1b{left:91.065333pt;}
.x1a{left:92.200800pt;}
.x14{left:95.788533pt;}
.xe{left:107.271733pt;}
.x22{left:130.393733pt;}
.x19{left:136.399733pt;}
.xa{left:181.417333pt;}
.xb{left:196.535467pt;}
.x45{left:200.314933pt;}
.x44{left:202.263467pt;}
.x43{left:239.670267pt;}
.x21{left:270.651733pt;}
.x20{left:309.509467pt;}
.x5{left:342.047200pt;}
.x47{left:353.385867pt;}
.x6{left:357.165333pt;}
.x32{left:425.040933pt;}
.x27{left:425.990933pt;}
.x37{left:427.025867pt;}
.x3c{left:430.210800pt;}
.x25{left:437.440667pt;}
.x31{left:438.955467pt;}
.x3b{left:441.130400pt;}
.xc{left:466.771600pt;}
.x24{left:469.368933pt;}
.x33{left:478.753600pt;}
.x29{left:479.798667pt;}
.xd{left:481.889733pt;}
.x46{left:485.669333pt;}
.x28{left:491.648400pt;}
.x38{left:493.483333pt;}
.x3d{left:494.818133pt;}
.x2b{left:531.016533pt;}
.x34{left:532.216533pt;}
.x23{left:541.626533pt;}
.x2a{left:544.706133pt;}
.x35{left:585.739200pt;}
.x3f{left:588.144133pt;}
.x2d{left:589.524133pt;}
.x2c{left:599.018933pt;}
.x3e{left:600.778800pt;}
.x7{left:627.401600pt;}
.x2f{left:638.947067pt;}
.x39{left:640.596933pt;}
.x2e{left:652.191733pt;}
.x40{left:653.946533pt;}
.x36{left:691.034933pt;}
.x2{left:692.135067pt;}
.x26{left:700.414667pt;}
.x30{left:704.179467pt;}
.x41{left:705.119467pt;}
.x3a{left:706.834533pt;}
.x42{left:729.567600pt;}
.x1{left:731.822933pt;}
.x8{left:733.064400pt;}
}




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