
    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_943f292129b1d7070988bde5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_82d80c8666dfa89c3c8e1c55.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_a60356debd6b43eabb211f41.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_719c589c2b6d635fe56fbd36.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_7ba472eeba935a267b0807fa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_cc607eec5b2c55371dce10cd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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_901b354aff44db2c11f22786.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_0cb97a595ba137ecf6c9a6cd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_093330cd0fe7fcf954921f31.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922852;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_fdd5d81764fa099fa9bbb2f3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.678711;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_c404e794e090074b4e39781a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.881836;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_a5aac25a8a280837f2fa31fd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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_f4b21866e9b496e1fb2b8813.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899414;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_1cc89a73ed745a09eb04f599.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4e{letter-spacing:-14.760000px;}
.ls3c{letter-spacing:-7.200000px;}
.ls10{letter-spacing:-4.176000px;}
.ls5b{letter-spacing:-2.808000px;}
.ls41{letter-spacing:-2.064000px;}
.ls5f{letter-spacing:-1.872000px;}
.ls55{letter-spacing:-1.008000px;}
.ls2a{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.864000px;}
.ls18{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.504000px;}
.ls39{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.432000px;}
.ls40{letter-spacing:-0.403200px;}
.lse{letter-spacing:-0.360000px;}
.ls4f{letter-spacing:-0.302400px;}
.ls7{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.252000px;}
.ls5e{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.201600px;}
.ls9{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls54{letter-spacing:-0.050400px;}
.ls6{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.020400px;}
.ls34{letter-spacing:0.050400px;}
.ls11{letter-spacing:0.072000px;}
.ls46{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.165600px;}
.ls37{letter-spacing:0.201600px;}
.ls12{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.237600px;}
.ls36{letter-spacing:0.252000px;}
.ls15{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls3b{letter-spacing:0.453600px;}
.lsa{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.936000px;}
.ls25{letter-spacing:1.108800px;}
.ls4a{letter-spacing:1.296000px;}
.ls56{letter-spacing:1.368000px;}
.ls4c{letter-spacing:1.440000px;}
.ls5a{letter-spacing:1.584000px;}
.ls50{letter-spacing:1.692000px;}
.ls45{letter-spacing:2.138400px;}
.ls1{letter-spacing:2.850000px;}
.ls60{letter-spacing:2.899200px;}
.ls61{letter-spacing:2.928000px;}
.ls5d{letter-spacing:2.932800px;}
.ls33{letter-spacing:2.942400px;}
.ls43{letter-spacing:3.168000px;}
.ls62{letter-spacing:3.360000px;}
.ls3{letter-spacing:3.660000px;}
.ls59{letter-spacing:3.837600px;}
.ls3a{letter-spacing:3.852000px;}
.ls4{letter-spacing:4.560000px;}
.ls5c{letter-spacing:4.752000px;}
.ls20{letter-spacing:5.616000px;}
.ls2d{letter-spacing:5.695200px;}
.ls52{letter-spacing:5.904000px;}
.ls47{letter-spacing:6.624000px;}
.ls53{letter-spacing:7.344000px;}
.ls17{letter-spacing:7.380000px;}
.ls48{letter-spacing:7.560000px;}
.ls22{letter-spacing:7.830000px;}
.ls4d{letter-spacing:7.938000px;}
.ls57{letter-spacing:7.992000px;}
.ls51{letter-spacing:8.046000px;}
.ls1d{letter-spacing:8.100000px;}
.ls2c{letter-spacing:8.136000px;}
.ls2e{letter-spacing:8.154000px;}
.ls4b{letter-spacing:8.280000px;}
.ls0{letter-spacing:8.436000px;}
.ls5{letter-spacing:8.460000px;}
.ls3e{letter-spacing:8.586000px;}
.ls31{letter-spacing:8.694000px;}
.ls3d{letter-spacing:8.802000px;}
.ls21{letter-spacing:8.928000px;}
.ls49{letter-spacing:8.949600px;}
.ls38{letter-spacing:9.576000px;}
.ls32{letter-spacing:9.583200px;}
.ls35{letter-spacing:9.648000px;}
.ls44{letter-spacing:10.296000px;}
.ls58{letter-spacing:10.440000px;}
.ls2{letter-spacing:10.740000px;}
.ls30{letter-spacing:13.795500px;}
.ls3f{letter-spacing:13.796100px;}
.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;}
}
.ws34{word-spacing:-72.000000px;}
.ws38{word-spacing:-71.856000px;}
.ws36{word-spacing:-28.368000px;}
.ws2{word-spacing:-25.320000px;}
.ws54{word-spacing:-23.976000px;}
.ws44{word-spacing:-23.868000px;}
.ws57{word-spacing:-23.760000px;}
.ws3d{word-spacing:-23.328000px;}
.ws26{word-spacing:-23.274000px;}
.ws67{word-spacing:-23.220000px;}
.ws60{word-spacing:-23.112000px;}
.ws2c{word-spacing:-23.004000px;}
.ws6b{word-spacing:-22.518000px;}
.ws49{word-spacing:-21.168000px;}
.ws51{word-spacing:-20.880000px;}
.wsf{word-spacing:-20.232000px;}
.ws2d{word-spacing:-19.872000px;}
.ws37{word-spacing:-19.857600px;}
.ws1{word-spacing:-18.867000px;}
.ws65{word-spacing:-18.504000px;}
.ws64{word-spacing:-18.432000px;}
.ws3e{word-spacing:-18.360000px;}
.ws42{word-spacing:-18.288000px;}
.ws5b{word-spacing:-18.216000px;}
.ws55{word-spacing:-18.144000px;}
.ws6a{word-spacing:-18.072000px;}
.ws3f{word-spacing:-18.000000px;}
.ws2b{word-spacing:-17.928000px;}
.ws19{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws2a{word-spacing:-17.640000px;}
.ws6c{word-spacing:-17.496000px;}
.ws33{word-spacing:-17.424000px;}
.ws2e{word-spacing:-17.352000px;}
.ws31{word-spacing:-17.208000px;}
.ws66{word-spacing:-17.136000px;}
.ws6d{word-spacing:-17.064000px;}
.ws77{word-spacing:-16.860000px;}
.wse{word-spacing:-16.056000px;}
.ws58{word-spacing:-14.666400px;}
.ws52{word-spacing:-14.616000px;}
.ws76{word-spacing:-14.520000px;}
.ws47{word-spacing:-14.414400px;}
.ws48{word-spacing:-14.364000px;}
.ws5a{word-spacing:-14.263200px;}
.ws43{word-spacing:-14.212800px;}
.ws4{word-spacing:-14.162400px;}
.ws69{word-spacing:-14.112000px;}
.ws32{word-spacing:-13.960800px;}
.ws35{word-spacing:-13.910400px;}
.ws61{word-spacing:-13.860000px;}
.ws56{word-spacing:-13.759200px;}
.ws62{word-spacing:-13.488000px;}
.ws72{word-spacing:-12.336000px;}
.ws40{word-spacing:-11.856000px;}
.ws75{word-spacing:-11.616000px;}
.ws59{word-spacing:-11.424000px;}
.ws4f{word-spacing:-9.576000px;}
.wsc{word-spacing:-8.496000px;}
.wsa{word-spacing:-8.460000px;}
.ws5c{word-spacing:-8.280000px;}
.ws1b{word-spacing:-7.380000px;}
.ws9{word-spacing:-4.560000px;}
.ws6f{word-spacing:-1.584000px;}
.ws5d{word-spacing:-1.440000px;}
.ws70{word-spacing:-1.368000px;}
.ws5e{word-spacing:-1.296000px;}
.ws23{word-spacing:-0.936000px;}
.ws16{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.792000px;}
.ws27{word-spacing:-0.720000px;}
.ws39{word-spacing:-0.648000px;}
.ws45{word-spacing:-0.576000px;}
.ws14{word-spacing:-0.504000px;}
.ws1e{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.288000px;}
.ws1c{word-spacing:-0.216000px;}
.ws21{word-spacing:-0.144000px;}
.ws1a{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws17{word-spacing:0.072000px;}
.wsb{word-spacing:0.144000px;}
.ws28{word-spacing:0.216000px;}
.ws73{word-spacing:0.240000px;}
.ws24{word-spacing:0.288000px;}
.ws8{word-spacing:0.300000px;}
.ws12{word-spacing:0.360000px;}
.ws11{word-spacing:0.432000px;}
.ws50{word-spacing:0.480000px;}
.ws30{word-spacing:0.504000px;}
.ws2f{word-spacing:0.576000px;}
.ws20{word-spacing:0.648000px;}
.ws13{word-spacing:0.720000px;}
.ws1f{word-spacing:0.792000px;}
.ws3c{word-spacing:0.864000px;}
.ws3b{word-spacing:0.936000px;}
.ws6e{word-spacing:1.008000px;}
.ws3a{word-spacing:1.080000px;}
.ws7{word-spacing:1.440000px;}
.ws6{word-spacing:1.800000px;}
.ws74{word-spacing:1.872000px;}
.ws29{word-spacing:2.400000px;}
.ws71{word-spacing:2.808000px;}
.ws25{word-spacing:2.952000px;}
.ws46{word-spacing:3.024000px;}
.ws41{word-spacing:3.240000px;}
.ws4d{word-spacing:3.672000px;}
.ws10{word-spacing:4.200000px;}
.ws18{word-spacing:5.040000px;}
.ws4b{word-spacing:6.048000px;}
.ws68{word-spacing:6.480000px;}
.ws53{word-spacing:7.200000px;}
.ws4c{word-spacing:8.640000px;}
.ws4a{word-spacing:10.080000px;}
.ws4e{word-spacing:10.152000px;}
.ws5f{word-spacing:12.384000px;}
.ws63{word-spacing:14.760000px;}
.ws0{word-spacing:146.196000px;}
._c{margin-left:-948.820800px;}
._13{margin-left:-17.784000px;}
._11{margin-left:-15.516900px;}
._10{margin-left:-14.494500px;}
._15{margin-left:-12.549300px;}
._14{margin-left:-10.276800px;}
._12{margin-left:-8.563200px;}
._d{margin-left:-7.099200px;}
._8{margin-left:-5.784000px;}
._4{margin-left:-3.804000px;}
._b{margin-left:-2.644800px;}
._5{margin-left:-1.560000px;}
._2{width:1.738500px;}
._1{width:2.796000px;}
._0{width:4.296000px;}
._6{width:5.692500px;}
._e{width:6.812100px;}
._3{width:8.352000px;}
._9{width:9.451200px;}
._f{width:10.734300px;}
._7{width:12.594000px;}
._16{width:13.796100px;}
._17{width:14.797500px;}
._a{width:31.645500px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y21{bottom:117.000000px;}
.y299{bottom:119.036250px;}
.y270{bottom:119.106000px;}
.y204{bottom:119.802000px;}
.y23a{bottom:120.588000px;}
.y65{bottom:121.207500px;}
.y20{bottom:132.000000px;}
.y26f{bottom:133.950000px;}
.y239{bottom:135.132000px;}
.y112{bottom:136.207500px;}
.y298{bottom:137.936250px;}
.y16e{bottom:139.500000px;}
.y203{bottom:143.508000px;}
.y1f{bottom:147.000000px;}
.y26e{bottom:148.806000px;}
.y238{bottom:149.676000px;}
.y1b8{bottom:151.207500px;}
.y135{bottom:154.500000px;}
.y297{bottom:156.836250px;}
.y111{bottom:158.707500px;}
.y77{bottom:159.519600px;}
.y64{bottom:162.000000px;}
.y26d{bottom:163.650000px;}
.y237{bottom:164.220000px;}
.y1e{bottom:166.207500px;}
.y202{bottom:167.214000px;}
.y16d{bottom:169.500000px;}
.y134{bottom:173.707500px;}
.y296{bottom:175.736250px;}
.y97{bottom:177.000000px;}
.y26c{bottom:178.494000px;}
.y236{bottom:178.764000px;}
.y14f{bottom:179.298000px;}
.yb6{bottom:181.207500px;}
.y76{bottom:182.019600px;}
.y1d{bottom:184.500000px;}
.y201{bottom:190.920000px;}
.yf6{bottom:192.000000px;}
.y235{bottom:193.308000px;}
.y26b{bottom:193.338000px;}
.y96{bottom:196.207500px;}
.y1c{bottom:199.500000px;}
.y14e{bottom:202.104000px;}
.y42{bottom:203.707500px;}
.y75{bottom:204.519600px;}
.y295{bottom:206.036250px;}
.y63{bottom:207.000000px;}
.y234{bottom:207.852000px;}
.y26a{bottom:208.182000px;}
.yf5{bottom:211.207500px;}
.y16c{bottom:214.500000px;}
.y200{bottom:214.626000px;}
.y133{bottom:216.954000px;}
.y1b{bottom:218.707500px;}
.y185{bottom:219.822000px;}
.yb5{bottom:222.000000px;}
.y233{bottom:222.408000px;}
.y269{bottom:223.026000px;}
.y14d{bottom:224.748000px;}
.y110{bottom:226.207500px;}
.y74{bottom:227.019600px;}
.y62{bottom:229.500000px;}
.yf4{bottom:233.707500px;}
.y232{bottom:236.952000px;}
.yb4{bottom:237.000000px;}
.y1b7{bottom:237.078000px;}
.y268{bottom:237.870000px;}
.y1ff{bottom:238.332000px;}
.y1e1{bottom:239.136000px;}
.y132{bottom:239.148000px;}
.y16f{bottom:241.207500px;}
.y184{bottom:242.628000px;}
.y1d8{bottom:243.612000px;}
.y10f{bottom:244.500000px;}
.y41{bottom:245.400000px;}
.yd5{bottom:247.380000px;}
.y14c{bottom:247.392000px;}
.y294{bottom:247.586250px;}
.y19a{bottom:248.707500px;}
.y73{bottom:249.519600px;}
.y231{bottom:251.496000px;}
.y61{bottom:252.000000px;}
.y267{bottom:252.714000px;}
.yb3{bottom:256.207500px;}
.y1b6{bottom:259.434000px;}
.y10e{bottom:259.500000px;}
.y95{bottom:260.694000px;}
.y1e0{bottom:261.330000px;}
.y131{bottom:261.342000px;}
.y1fe{bottom:262.038000px;}
.y183{bottom:265.434000px;}
.y1a{bottom:265.452750px;}
.y1d7{bottom:265.806000px;}
.y230{bottom:266.040000px;}
.y293{bottom:266.636250px;}
.y199{bottom:267.000000px;}
.y40{bottom:267.450000px;}
.y266{bottom:267.558000px;}
.yd4{bottom:270.024000px;}
.y14b{bottom:270.036000px;}
.y16b{bottom:271.207500px;}
.y72{bottom:272.019600px;}
.y60{bottom:274.500000px;}
.yf3{bottom:276.120000px;}
.yb2{bottom:278.707500px;}
.y22f{bottom:280.584000px;}
.y1b5{bottom:281.790000px;}
.y265{bottom:282.402000px;}
.y1df{bottom:283.524000px;}
.y130{bottom:283.536000px;}
.y94{bottom:283.950000px;}
.y292{bottom:285.686250px;}
.y1fd{bottom:285.744000px;}
.y198{bottom:286.207500px;}
.y19{bottom:287.952750px;}
.y1d6{bottom:288.000000px;}
.y182{bottom:288.240000px;}
.y3f{bottom:289.500000px;}
.yd3{bottom:292.668000px;}
.y14a{bottom:292.680000px;}
.y71{bottom:294.519600px;}
.y22e{bottom:295.140000px;}
.y5f{bottom:297.000000px;}
.y264{bottom:297.246000px;}
.yf2{bottom:298.476000px;}
.yb1{bottom:301.207500px;}
.y1b4{bottom:304.146000px;}
.y16a{bottom:304.500000px;}
.y291{bottom:304.736250px;}
.y1de{bottom:305.718000px;}
.y12f{bottom:305.730000px;}
.y93{bottom:306.900000px;}
.y197{bottom:308.707500px;}
.y1fc{bottom:309.450000px;}
.y22d{bottom:309.684000px;}
.y1d5{bottom:310.050000px;}
.y18{bottom:310.452750px;}
.y181{bottom:311.046000px;}
.y3e{bottom:311.550000px;}
.y263{bottom:312.090000px;}
.yd2{bottom:315.312000px;}
.y149{bottom:315.324000px;}
.y70{bottom:317.019600px;}
.y5e{bottom:319.500000px;}
.yf1{bottom:320.832000px;}
.y169{bottom:323.707500px;}
.y290{bottom:323.786250px;}
.y10d{bottom:323.976000px;}
.y22c{bottom:324.228000px;}
.y1b3{bottom:326.502000px;}
.y262{bottom:326.934000px;}
.y196{bottom:327.000000px;}
.y1dd{bottom:327.912000px;}
.y12e{bottom:327.924000px;}
.y92{bottom:329.850000px;}
.y1d4{bottom:332.100000px;}
.y17{bottom:332.952750px;}
.y1fb{bottom:333.156000px;}
.y3d{bottom:333.600000px;}
.y180{bottom:333.852000px;}
.yd1{bottom:337.956000px;}
.y148{bottom:337.968000px;}
.y22b{bottom:338.772000px;}
.y6f{bottom:339.519600px;}
.y261{bottom:341.778000px;}
.y5d{bottom:342.000000px;}
.y28f{bottom:342.836250px;}
.yf0{bottom:343.188000px;}
.yb0{bottom:344.964000px;}
.y10c{bottom:346.026000px;}
.y195{bottom:346.207500px;}
.y1b2{bottom:348.858000px;}
.y1dc{bottom:350.106000px;}
.y12d{bottom:350.118000px;}
.y91{bottom:352.800000px;}
.y22a{bottom:353.316000px;}
.y1d3{bottom:354.150000px;}
.y16{bottom:355.452750px;}
.y3c{bottom:355.650000px;}
.y260{bottom:356.622000px;}
.y17f{bottom:356.658000px;}
.y1fa{bottom:356.862000px;}
.yd0{bottom:360.600000px;}
.y147{bottom:360.612000px;}
.y168{bottom:361.207500px;}
.y28e{bottom:361.886250px;}
.y6e{bottom:362.019600px;}
.y5c{bottom:364.500000px;}
.yef{bottom:365.544000px;}
.y229{bottom:367.872000px;}
.yaf{bottom:368.220000px;}
.y10b{bottom:368.382000px;}
.y194{bottom:368.707500px;}
.y1b1{bottom:371.214000px;}
.y25f{bottom:371.466000px;}
.y1db{bottom:372.300000px;}
.y12c{bottom:372.312000px;}
.y90{bottom:375.750000px;}
.y1d2{bottom:376.200000px;}
.y3b{bottom:377.700000px;}
.y17e{bottom:379.464000px;}
.y1f9{bottom:380.568000px;}
.y28d{bottom:380.936250px;}
.y228{bottom:382.416000px;}
.y146{bottom:383.256000px;}
.ycf{bottom:383.310000px;}
.y167{bottom:383.707500px;}
.y6d{bottom:384.519600px;}
.y25e{bottom:386.310000px;}
.y5b{bottom:387.000000px;}
.yee{bottom:387.900000px;}
.y10a{bottom:390.738000px;}
.y193{bottom:391.207500px;}
.yae{bottom:391.476000px;}
.y1b0{bottom:393.570000px;}
.y12b{bottom:394.506000px;}
.y1da{bottom:394.524000px;}
.y227{bottom:396.960000px;}
.y1d1{bottom:398.250000px;}
.y8f{bottom:398.700000px;}
.y3a{bottom:399.750000px;}
.y28c{bottom:399.986250px;}
.y15{bottom:400.452750px;}
.y25d{bottom:401.154000px;}
.y17d{bottom:402.270000px;}
.y1f8{bottom:404.274000px;}
.y145{bottom:405.912000px;}
.yce{bottom:405.954000px;}
.y166{bottom:406.207500px;}
.y5a{bottom:409.500000px;}
.yed{bottom:410.250000px;}
.y226{bottom:411.504000px;}
.y109{bottom:413.094000px;}
.yad{bottom:414.732000px;}
.y1af{bottom:415.926000px;}
.y25c{bottom:415.998000px;}
.y12a{bottom:416.718000px;}
.y28b{bottom:419.036250px;}
.y1d0{bottom:420.300000px;}
.y8e{bottom:421.650000px;}
.y39{bottom:421.800000px;}
.y17c{bottom:425.076000px;}
.y225{bottom:426.048000px;}
.y14{bottom:427.705650px;}
.y1f7{bottom:427.980000px;}
.y144{bottom:428.556000px;}
.ycd{bottom:428.598000px;}
.y165{bottom:428.707500px;}
.y6c{bottom:429.519600px;}
.y25b{bottom:430.842000px;}
.y59{bottom:432.000000px;}
.yec{bottom:432.750000px;}
.y108{bottom:435.450000px;}
.yac{bottom:437.988000px;}
.y28a{bottom:438.086250px;}
.y1ae{bottom:438.282000px;}
.y129{bottom:438.912000px;}
.y224{bottom:440.604000px;}
.y1cf{bottom:442.350000px;}
.y38{bottom:443.850000px;}
.y8d{bottom:444.600000px;}
.y25a{bottom:445.686000px;}
.y13{bottom:446.455650px;}
.y17b{bottom:447.882000px;}
.y143{bottom:451.200000px;}
.ycc{bottom:451.242000px;}
.y1f6{bottom:451.686000px;}
.y6b{bottom:452.019600px;}
.y58{bottom:454.500000px;}
.y223{bottom:455.148000px;}
.yeb{bottom:455.250000px;}
.y289{bottom:457.136250px;}
.y107{bottom:457.770000px;}
.y259{bottom:460.530000px;}
.y1ad{bottom:460.638000px;}
.y128{bottom:461.106000px;}
.yab{bottom:461.244000px;}
.y1ce{bottom:464.400000px;}
.y12{bottom:465.205650px;}
.y37{bottom:465.900000px;}
.y8c{bottom:467.550000px;}
.y222{bottom:469.692000px;}
.y164{bottom:470.682000px;}
.y17a{bottom:470.688000px;}
.y192{bottom:471.000000px;}
.y142{bottom:473.868000px;}
.ycb{bottom:473.886000px;}
.y6a{bottom:474.519600px;}
.y258{bottom:475.374000px;}
.y1f5{bottom:475.392000px;}
.y288{bottom:476.186250px;}
.y57{bottom:477.000000px;}
.yea{bottom:477.750000px;}
.y106{bottom:480.126000px;}
.y1ac{bottom:482.994000px;}
.y127{bottom:483.300000px;}
.y11{bottom:483.955650px;}
.y221{bottom:484.236000px;}
.yaa{bottom:484.488000px;}
.y1cd{bottom:486.450000px;}
.y36{bottom:487.950000px;}
.y257{bottom:490.218000px;}
.y8b{bottom:490.500000px;}
.y163{bottom:493.488000px;}
.y179{bottom:493.494000px;}
.y287{bottom:495.236250px;}
.y141{bottom:496.512000px;}
.yca{bottom:496.530000px;}
.y69{bottom:497.019600px;}
.y220{bottom:498.780000px;}
.y1f4{bottom:499.098000px;}
.y56{bottom:499.500000px;}
.ye9{bottom:500.250000px;}
.y105{bottom:502.482000px;}
.y10{bottom:502.705650px;}
.y256{bottom:505.062000px;}
.y1ab{bottom:505.350000px;}
.y126{bottom:505.554000px;}
.ya9{bottom:507.744000px;}
.y1cc{bottom:508.500000px;}
.y35{bottom:510.000000px;}
.y21f{bottom:513.336000px;}
.y8a{bottom:513.450000px;}
.y286{bottom:514.286250px;}
.y162{bottom:516.294000px;}
.y178{bottom:516.300000px;}
.y140{bottom:519.156000px;}
.yc9{bottom:519.174000px;}
.y68{bottom:519.519600px;}
.y255{bottom:519.906000px;}
.yf{bottom:521.455650px;}
.y55{bottom:522.000000px;}
.ye8{bottom:522.750000px;}
.y1f3{bottom:522.804000px;}
.y104{bottom:524.838000px;}
.y1aa{bottom:527.712000px;}
.y125{bottom:527.748000px;}
.y21e{bottom:527.880000px;}
.y1cb{bottom:530.550000px;}
.ya8{bottom:530.928000px;}
.y34{bottom:532.050000px;}
.y285{bottom:533.336250px;}
.y254{bottom:534.750000px;}
.y89{bottom:536.400000px;}
.y161{bottom:539.064000px;}
.y177{bottom:539.082000px;}
.y191{bottom:539.094000px;}
.y13f{bottom:541.800000px;}
.yc8{bottom:541.818000px;}
.y67{bottom:542.019600px;}
.y21d{bottom:542.424000px;}
.y54{bottom:544.500000px;}
.ye7{bottom:545.250000px;}
.y1f2{bottom:546.510000px;}
.y103{bottom:547.194000px;}
.ye{bottom:548.710650px;}
.y253{bottom:549.594000px;}
.y1a9{bottom:549.906000px;}
.y124{bottom:549.942000px;}
.y284{bottom:552.386250px;}
.y1ca{bottom:552.600000px;}
.y33{bottom:554.100000px;}
.ya7{bottom:554.184000px;}
.y21c{bottom:556.968000px;}
.y88{bottom:559.350000px;}
.y160{bottom:561.870000px;}
.y190{bottom:561.882000px;}
.y176{bottom:561.888000px;}
.y252{bottom:564.438000px;}
.y13e{bottom:564.450000px;}
.yc7{bottom:564.462000px;}
.y66{bottom:564.519600px;}
.y53{bottom:567.000000px;}
.ye6{bottom:567.750000px;}
.y102{bottom:569.526000px;}
.y1f1{bottom:570.216000px;}
.y283{bottom:571.436250px;}
.y21b{bottom:571.512000px;}
.y123{bottom:572.136000px;}
.y1a8{bottom:572.142000px;}
.y1c9{bottom:574.650000px;}
.y32{bottom:576.150000px;}
.ya6{bottom:577.440000px;}
.y251{bottom:579.282000px;}
.y87{bottom:582.300000px;}
.y15f{bottom:584.676000px;}
.y18f{bottom:584.688000px;}
.y175{bottom:584.694000px;}
.y21a{bottom:586.056000px;}
.yc6{bottom:587.106000px;}
.y52{bottom:589.500000px;}
.ye5{bottom:590.250000px;}
.y282{bottom:590.486250px;}
.y101{bottom:591.882000px;}
.yd{bottom:593.710650px;}
.y1f0{bottom:593.922000px;}
.y250{bottom:594.138000px;}
.y122{bottom:594.330000px;}
.y1a7{bottom:594.336000px;}
.y1c8{bottom:596.700000px;}
.y31{bottom:598.200000px;}
.y219{bottom:600.600000px;}
.ya5{bottom:600.696000px;}
.y86{bottom:605.250000px;}
.y174{bottom:607.428000px;}
.y15e{bottom:607.482000px;}
.y18e{bottom:607.494000px;}
.y24f{bottom:608.982000px;}
.y281{bottom:609.536250px;}
.yc5{bottom:609.768000px;}
.y13d{bottom:609.834000px;}
.y51{bottom:612.000000px;}
.ye4{bottom:612.750000px;}
.y100{bottom:614.238000px;}
.y218{bottom:615.144000px;}
.y121{bottom:616.524000px;}
.y1a6{bottom:616.530000px;}
.y1ef{bottom:617.628000px;}
.y1c7{bottom:618.750000px;}
.y30{bottom:620.250000px;}
.yc{bottom:620.963550px;}
.y24e{bottom:623.826000px;}
.ya4{bottom:623.952000px;}
.y85{bottom:628.200000px;}
.y280{bottom:628.586250px;}
.y217{bottom:629.700000px;}
.y173{bottom:630.234000px;}
.y15d{bottom:630.288000px;}
.y18d{bottom:630.294000px;}
.yc4{bottom:632.412000px;}
.y13c{bottom:632.478000px;}
.y50{bottom:634.500000px;}
.ye3{bottom:635.250000px;}
.yff{bottom:636.594000px;}
.y24d{bottom:638.670000px;}
.y120{bottom:638.718000px;}
.y1a5{bottom:638.724000px;}
.yb{bottom:639.713550px;}
.y1c6{bottom:640.800000px;}
.y1ee{bottom:641.334000px;}
.y2f{bottom:642.300000px;}
.y216{bottom:644.244000px;}
.ya3{bottom:647.208000px;}
.y27f{bottom:647.636250px;}
.y84{bottom:651.150000px;}
.y172{bottom:653.040000px;}
.y18c{bottom:653.088000px;}
.y15c{bottom:653.094000px;}
.y24c{bottom:653.514000px;}
.yc3{bottom:655.056000px;}
.y13b{bottom:655.122000px;}
.y4f{bottom:657.000000px;}
.ye2{bottom:657.750000px;}
.ya{bottom:658.463550px;}
.y215{bottom:658.788000px;}
.yfe{bottom:658.938000px;}
.y11f{bottom:660.912000px;}
.y1a4{bottom:660.918000px;}
.y1c5{bottom:662.850000px;}
.y2e{bottom:664.350000px;}
.y1ed{bottom:665.040000px;}
.y27e{bottom:666.686250px;}
.y24b{bottom:668.370000px;}
.ya2{bottom:670.464000px;}
.y214{bottom:673.332000px;}
.y83{bottom:674.100000px;}
.y171{bottom:675.846000px;}
.y18b{bottom:675.894000px;}
.y15b{bottom:675.900000px;}
.y9{bottom:677.213550px;}
.yc2{bottom:677.724000px;}
.y13a{bottom:677.766000px;}
.y4e{bottom:679.500000px;}
.ye1{bottom:680.250000px;}
.yfd{bottom:681.294000px;}
.y11e{bottom:683.106000px;}
.y1a3{bottom:683.112000px;}
.y24a{bottom:683.214000px;}
.y1c4{bottom:684.900000px;}
.y27d{bottom:685.736250px;}
.y2d{bottom:686.400000px;}
.y213{bottom:687.876000px;}
.y1ec{bottom:688.746000px;}
.ya1{bottom:693.720000px;}
.y8{bottom:695.963550px;}
.y82{bottom:697.050000px;}
.y249{bottom:698.058000px;}
.y170{bottom:698.652000px;}
.y18a{bottom:698.682000px;}
.y15a{bottom:698.694000px;}
.yc1{bottom:700.368000px;}
.y139{bottom:700.410000px;}
.y4d{bottom:702.000000px;}
.y212{bottom:702.432000px;}
.ye0{bottom:702.750000px;}
.yfc{bottom:703.632000px;}
.y11d{bottom:705.300000px;}
.y1a2{bottom:705.306000px;}
.y1c3{bottom:706.950000px;}
.y2c{bottom:708.450000px;}
.y1eb{bottom:712.452000px;}
.y248{bottom:712.902000px;}
.y7{bottom:714.713550px;}
.ya0{bottom:716.976000px;}
.y27c{bottom:717.542100px;}
.y81{bottom:720.000000px;}
.y159{bottom:721.458000px;}
.y189{bottom:721.488000px;}
.yc0{bottom:723.012000px;}
.y138{bottom:723.054000px;}
.y4c{bottom:724.500000px;}
.ydf{bottom:725.250000px;}
.yfb{bottom:725.988000px;}
.y1a1{bottom:727.500000px;}
.y11c{bottom:727.518000px;}
.y247{bottom:727.746000px;}
.y1c2{bottom:729.000000px;}
.y2b{bottom:730.500000px;}
.y211{bottom:731.520000px;}
.y1ea{bottom:736.158000px;}
.y9f{bottom:740.232000px;}
.y6{bottom:741.968550px;}
.y246{bottom:742.602000px;}
.y80{bottom:742.950000px;}
.y158{bottom:744.264000px;}
.y188{bottom:744.294000px;}
.ybf{bottom:745.656000px;}
.y137{bottom:745.698000px;}
.y210{bottom:746.064000px;}
.y4b{bottom:747.000000px;}
.yde{bottom:747.750000px;}
.yfa{bottom:748.344000px;}
.y27b{bottom:748.482000px;}
.y1d9{bottom:749.700000px;}
.y11b{bottom:749.712000px;}
.y1a0{bottom:749.730000px;}
.y1c1{bottom:751.050000px;}
.y2a{bottom:752.550000px;}
.y245{bottom:757.446000px;}
.y1e9{bottom:759.864000px;}
.y20f{bottom:760.608000px;}
.y9e{bottom:763.488000px;}
.y7f{bottom:765.900000px;}
.y157{bottom:767.070000px;}
.y187{bottom:767.100000px;}
.ybe{bottom:768.300000px;}
.y136{bottom:768.342000px;}
.y4a{bottom:769.500000px;}
.ydd{bottom:770.226000px;}
.yf9{bottom:770.658000px;}
.y11a{bottom:771.906000px;}
.y19f{bottom:771.924000px;}
.y244{bottom:772.290000px;}
.y1c0{bottom:773.100000px;}
.y29{bottom:774.606000px;}
.y20e{bottom:775.164000px;}
.y1e8{bottom:783.570000px;}
.y9d{bottom:786.744000px;}
.y243{bottom:787.134000px;}
.y5{bottom:787.854300px;}
.y7e{bottom:788.850000px;}
.y20d{bottom:789.708000px;}
.y156{bottom:789.876000px;}
.y186{bottom:789.894000px;}
.ybd{bottom:790.986000px;}
.y49{bottom:792.000000px;}
.ydc{bottom:792.726000px;}
.yf8{bottom:793.014000px;}
.y19e{bottom:794.118000px;}
.y119{bottom:794.136000px;}
.y1bf{bottom:795.150000px;}
.y28{bottom:796.656000px;}
.y27a{bottom:798.030000px;}
.y242{bottom:801.978000px;}
.y20c{bottom:804.252000px;}
.y1e7{bottom:807.276000px;}
.y9c{bottom:809.988000px;}
.y4{bottom:810.354300px;}
.y7d{bottom:811.800000px;}
.y155{bottom:812.682000px;}
.y279{bottom:813.174000px;}
.ybc{bottom:813.630000px;}
.y48{bottom:814.500000px;}
.ydb{bottom:815.226000px;}
.yf7{bottom:815.370000px;}
.y19d{bottom:816.312000px;}
.y118{bottom:816.330000px;}
.y241{bottom:816.834000px;}
.y1be{bottom:817.200000px;}
.y27{bottom:818.706000px;}
.y20b{bottom:818.796000px;}
.y278{bottom:828.330000px;}
.y1e6{bottom:830.982000px;}
.y240{bottom:831.678000px;}
.y9b{bottom:833.244000px;}
.y20a{bottom:833.340000px;}
.y7c{bottom:834.750000px;}
.y154{bottom:835.488000px;}
.ybb{bottom:836.274000px;}
.y47{bottom:837.000000px;}
.yda{bottom:837.726000px;}
.y19c{bottom:838.506000px;}
.y117{bottom:838.524000px;}
.y1bd{bottom:839.250000px;}
.y26{bottom:840.756000px;}
.y277{bottom:843.474000px;}
.y23f{bottom:846.534000px;}
.y209{bottom:847.896000px;}
.y1e5{bottom:854.688000px;}
.y9a{bottom:856.482000px;}
.y7b{bottom:857.700000px;}
.y153{bottom:858.294000px;}
.y276{bottom:858.618000px;}
.yba{bottom:858.918000px;}
.y46{bottom:859.500000px;}
.yd9{bottom:860.082000px;}
.y19b{bottom:860.706000px;}
.y116{bottom:860.718000px;}
.y1bc{bottom:861.300000px;}
.y23e{bottom:861.378000px;}
.y208{bottom:862.440000px;}
.y25{bottom:862.806000px;}
.y275{bottom:873.762000px;}
.y23d{bottom:876.222000px;}
.y207{bottom:876.984000px;}
.y3{bottom:877.500000px;}
.y1e4{bottom:878.394000px;}
.y99{bottom:879.738000px;}
.y7a{bottom:880.650000px;}
.y152{bottom:881.100000px;}
.yb9{bottom:881.562000px;}
.y45{bottom:882.000000px;}
.yd8{bottom:882.438000px;}
.y115{bottom:882.912000px;}
.y1bb{bottom:883.350000px;}
.y24{bottom:884.856000px;}
.y274{bottom:888.906000px;}
.y23c{bottom:891.078000px;}
.y206{bottom:891.528000px;}
.y1e3{bottom:902.100000px;}
.y98{bottom:902.994000px;}
.y79{bottom:903.600000px;}
.y151{bottom:903.894000px;}
.y273{bottom:904.062000px;}
.yb8{bottom:904.206000px;}
.y44{bottom:904.500000px;}
.yd7{bottom:904.794000px;}
.y114{bottom:905.106000px;}
.y1ba{bottom:905.400000px;}
.y23b{bottom:905.922000px;}
.y205{bottom:906.072000px;}
.y23{bottom:906.906000px;}
.y272{bottom:919.206000px;}
.y1e2{bottom:925.800000px;}
.y2{bottom:926.250000px;}
.y78{bottom:926.550000px;}
.y150{bottom:926.700000px;}
.yb7{bottom:926.850000px;}
.y43{bottom:927.000000px;}
.yd6{bottom:927.150000px;}
.y113{bottom:927.300000px;}
.y1b9{bottom:927.450000px;}
.y22{bottom:928.200000px;}
.y271{bottom:934.350000px;}
.h7{height:24.630908px;}
.hb{height:30.313623px;}
.h1c{height:33.117188px;}
.h1b{height:39.072000px;}
.h2{height:39.326660px;}
.h8{height:40.757812px;}
.h6{height:41.396484px;}
.h1d{height:45.852539px;}
.hc{height:48.840000px;}
.ha{height:49.675781px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.h5{height:61.136719px;}
.h15{height:61.160719px;}
.hf{height:61.184719px;}
.hd{height:61.208719px;}
.h11{height:61.232719px;}
.h14{height:61.304719px;}
.he{height:61.424719px;}
.h1a{height:66.387703px;}
.h12{height:66.411703px;}
.h10{height:66.459703px;}
.h9{height:66.555703px;}
.h13{height:66.579703px;}
.h19{height:66.603703px;}
.h17{height:66.627703px;}
.h16{height:66.699703px;}
.h18{height:66.867703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381950px;}
.x2{left:97.263750px;}
.x5{left:112.500000px;}
.x6{left:127.373850px;}
.x7{left:180.526950px;}
.x4{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4e{letter-spacing:-13.120000pt;}
.ls3c{letter-spacing:-6.400000pt;}
.ls10{letter-spacing:-3.712000pt;}
.ls5b{letter-spacing:-2.496000pt;}
.ls41{letter-spacing:-1.834667pt;}
.ls5f{letter-spacing:-1.664000pt;}
.ls55{letter-spacing:-0.896000pt;}
.ls2a{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.768000pt;}
.ls18{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls39{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls40{letter-spacing:-0.358400pt;}
.lse{letter-spacing:-0.320000pt;}
.ls4f{letter-spacing:-0.268800pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.224000pt;}
.ls5e{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.179200pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls54{letter-spacing:-0.044800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.018133pt;}
.ls34{letter-spacing:0.044800pt;}
.ls11{letter-spacing:0.064000pt;}
.ls46{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.147200pt;}
.ls37{letter-spacing:0.179200pt;}
.ls12{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.211200pt;}
.ls36{letter-spacing:0.224000pt;}
.ls15{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls3b{letter-spacing:0.403200pt;}
.lsa{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.832000pt;}
.ls25{letter-spacing:0.985600pt;}
.ls4a{letter-spacing:1.152000pt;}
.ls56{letter-spacing:1.216000pt;}
.ls4c{letter-spacing:1.280000pt;}
.ls5a{letter-spacing:1.408000pt;}
.ls50{letter-spacing:1.504000pt;}
.ls45{letter-spacing:1.900800pt;}
.ls1{letter-spacing:2.533333pt;}
.ls60{letter-spacing:2.577067pt;}
.ls61{letter-spacing:2.602667pt;}
.ls5d{letter-spacing:2.606933pt;}
.ls33{letter-spacing:2.615467pt;}
.ls43{letter-spacing:2.816000pt;}
.ls62{letter-spacing:2.986667pt;}
.ls3{letter-spacing:3.253333pt;}
.ls59{letter-spacing:3.411200pt;}
.ls3a{letter-spacing:3.424000pt;}
.ls4{letter-spacing:4.053333pt;}
.ls5c{letter-spacing:4.224000pt;}
.ls20{letter-spacing:4.992000pt;}
.ls2d{letter-spacing:5.062400pt;}
.ls52{letter-spacing:5.248000pt;}
.ls47{letter-spacing:5.888000pt;}
.ls53{letter-spacing:6.528000pt;}
.ls17{letter-spacing:6.560000pt;}
.ls48{letter-spacing:6.720000pt;}
.ls22{letter-spacing:6.960000pt;}
.ls4d{letter-spacing:7.056000pt;}
.ls57{letter-spacing:7.104000pt;}
.ls51{letter-spacing:7.152000pt;}
.ls1d{letter-spacing:7.200000pt;}
.ls2c{letter-spacing:7.232000pt;}
.ls2e{letter-spacing:7.248000pt;}
.ls4b{letter-spacing:7.360000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls5{letter-spacing:7.520000pt;}
.ls3e{letter-spacing:7.632000pt;}
.ls31{letter-spacing:7.728000pt;}
.ls3d{letter-spacing:7.824000pt;}
.ls21{letter-spacing:7.936000pt;}
.ls49{letter-spacing:7.955200pt;}
.ls38{letter-spacing:8.512000pt;}
.ls32{letter-spacing:8.518400pt;}
.ls35{letter-spacing:8.576000pt;}
.ls44{letter-spacing:9.152000pt;}
.ls58{letter-spacing:9.280000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls30{letter-spacing:12.262667pt;}
.ls3f{letter-spacing:12.263200pt;}
.ws34{word-spacing:-64.000000pt;}
.ws38{word-spacing:-63.872000pt;}
.ws36{word-spacing:-25.216000pt;}
.ws2{word-spacing:-22.506667pt;}
.ws54{word-spacing:-21.312000pt;}
.ws44{word-spacing:-21.216000pt;}
.ws57{word-spacing:-21.120000pt;}
.ws3d{word-spacing:-20.736000pt;}
.ws26{word-spacing:-20.688000pt;}
.ws67{word-spacing:-20.640000pt;}
.ws60{word-spacing:-20.544000pt;}
.ws2c{word-spacing:-20.448000pt;}
.ws6b{word-spacing:-20.016000pt;}
.ws49{word-spacing:-18.816000pt;}
.ws51{word-spacing:-18.560000pt;}
.wsf{word-spacing:-17.984000pt;}
.ws2d{word-spacing:-17.664000pt;}
.ws37{word-spacing:-17.651200pt;}
.ws1{word-spacing:-16.770667pt;}
.ws65{word-spacing:-16.448000pt;}
.ws64{word-spacing:-16.384000pt;}
.ws3e{word-spacing:-16.320000pt;}
.ws42{word-spacing:-16.256000pt;}
.ws5b{word-spacing:-16.192000pt;}
.ws55{word-spacing:-16.128000pt;}
.ws6a{word-spacing:-16.064000pt;}
.ws3f{word-spacing:-16.000000pt;}
.ws2b{word-spacing:-15.936000pt;}
.ws19{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws2a{word-spacing:-15.680000pt;}
.ws6c{word-spacing:-15.552000pt;}
.ws33{word-spacing:-15.488000pt;}
.ws2e{word-spacing:-15.424000pt;}
.ws31{word-spacing:-15.296000pt;}
.ws66{word-spacing:-15.232000pt;}
.ws6d{word-spacing:-15.168000pt;}
.ws77{word-spacing:-14.986667pt;}
.wse{word-spacing:-14.272000pt;}
.ws58{word-spacing:-13.036800pt;}
.ws52{word-spacing:-12.992000pt;}
.ws76{word-spacing:-12.906667pt;}
.ws47{word-spacing:-12.812800pt;}
.ws48{word-spacing:-12.768000pt;}
.ws5a{word-spacing:-12.678400pt;}
.ws43{word-spacing:-12.633600pt;}
.ws4{word-spacing:-12.588800pt;}
.ws69{word-spacing:-12.544000pt;}
.ws32{word-spacing:-12.409600pt;}
.ws35{word-spacing:-12.364800pt;}
.ws61{word-spacing:-12.320000pt;}
.ws56{word-spacing:-12.230400pt;}
.ws62{word-spacing:-11.989333pt;}
.ws72{word-spacing:-10.965333pt;}
.ws40{word-spacing:-10.538667pt;}
.ws75{word-spacing:-10.325333pt;}
.ws59{word-spacing:-10.154667pt;}
.ws4f{word-spacing:-8.512000pt;}
.wsc{word-spacing:-7.552000pt;}
.wsa{word-spacing:-7.520000pt;}
.ws5c{word-spacing:-7.360000pt;}
.ws1b{word-spacing:-6.560000pt;}
.ws9{word-spacing:-4.053333pt;}
.ws6f{word-spacing:-1.408000pt;}
.ws5d{word-spacing:-1.280000pt;}
.ws70{word-spacing:-1.216000pt;}
.ws5e{word-spacing:-1.152000pt;}
.ws23{word-spacing:-0.832000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.704000pt;}
.ws27{word-spacing:-0.640000pt;}
.ws39{word-spacing:-0.576000pt;}
.ws45{word-spacing:-0.512000pt;}
.ws14{word-spacing:-0.448000pt;}
.ws1e{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.256000pt;}
.ws1c{word-spacing:-0.192000pt;}
.ws21{word-spacing:-0.128000pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws17{word-spacing:0.064000pt;}
.wsb{word-spacing:0.128000pt;}
.ws28{word-spacing:0.192000pt;}
.ws73{word-spacing:0.213333pt;}
.ws24{word-spacing:0.256000pt;}
.ws8{word-spacing:0.266667pt;}
.ws12{word-spacing:0.320000pt;}
.ws11{word-spacing:0.384000pt;}
.ws50{word-spacing:0.426667pt;}
.ws30{word-spacing:0.448000pt;}
.ws2f{word-spacing:0.512000pt;}
.ws20{word-spacing:0.576000pt;}
.ws13{word-spacing:0.640000pt;}
.ws1f{word-spacing:0.704000pt;}
.ws3c{word-spacing:0.768000pt;}
.ws3b{word-spacing:0.832000pt;}
.ws6e{word-spacing:0.896000pt;}
.ws3a{word-spacing:0.960000pt;}
.ws7{word-spacing:1.280000pt;}
.ws6{word-spacing:1.600000pt;}
.ws74{word-spacing:1.664000pt;}
.ws29{word-spacing:2.133333pt;}
.ws71{word-spacing:2.496000pt;}
.ws25{word-spacing:2.624000pt;}
.ws46{word-spacing:2.688000pt;}
.ws41{word-spacing:2.880000pt;}
.ws4d{word-spacing:3.264000pt;}
.ws10{word-spacing:3.733333pt;}
.ws18{word-spacing:4.480000pt;}
.ws4b{word-spacing:5.376000pt;}
.ws68{word-spacing:5.760000pt;}
.ws53{word-spacing:6.400000pt;}
.ws4c{word-spacing:7.680000pt;}
.ws4a{word-spacing:8.960000pt;}
.ws4e{word-spacing:9.024000pt;}
.ws5f{word-spacing:11.008000pt;}
.ws63{word-spacing:13.120000pt;}
.ws0{word-spacing:129.952000pt;}
._c{margin-left:-843.396267pt;}
._13{margin-left:-15.808000pt;}
._11{margin-left:-13.792800pt;}
._10{margin-left:-12.884000pt;}
._15{margin-left:-11.154933pt;}
._14{margin-left:-9.134933pt;}
._12{margin-left:-7.611733pt;}
._d{margin-left:-6.310400pt;}
._8{margin-left:-5.141333pt;}
._4{margin-left:-3.381333pt;}
._b{margin-left:-2.350933pt;}
._5{margin-left:-1.386667pt;}
._2{width:1.545333pt;}
._1{width:2.485333pt;}
._0{width:3.818667pt;}
._6{width:5.060000pt;}
._e{width:6.055200pt;}
._3{width:7.424000pt;}
._9{width:8.401067pt;}
._f{width:9.541600pt;}
._7{width:11.194667pt;}
._16{width:12.263200pt;}
._17{width:13.153333pt;}
._a{width:28.129333pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y21{bottom:104.000000pt;}
.y299{bottom:105.810000pt;}
.y270{bottom:105.872000pt;}
.y204{bottom:106.490667pt;}
.y23a{bottom:107.189333pt;}
.y65{bottom:107.740000pt;}
.y20{bottom:117.333333pt;}
.y26f{bottom:119.066667pt;}
.y239{bottom:120.117333pt;}
.y112{bottom:121.073333pt;}
.y298{bottom:122.610000pt;}
.y16e{bottom:124.000000pt;}
.y203{bottom:127.562667pt;}
.y1f{bottom:130.666667pt;}
.y26e{bottom:132.272000pt;}
.y238{bottom:133.045333pt;}
.y1b8{bottom:134.406667pt;}
.y135{bottom:137.333333pt;}
.y297{bottom:139.410000pt;}
.y111{bottom:141.073333pt;}
.y77{bottom:141.795200pt;}
.y64{bottom:144.000000pt;}
.y26d{bottom:145.466667pt;}
.y237{bottom:145.973333pt;}
.y1e{bottom:147.740000pt;}
.y202{bottom:148.634667pt;}
.y16d{bottom:150.666667pt;}
.y134{bottom:154.406667pt;}
.y296{bottom:156.210000pt;}
.y97{bottom:157.333333pt;}
.y26c{bottom:158.661333pt;}
.y236{bottom:158.901333pt;}
.y14f{bottom:159.376000pt;}
.yb6{bottom:161.073333pt;}
.y76{bottom:161.795200pt;}
.y1d{bottom:164.000000pt;}
.y201{bottom:169.706667pt;}
.yf6{bottom:170.666667pt;}
.y235{bottom:171.829333pt;}
.y26b{bottom:171.856000pt;}
.y96{bottom:174.406667pt;}
.y1c{bottom:177.333333pt;}
.y14e{bottom:179.648000pt;}
.y42{bottom:181.073333pt;}
.y75{bottom:181.795200pt;}
.y295{bottom:183.143333pt;}
.y63{bottom:184.000000pt;}
.y234{bottom:184.757333pt;}
.y26a{bottom:185.050667pt;}
.yf5{bottom:187.740000pt;}
.y16c{bottom:190.666667pt;}
.y200{bottom:190.778667pt;}
.y133{bottom:192.848000pt;}
.y1b{bottom:194.406667pt;}
.y185{bottom:195.397333pt;}
.yb5{bottom:197.333333pt;}
.y233{bottom:197.696000pt;}
.y269{bottom:198.245333pt;}
.y14d{bottom:199.776000pt;}
.y110{bottom:201.073333pt;}
.y74{bottom:201.795200pt;}
.y62{bottom:204.000000pt;}
.yf4{bottom:207.740000pt;}
.y232{bottom:210.624000pt;}
.yb4{bottom:210.666667pt;}
.y1b7{bottom:210.736000pt;}
.y268{bottom:211.440000pt;}
.y1ff{bottom:211.850667pt;}
.y1e1{bottom:212.565333pt;}
.y132{bottom:212.576000pt;}
.y16f{bottom:214.406667pt;}
.y184{bottom:215.669333pt;}
.y1d8{bottom:216.544000pt;}
.y10f{bottom:217.333333pt;}
.y41{bottom:218.133333pt;}
.yd5{bottom:219.893333pt;}
.y14c{bottom:219.904000pt;}
.y294{bottom:220.076667pt;}
.y19a{bottom:221.073333pt;}
.y73{bottom:221.795200pt;}
.y231{bottom:223.552000pt;}
.y61{bottom:224.000000pt;}
.y267{bottom:224.634667pt;}
.yb3{bottom:227.740000pt;}
.y1b6{bottom:230.608000pt;}
.y10e{bottom:230.666667pt;}
.y95{bottom:231.728000pt;}
.y1e0{bottom:232.293333pt;}
.y131{bottom:232.304000pt;}
.y1fe{bottom:232.922667pt;}
.y183{bottom:235.941333pt;}
.y1a{bottom:235.958000pt;}
.y1d7{bottom:236.272000pt;}
.y230{bottom:236.480000pt;}
.y293{bottom:237.010000pt;}
.y199{bottom:237.333333pt;}
.y40{bottom:237.733333pt;}
.y266{bottom:237.829333pt;}
.yd4{bottom:240.021333pt;}
.y14b{bottom:240.032000pt;}
.y16b{bottom:241.073333pt;}
.y72{bottom:241.795200pt;}
.y60{bottom:244.000000pt;}
.yf3{bottom:245.440000pt;}
.yb2{bottom:247.740000pt;}
.y22f{bottom:249.408000pt;}
.y1b5{bottom:250.480000pt;}
.y265{bottom:251.024000pt;}
.y1df{bottom:252.021333pt;}
.y130{bottom:252.032000pt;}
.y94{bottom:252.400000pt;}
.y292{bottom:253.943333pt;}
.y1fd{bottom:253.994667pt;}
.y198{bottom:254.406667pt;}
.y19{bottom:255.958000pt;}
.y1d6{bottom:256.000000pt;}
.y182{bottom:256.213333pt;}
.y3f{bottom:257.333333pt;}
.yd3{bottom:260.149333pt;}
.y14a{bottom:260.160000pt;}
.y71{bottom:261.795200pt;}
.y22e{bottom:262.346667pt;}
.y5f{bottom:264.000000pt;}
.y264{bottom:264.218667pt;}
.yf2{bottom:265.312000pt;}
.yb1{bottom:267.740000pt;}
.y1b4{bottom:270.352000pt;}
.y16a{bottom:270.666667pt;}
.y291{bottom:270.876667pt;}
.y1de{bottom:271.749333pt;}
.y12f{bottom:271.760000pt;}
.y93{bottom:272.800000pt;}
.y197{bottom:274.406667pt;}
.y1fc{bottom:275.066667pt;}
.y22d{bottom:275.274667pt;}
.y1d5{bottom:275.600000pt;}
.y18{bottom:275.958000pt;}
.y181{bottom:276.485333pt;}
.y3e{bottom:276.933333pt;}
.y263{bottom:277.413333pt;}
.yd2{bottom:280.277333pt;}
.y149{bottom:280.288000pt;}
.y70{bottom:281.795200pt;}
.y5e{bottom:284.000000pt;}
.yf1{bottom:285.184000pt;}
.y169{bottom:287.740000pt;}
.y290{bottom:287.810000pt;}
.y10d{bottom:287.978667pt;}
.y22c{bottom:288.202667pt;}
.y1b3{bottom:290.224000pt;}
.y262{bottom:290.608000pt;}
.y196{bottom:290.666667pt;}
.y1dd{bottom:291.477333pt;}
.y12e{bottom:291.488000pt;}
.y92{bottom:293.200000pt;}
.y1d4{bottom:295.200000pt;}
.y17{bottom:295.958000pt;}
.y1fb{bottom:296.138667pt;}
.y3d{bottom:296.533333pt;}
.y180{bottom:296.757333pt;}
.yd1{bottom:300.405333pt;}
.y148{bottom:300.416000pt;}
.y22b{bottom:301.130667pt;}
.y6f{bottom:301.795200pt;}
.y261{bottom:303.802667pt;}
.y5d{bottom:304.000000pt;}
.y28f{bottom:304.743333pt;}
.yf0{bottom:305.056000pt;}
.yb0{bottom:306.634667pt;}
.y10c{bottom:307.578667pt;}
.y195{bottom:307.740000pt;}
.y1b2{bottom:310.096000pt;}
.y1dc{bottom:311.205333pt;}
.y12d{bottom:311.216000pt;}
.y91{bottom:313.600000pt;}
.y22a{bottom:314.058667pt;}
.y1d3{bottom:314.800000pt;}
.y16{bottom:315.958000pt;}
.y3c{bottom:316.133333pt;}
.y260{bottom:316.997333pt;}
.y17f{bottom:317.029333pt;}
.y1fa{bottom:317.210667pt;}
.yd0{bottom:320.533333pt;}
.y147{bottom:320.544000pt;}
.y168{bottom:321.073333pt;}
.y28e{bottom:321.676667pt;}
.y6e{bottom:321.795200pt;}
.y5c{bottom:324.000000pt;}
.yef{bottom:324.928000pt;}
.y229{bottom:326.997333pt;}
.yaf{bottom:327.306667pt;}
.y10b{bottom:327.450667pt;}
.y194{bottom:327.740000pt;}
.y1b1{bottom:329.968000pt;}
.y25f{bottom:330.192000pt;}
.y1db{bottom:330.933333pt;}
.y12c{bottom:330.944000pt;}
.y90{bottom:334.000000pt;}
.y1d2{bottom:334.400000pt;}
.y3b{bottom:335.733333pt;}
.y17e{bottom:337.301333pt;}
.y1f9{bottom:338.282667pt;}
.y28d{bottom:338.610000pt;}
.y228{bottom:339.925333pt;}
.y146{bottom:340.672000pt;}
.ycf{bottom:340.720000pt;}
.y167{bottom:341.073333pt;}
.y6d{bottom:341.795200pt;}
.y25e{bottom:343.386667pt;}
.y5b{bottom:344.000000pt;}
.yee{bottom:344.800000pt;}
.y10a{bottom:347.322667pt;}
.y193{bottom:347.740000pt;}
.yae{bottom:347.978667pt;}
.y1b0{bottom:349.840000pt;}
.y12b{bottom:350.672000pt;}
.y1da{bottom:350.688000pt;}
.y227{bottom:352.853333pt;}
.y1d1{bottom:354.000000pt;}
.y8f{bottom:354.400000pt;}
.y3a{bottom:355.333333pt;}
.y28c{bottom:355.543333pt;}
.y15{bottom:355.958000pt;}
.y25d{bottom:356.581333pt;}
.y17d{bottom:357.573333pt;}
.y1f8{bottom:359.354667pt;}
.y145{bottom:360.810667pt;}
.yce{bottom:360.848000pt;}
.y166{bottom:361.073333pt;}
.y5a{bottom:364.000000pt;}
.yed{bottom:364.666667pt;}
.y226{bottom:365.781333pt;}
.y109{bottom:367.194667pt;}
.yad{bottom:368.650667pt;}
.y1af{bottom:369.712000pt;}
.y25c{bottom:369.776000pt;}
.y12a{bottom:370.416000pt;}
.y28b{bottom:372.476667pt;}
.y1d0{bottom:373.600000pt;}
.y8e{bottom:374.800000pt;}
.y39{bottom:374.933333pt;}
.y17c{bottom:377.845333pt;}
.y225{bottom:378.709333pt;}
.y14{bottom:380.182800pt;}
.y1f7{bottom:380.426667pt;}
.y144{bottom:380.938667pt;}
.ycd{bottom:380.976000pt;}
.y165{bottom:381.073333pt;}
.y6c{bottom:381.795200pt;}
.y25b{bottom:382.970667pt;}
.y59{bottom:384.000000pt;}
.yec{bottom:384.666667pt;}
.y108{bottom:387.066667pt;}
.yac{bottom:389.322667pt;}
.y28a{bottom:389.410000pt;}
.y1ae{bottom:389.584000pt;}
.y129{bottom:390.144000pt;}
.y224{bottom:391.648000pt;}
.y1cf{bottom:393.200000pt;}
.y38{bottom:394.533333pt;}
.y8d{bottom:395.200000pt;}
.y25a{bottom:396.165333pt;}
.y13{bottom:396.849467pt;}
.y17b{bottom:398.117333pt;}
.y143{bottom:401.066667pt;}
.ycc{bottom:401.104000pt;}
.y1f6{bottom:401.498667pt;}
.y6b{bottom:401.795200pt;}
.y58{bottom:404.000000pt;}
.y223{bottom:404.576000pt;}
.yeb{bottom:404.666667pt;}
.y289{bottom:406.343333pt;}
.y107{bottom:406.906667pt;}
.y259{bottom:409.360000pt;}
.y1ad{bottom:409.456000pt;}
.y128{bottom:409.872000pt;}
.yab{bottom:409.994667pt;}
.y1ce{bottom:412.800000pt;}
.y12{bottom:413.516133pt;}
.y37{bottom:414.133333pt;}
.y8c{bottom:415.600000pt;}
.y222{bottom:417.504000pt;}
.y164{bottom:418.384000pt;}
.y17a{bottom:418.389333pt;}
.y192{bottom:418.666667pt;}
.y142{bottom:421.216000pt;}
.ycb{bottom:421.232000pt;}
.y6a{bottom:421.795200pt;}
.y258{bottom:422.554667pt;}
.y1f5{bottom:422.570667pt;}
.y288{bottom:423.276667pt;}
.y57{bottom:424.000000pt;}
.yea{bottom:424.666667pt;}
.y106{bottom:426.778667pt;}
.y1ac{bottom:429.328000pt;}
.y127{bottom:429.600000pt;}
.y11{bottom:430.182800pt;}
.y221{bottom:430.432000pt;}
.yaa{bottom:430.656000pt;}
.y1cd{bottom:432.400000pt;}
.y36{bottom:433.733333pt;}
.y257{bottom:435.749333pt;}
.y8b{bottom:436.000000pt;}
.y163{bottom:438.656000pt;}
.y179{bottom:438.661333pt;}
.y287{bottom:440.210000pt;}
.y141{bottom:441.344000pt;}
.yca{bottom:441.360000pt;}
.y69{bottom:441.795200pt;}
.y220{bottom:443.360000pt;}
.y1f4{bottom:443.642667pt;}
.y56{bottom:444.000000pt;}
.ye9{bottom:444.666667pt;}
.y105{bottom:446.650667pt;}
.y10{bottom:446.849467pt;}
.y256{bottom:448.944000pt;}
.y1ab{bottom:449.200000pt;}
.y126{bottom:449.381333pt;}
.ya9{bottom:451.328000pt;}
.y1cc{bottom:452.000000pt;}
.y35{bottom:453.333333pt;}
.y21f{bottom:456.298667pt;}
.y8a{bottom:456.400000pt;}
.y286{bottom:457.143333pt;}
.y162{bottom:458.928000pt;}
.y178{bottom:458.933333pt;}
.y140{bottom:461.472000pt;}
.yc9{bottom:461.488000pt;}
.y68{bottom:461.795200pt;}
.y255{bottom:462.138667pt;}
.yf{bottom:463.516133pt;}
.y55{bottom:464.000000pt;}
.ye8{bottom:464.666667pt;}
.y1f3{bottom:464.714667pt;}
.y104{bottom:466.522667pt;}
.y1aa{bottom:469.077333pt;}
.y125{bottom:469.109333pt;}
.y21e{bottom:469.226667pt;}
.y1cb{bottom:471.600000pt;}
.ya8{bottom:471.936000pt;}
.y34{bottom:472.933333pt;}
.y285{bottom:474.076667pt;}
.y254{bottom:475.333333pt;}
.y89{bottom:476.800000pt;}
.y161{bottom:479.168000pt;}
.y177{bottom:479.184000pt;}
.y191{bottom:479.194667pt;}
.y13f{bottom:481.600000pt;}
.yc8{bottom:481.616000pt;}
.y67{bottom:481.795200pt;}
.y21d{bottom:482.154667pt;}
.y54{bottom:484.000000pt;}
.ye7{bottom:484.666667pt;}
.y1f2{bottom:485.786667pt;}
.y103{bottom:486.394667pt;}
.ye{bottom:487.742800pt;}
.y253{bottom:488.528000pt;}
.y1a9{bottom:488.805333pt;}
.y124{bottom:488.837333pt;}
.y284{bottom:491.010000pt;}
.y1ca{bottom:491.200000pt;}
.y33{bottom:492.533333pt;}
.ya7{bottom:492.608000pt;}
.y21c{bottom:495.082667pt;}
.y88{bottom:497.200000pt;}
.y160{bottom:499.440000pt;}
.y190{bottom:499.450667pt;}
.y176{bottom:499.456000pt;}
.y252{bottom:501.722667pt;}
.y13e{bottom:501.733333pt;}
.yc7{bottom:501.744000pt;}
.y66{bottom:501.795200pt;}
.y53{bottom:504.000000pt;}
.ye6{bottom:504.666667pt;}
.y102{bottom:506.245333pt;}
.y1f1{bottom:506.858667pt;}
.y283{bottom:507.943333pt;}
.y21b{bottom:508.010667pt;}
.y123{bottom:508.565333pt;}
.y1a8{bottom:508.570667pt;}
.y1c9{bottom:510.800000pt;}
.y32{bottom:512.133333pt;}
.ya6{bottom:513.280000pt;}
.y251{bottom:514.917333pt;}
.y87{bottom:517.600000pt;}
.y15f{bottom:519.712000pt;}
.y18f{bottom:519.722667pt;}
.y175{bottom:519.728000pt;}
.y21a{bottom:520.938667pt;}
.yc6{bottom:521.872000pt;}
.y52{bottom:524.000000pt;}
.ye5{bottom:524.666667pt;}
.y282{bottom:524.876667pt;}
.y101{bottom:526.117333pt;}
.yd{bottom:527.742800pt;}
.y1f0{bottom:527.930667pt;}
.y250{bottom:528.122667pt;}
.y122{bottom:528.293333pt;}
.y1a7{bottom:528.298667pt;}
.y1c8{bottom:530.400000pt;}
.y31{bottom:531.733333pt;}
.y219{bottom:533.866667pt;}
.ya5{bottom:533.952000pt;}
.y86{bottom:538.000000pt;}
.y174{bottom:539.936000pt;}
.y15e{bottom:539.984000pt;}
.y18e{bottom:539.994667pt;}
.y24f{bottom:541.317333pt;}
.y281{bottom:541.810000pt;}
.yc5{bottom:542.016000pt;}
.y13d{bottom:542.074667pt;}
.y51{bottom:544.000000pt;}
.ye4{bottom:544.666667pt;}
.y100{bottom:545.989333pt;}
.y218{bottom:546.794667pt;}
.y121{bottom:548.021333pt;}
.y1a6{bottom:548.026667pt;}
.y1ef{bottom:549.002667pt;}
.y1c7{bottom:550.000000pt;}
.y30{bottom:551.333333pt;}
.yc{bottom:551.967600pt;}
.y24e{bottom:554.512000pt;}
.ya4{bottom:554.624000pt;}
.y85{bottom:558.400000pt;}
.y280{bottom:558.743333pt;}
.y217{bottom:559.733333pt;}
.y173{bottom:560.208000pt;}
.y15d{bottom:560.256000pt;}
.y18d{bottom:560.261333pt;}
.yc4{bottom:562.144000pt;}
.y13c{bottom:562.202667pt;}
.y50{bottom:564.000000pt;}
.ye3{bottom:564.666667pt;}
.yff{bottom:565.861333pt;}
.y24d{bottom:567.706667pt;}
.y120{bottom:567.749333pt;}
.y1a5{bottom:567.754667pt;}
.yb{bottom:568.634267pt;}
.y1c6{bottom:569.600000pt;}
.y1ee{bottom:570.074667pt;}
.y2f{bottom:570.933333pt;}
.y216{bottom:572.661333pt;}
.ya3{bottom:575.296000pt;}
.y27f{bottom:575.676667pt;}
.y84{bottom:578.800000pt;}
.y172{bottom:580.480000pt;}
.y18c{bottom:580.522667pt;}
.y15c{bottom:580.528000pt;}
.y24c{bottom:580.901333pt;}
.yc3{bottom:582.272000pt;}
.y13b{bottom:582.330667pt;}
.y4f{bottom:584.000000pt;}
.ye2{bottom:584.666667pt;}
.ya{bottom:585.300933pt;}
.y215{bottom:585.589333pt;}
.yfe{bottom:585.722667pt;}
.y11f{bottom:587.477333pt;}
.y1a4{bottom:587.482667pt;}
.y1c5{bottom:589.200000pt;}
.y2e{bottom:590.533333pt;}
.y1ed{bottom:591.146667pt;}
.y27e{bottom:592.610000pt;}
.y24b{bottom:594.106667pt;}
.ya2{bottom:595.968000pt;}
.y214{bottom:598.517333pt;}
.y83{bottom:599.200000pt;}
.y171{bottom:600.752000pt;}
.y18b{bottom:600.794667pt;}
.y15b{bottom:600.800000pt;}
.y9{bottom:601.967600pt;}
.yc2{bottom:602.421333pt;}
.y13a{bottom:602.458667pt;}
.y4e{bottom:604.000000pt;}
.ye1{bottom:604.666667pt;}
.yfd{bottom:605.594667pt;}
.y11e{bottom:607.205333pt;}
.y1a3{bottom:607.210667pt;}
.y24a{bottom:607.301333pt;}
.y1c4{bottom:608.800000pt;}
.y27d{bottom:609.543333pt;}
.y2d{bottom:610.133333pt;}
.y213{bottom:611.445333pt;}
.y1ec{bottom:612.218667pt;}
.ya1{bottom:616.640000pt;}
.y8{bottom:618.634267pt;}
.y82{bottom:619.600000pt;}
.y249{bottom:620.496000pt;}
.y170{bottom:621.024000pt;}
.y18a{bottom:621.050667pt;}
.y15a{bottom:621.061333pt;}
.yc1{bottom:622.549333pt;}
.y139{bottom:622.586667pt;}
.y4d{bottom:624.000000pt;}
.y212{bottom:624.384000pt;}
.ye0{bottom:624.666667pt;}
.yfc{bottom:625.450667pt;}
.y11d{bottom:626.933333pt;}
.y1a2{bottom:626.938667pt;}
.y1c3{bottom:628.400000pt;}
.y2c{bottom:629.733333pt;}
.y1eb{bottom:633.290667pt;}
.y248{bottom:633.690667pt;}
.y7{bottom:635.300933pt;}
.ya0{bottom:637.312000pt;}
.y27c{bottom:637.815200pt;}
.y81{bottom:640.000000pt;}
.y159{bottom:641.296000pt;}
.y189{bottom:641.322667pt;}
.yc0{bottom:642.677333pt;}
.y138{bottom:642.714667pt;}
.y4c{bottom:644.000000pt;}
.ydf{bottom:644.666667pt;}
.yfb{bottom:645.322667pt;}
.y1a1{bottom:646.666667pt;}
.y11c{bottom:646.682667pt;}
.y247{bottom:646.885333pt;}
.y1c2{bottom:648.000000pt;}
.y2b{bottom:649.333333pt;}
.y211{bottom:650.240000pt;}
.y1ea{bottom:654.362667pt;}
.y9f{bottom:657.984000pt;}
.y6{bottom:659.527600pt;}
.y246{bottom:660.090667pt;}
.y80{bottom:660.400000pt;}
.y158{bottom:661.568000pt;}
.y188{bottom:661.594667pt;}
.ybf{bottom:662.805333pt;}
.y137{bottom:662.842667pt;}
.y210{bottom:663.168000pt;}
.y4b{bottom:664.000000pt;}
.yde{bottom:664.666667pt;}
.yfa{bottom:665.194667pt;}
.y27b{bottom:665.317333pt;}
.y1d9{bottom:666.400000pt;}
.y11b{bottom:666.410667pt;}
.y1a0{bottom:666.426667pt;}
.y1c1{bottom:667.600000pt;}
.y2a{bottom:668.933333pt;}
.y245{bottom:673.285333pt;}
.y1e9{bottom:675.434667pt;}
.y20f{bottom:676.096000pt;}
.y9e{bottom:678.656000pt;}
.y7f{bottom:680.800000pt;}
.y157{bottom:681.840000pt;}
.y187{bottom:681.866667pt;}
.ybe{bottom:682.933333pt;}
.y136{bottom:682.970667pt;}
.y4a{bottom:684.000000pt;}
.ydd{bottom:684.645333pt;}
.yf9{bottom:685.029333pt;}
.y11a{bottom:686.138667pt;}
.y19f{bottom:686.154667pt;}
.y244{bottom:686.480000pt;}
.y1c0{bottom:687.200000pt;}
.y29{bottom:688.538667pt;}
.y20e{bottom:689.034667pt;}
.y1e8{bottom:696.506667pt;}
.y9d{bottom:699.328000pt;}
.y243{bottom:699.674667pt;}
.y5{bottom:700.314933pt;}
.y7e{bottom:701.200000pt;}
.y20d{bottom:701.962667pt;}
.y156{bottom:702.112000pt;}
.y186{bottom:702.128000pt;}
.ybd{bottom:703.098667pt;}
.y49{bottom:704.000000pt;}
.ydc{bottom:704.645333pt;}
.yf8{bottom:704.901333pt;}
.y19e{bottom:705.882667pt;}
.y119{bottom:705.898667pt;}
.y1bf{bottom:706.800000pt;}
.y28{bottom:708.138667pt;}
.y27a{bottom:709.360000pt;}
.y242{bottom:712.869333pt;}
.y20c{bottom:714.890667pt;}
.y1e7{bottom:717.578667pt;}
.y9c{bottom:719.989333pt;}
.y4{bottom:720.314933pt;}
.y7d{bottom:721.600000pt;}
.y155{bottom:722.384000pt;}
.y279{bottom:722.821333pt;}
.ybc{bottom:723.226667pt;}
.y48{bottom:724.000000pt;}
.ydb{bottom:724.645333pt;}
.yf7{bottom:724.773333pt;}
.y19d{bottom:725.610667pt;}
.y118{bottom:725.626667pt;}
.y241{bottom:726.074667pt;}
.y1be{bottom:726.400000pt;}
.y27{bottom:727.738667pt;}
.y20b{bottom:727.818667pt;}
.y278{bottom:736.293333pt;}
.y1e6{bottom:738.650667pt;}
.y240{bottom:739.269333pt;}
.y9b{bottom:740.661333pt;}
.y20a{bottom:740.746667pt;}
.y7c{bottom:742.000000pt;}
.y154{bottom:742.656000pt;}
.ybb{bottom:743.354667pt;}
.y47{bottom:744.000000pt;}
.yda{bottom:744.645333pt;}
.y19c{bottom:745.338667pt;}
.y117{bottom:745.354667pt;}
.y1bd{bottom:746.000000pt;}
.y26{bottom:747.338667pt;}
.y277{bottom:749.754667pt;}
.y23f{bottom:752.474667pt;}
.y209{bottom:753.685333pt;}
.y1e5{bottom:759.722667pt;}
.y9a{bottom:761.317333pt;}
.y7b{bottom:762.400000pt;}
.y153{bottom:762.928000pt;}
.y276{bottom:763.216000pt;}
.yba{bottom:763.482667pt;}
.y46{bottom:764.000000pt;}
.yd9{bottom:764.517333pt;}
.y19b{bottom:765.072000pt;}
.y116{bottom:765.082667pt;}
.y1bc{bottom:765.600000pt;}
.y23e{bottom:765.669333pt;}
.y208{bottom:766.613333pt;}
.y25{bottom:766.938667pt;}
.y275{bottom:776.677333pt;}
.y23d{bottom:778.864000pt;}
.y207{bottom:779.541333pt;}
.y3{bottom:780.000000pt;}
.y1e4{bottom:780.794667pt;}
.y99{bottom:781.989333pt;}
.y7a{bottom:782.800000pt;}
.y152{bottom:783.200000pt;}
.yb9{bottom:783.610667pt;}
.y45{bottom:784.000000pt;}
.yd8{bottom:784.389333pt;}
.y115{bottom:784.810667pt;}
.y1bb{bottom:785.200000pt;}
.y24{bottom:786.538667pt;}
.y274{bottom:790.138667pt;}
.y23c{bottom:792.069333pt;}
.y206{bottom:792.469333pt;}
.y1e3{bottom:801.866667pt;}
.y98{bottom:802.661333pt;}
.y79{bottom:803.200000pt;}
.y151{bottom:803.461333pt;}
.y273{bottom:803.610667pt;}
.yb8{bottom:803.738667pt;}
.y44{bottom:804.000000pt;}
.yd7{bottom:804.261333pt;}
.y114{bottom:804.538667pt;}
.y1ba{bottom:804.800000pt;}
.y23b{bottom:805.264000pt;}
.y205{bottom:805.397333pt;}
.y23{bottom:806.138667pt;}
.y272{bottom:817.072000pt;}
.y1e2{bottom:822.933333pt;}
.y2{bottom:823.333333pt;}
.y78{bottom:823.600000pt;}
.y150{bottom:823.733333pt;}
.yb7{bottom:823.866667pt;}
.y43{bottom:824.000000pt;}
.yd6{bottom:824.133333pt;}
.y113{bottom:824.266667pt;}
.y1b9{bottom:824.400000pt;}
.y22{bottom:825.066667pt;}
.y271{bottom:830.533333pt;}
.h7{height:21.894141pt;}
.hb{height:26.945443pt;}
.h1c{height:29.437500pt;}
.h1b{height:34.730667pt;}
.h2{height:34.957031pt;}
.h8{height:36.229167pt;}
.h6{height:36.796875pt;}
.h1d{height:40.757812pt;}
.hc{height:43.413333pt;}
.ha{height:44.156250pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.h5{height:54.343750pt;}
.h15{height:54.365083pt;}
.hf{height:54.386417pt;}
.hd{height:54.407750pt;}
.h11{height:54.429083pt;}
.h14{height:54.493083pt;}
.he{height:54.599750pt;}
.h1a{height:59.011292pt;}
.h12{height:59.032625pt;}
.h10{height:59.075292pt;}
.h9{height:59.160625pt;}
.h13{height:59.181958pt;}
.h19{height:59.203292pt;}
.h17{height:59.224625pt;}
.h16{height:59.288625pt;}
.h18{height:59.437958pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228400pt;}
.x2{left:86.456667pt;}
.x5{left:100.000000pt;}
.x6{left:113.221200pt;}
.x7{left:160.468400pt;}
.x4{left:556.250000pt;}
}




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