
    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_cf2342757e6a34c6cd973775.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.875000;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_8a62367172bb0d6a948cddb4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.826660;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_dea53d466b236ca116d6c668.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.846680;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_526c10a6a4b99f6acc3010ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.844238;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_6f1a1fa993931511be8c572d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.875000;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_b90e4bf271d986f833254b2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.826660;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_f85f0a718ebcda8a453d07e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004395;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_6b1899646d0d3a0afe459939.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_99893f71f18dce6683f48016.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_82b6654353fe3200adc8faca.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_6b2e5c04287d335ae17478f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.004395;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_b24935b76abdc0d297d76623.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_f88fbd56fabc1417776ed684.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;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_7f59e2b10412bc121bf69931.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_e969b2db185e17de157e490c.woff2')format("woff");}.fff{font-family:fff;line-height:1.022461;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_1c5035718e550908e1243a51.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.022461;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_1a6411bda45c94f42eb129f0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.790000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v3{vertical-align:48.240000px;}
.ls3d{letter-spacing:-1.008000px;}
.ls27{letter-spacing:-0.972000px;}
.ls44{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.792000px;}
.ls28{letter-spacing:-0.780000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.648000px;}
.ls38{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.432000px;}
.ls3a{letter-spacing:-0.379470px;}
.ls33{letter-spacing:-0.363000px;}
.ls2{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.297600px;}
.ls16{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.262466px;}
.ls2b{letter-spacing:-0.256200px;}
.ls24{letter-spacing:-0.249000px;}
.ls3b{letter-spacing:-0.227682px;}
.ls13{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.083400px;}
.ls2f{letter-spacing:-0.075894px;}
.ls1c{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.063600px;}
.ls21{letter-spacing:-0.060715px;}
.ls23{letter-spacing:-0.022320px;}
.ls8{letter-spacing:-0.000001px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.057600px;}
.ls30{letter-spacing:0.058320px;}
.ls1b{letter-spacing:0.072000px;}
.ls2d{letter-spacing:0.075894px;}
.lsd{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.151788px;}
.ls29{letter-spacing:0.211680px;}
.ls2a{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.220800px;}
.ls31{letter-spacing:0.234000px;}
.ls32{letter-spacing:0.240480px;}
.ls36{letter-spacing:0.240600px;}
.lse{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.291600px;}
.ls9{letter-spacing:0.303576px;}
.ls22{letter-spacing:0.330000px;}
.lsc{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.455363px;}
.ls1d{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.ls20{letter-spacing:0.607151px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.758939px;}
.lsb{letter-spacing:0.864000px;}
.ls39{letter-spacing:1.440000px;}
.ls47{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.880000px;}
.ls48{letter-spacing:3.600000px;}
.ls1f{letter-spacing:5.760000px;}
.ls17{letter-spacing:6.480000px;}
.ls40{letter-spacing:7.920000px;}
.ls12{letter-spacing:9.360000px;}
.ls2c{letter-spacing:11.520000px;}
.ls35{letter-spacing:18.000000px;}
.ls41{letter-spacing:20.880000px;}
.ls43{letter-spacing:25.200000px;}
.ls4a{letter-spacing:29.520000px;}
.ls46{letter-spacing:54.000000px;}
.ls3c{letter-spacing:67.680000px;}
.ls3e{letter-spacing:72.720000px;}
.ls42{letter-spacing:101.520000px;}
.ls3f{letter-spacing:118.080000px;}
.ls49{letter-spacing:136.080000px;}
.ls45{letter-spacing:136.260000px;}
.ls1{letter-spacing:846.156000px;}
.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;}
}
.ws2e{word-spacing:-72.000000px;}
.wsa{word-spacing:-19.584000px;}
.ws18{word-spacing:-19.580627px;}
.ws22{word-spacing:-19.049370px;}
.wsc{word-spacing:-18.973476px;}
.ws2b{word-spacing:-18.745795px;}
.wse{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.576000px;}
.ws21{word-spacing:-18.504000px;}
.ws13{word-spacing:-18.432000px;}
.ws8{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.288000px;}
.ws1e{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws1{word-spacing:-17.640000px;}
.ws2{word-spacing:-17.568000px;}
.wsb{word-spacing:-17.496000px;}
.ws20{word-spacing:-17.455598px;}
.ws2a{word-spacing:-17.424000px;}
.ws14{word-spacing:-17.352000px;}
.ws17{word-spacing:-17.280000px;}
.ws12{word-spacing:-17.208000px;}
.ws2d{word-spacing:-17.064000px;}
.ws2c{word-spacing:-16.992000px;}
.ws1f{word-spacing:-16.303800px;}
.ws23{word-spacing:-15.552000px;}
.ws6{word-spacing:-15.231600px;}
.ws28{word-spacing:-15.180600px;}
.ws25{word-spacing:-15.174000px;}
.ws4{word-spacing:-15.160800px;}
.ws27{word-spacing:-14.998320px;}
.ws29{word-spacing:-14.997600px;}
.ws5{word-spacing:-14.940000px;}
.ws26{word-spacing:-14.642400px;}
.ws24{word-spacing:-14.577000px;}
.ws19{word-spacing:-12.712229px;}
.ws1d{word-spacing:-12.390000px;}
.ws1a{word-spacing:-12.060000px;}
.ws1b{word-spacing:-12.037680px;}
.ws1c{word-spacing:-11.811000px;}
.ws0{word-spacing:0.000000px;}
._3b{margin-left:-18.373200px;}
._1c{margin-left:-16.368000px;}
._1b{margin-left:-15.216000px;}
._19{margin-left:-13.344000px;}
._1d{margin-left:-10.908000px;}
._1f{margin-left:-9.637200px;}
._1a{margin-left:-8.160000px;}
._1e{margin-left:-6.276000px;}
._1{margin-left:-5.089800px;}
._3{margin-left:-3.556800px;}
._23{margin-left:-2.536800px;}
._0{margin-left:-1.509600px;}
._4{width:1.547400px;}
._d{width:2.750400px;}
._12{width:3.965400px;}
._11{width:5.328000px;}
._5{width:6.552000px;}
._6{width:8.027400px;}
._e{width:9.108600px;}
._7{width:10.822800px;}
._16{width:11.845800px;}
._f{width:12.888000px;}
._10{width:14.503200px;}
._a{width:16.128000px;}
._2e{width:17.580600px;}
._15{width:19.299304px;}
._14{width:20.567248px;}
._24{width:21.909152px;}
._b{width:22.968000px;}
._c{width:24.024000px;}
._9{width:25.168200px;}
._8{width:26.352000px;}
._13{width:27.389400px;}
._17{width:29.232000px;}
._18{width:30.296400px;}
._22{width:31.885800px;}
._20{width:33.336000px;}
._21{width:34.486800px;}
._38{width:35.494138px;}
._25{width:36.580862px;}
._28{width:38.914738px;}
._2a{width:40.859280px;}
._34{width:44.332560px;}
._2f{width:50.798067px;}
._29{width:52.224480px;}
._27{width:54.813600px;}
._40{width:55.933808px;}
._4b{width:57.375792px;}
._37{width:66.633600px;}
._3e{width:68.256000px;}
._3f{width:71.188483px;}
._42{width:72.648000px;}
._44{width:76.197481px;}
._43{width:77.411783px;}
._33{width:79.692480px;}
._4f{width:83.376000px;}
._35{width:89.629920px;}
._32{width:96.721200px;}
._30{width:99.870960px;}
._46{width:100.944000px;}
._48{width:105.047861px;}
._47{width:106.629739px;}
._39{width:108.264000px;}
._2b{width:109.760160px;}
._2d{width:114.867702px;}
._45{width:118.224000px;}
._3d{width:119.376000px;}
._3c{width:124.845474px;}
._2c{width:132.868218px;}
._4d{width:134.100000px;}
._4a{width:137.160000px;}
._4c{width:140.555512px;}
._49{width:143.211799px;}
._3a{width:198.000000px;}
._36{width:215.536320px;}
._31{width:257.987520px;}
._41{width:412.200000px;}
._4e{width:872.208000px;}
._2{width:1401.847800px;}
._26{width:1908.456000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(152,153,155);}
.fsc{font-size:30.240000px;}
.fs6{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fsb{font-size:50.848916px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:60.000000px;}
.fse{font-size:62.991941px;}
.fs8{font-size:66.240000px;}
.fs9{font-size:69.822393px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:75.893905px;}
.fsd{font-size:77.760000px;}
.fs4{font-size:84.000000px;}
.fs0{font-size:87.733800px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:7.020000px;}
.ya4{bottom:7.380000px;}
.y90{bottom:9.180000px;}
.y116{bottom:11.520000px;}
.y11f{bottom:11.550000px;}
.y12f{bottom:11.880000px;}
.yc8{bottom:12.600000px;}
.ycd{bottom:12.645000px;}
.y8a{bottom:17.640000px;}
.y119{bottom:25.020000px;}
.y8f{bottom:30.780000px;}
.y9a{bottom:30.810000px;}
.y92{bottom:30.825000px;}
.ya2{bottom:35.280000px;}
.y115{bottom:38.520000px;}
.y131{bottom:38.700000px;}
.yc7{bottom:42.300000px;}
.y8{bottom:42.518550px;}
.y7{bottom:42.519300px;}
.y8e{bottom:52.380000px;}
.y99{bottom:52.410000px;}
.y10{bottom:55.980000px;}
.y114{bottom:65.520000px;}
.y128{bottom:65.565000px;}
.y9d{bottom:73.980000px;}
.y98{bottom:74.010000px;}
.yf{bottom:77.580000px;}
.y9c{bottom:95.580000px;}
.y97{bottom:95.610000px;}
.ya1{bottom:117.180000px;}
.y96{bottom:117.210000px;}
.y100{bottom:118.440000px;}
.y6f{bottom:120.240000px;}
.y164{bottom:121.500000px;}
.y3d{bottom:123.120000px;}
.yb3{bottom:123.300000px;}
.y40{bottom:123.660000px;}
.ye0{bottom:124.020000px;}
.y125{bottom:125.820000px;}
.y95{bottom:138.810000px;}
.ya0{bottom:138.825000px;}
.y112{bottom:140.400000px;}
.yf8{bottom:141.300000px;}
.y14a{bottom:142.740000px;}
.ydf{bottom:145.620000px;}
.yff{bottom:150.840000px;}
.y163{bottom:153.900000px;}
.y3c{bottom:155.520000px;}
.yae{bottom:155.700000px;}
.y3f{bottom:156.060000px;}
.y124{bottom:158.220000px;}
.y6e{bottom:160.020000px;}
.y94{bottom:160.410000px;}
.y9f{bottom:160.425000px;}
.yc5{bottom:165.780000px;}
.y89{bottom:167.040000px;}
.y111{bottom:172.800000px;}
.yf7{bottom:173.700000px;}
.y149{bottom:175.140000px;}
.yde{bottom:178.020000px;}
.yfe{bottom:182.700000px;}
.y162{bottom:186.300000px;}
.y9e{bottom:186.510000px;}
.y123{bottom:187.740000px;}
.y3b{bottom:187.920000px;}
.yad{bottom:188.100000px;}
.y57{bottom:188.460000px;}
.y86{bottom:189.900000px;}
.yc4{bottom:198.210000px;}
.y6d{bottom:200.010000px;}
.y110{bottom:204.690000px;}
.y12c{bottom:205.590000px;}
.yf6{bottom:206.130000px;}
.y148{bottom:207.570000px;}
.ydd{bottom:210.450000px;}
.yfd{bottom:214.410000px;}
.y161{bottom:218.730000px;}
.y3a{bottom:220.350000px;}
.yac{bottom:220.530000px;}
.y56{bottom:220.890000px;}
.y85{bottom:222.330000px;}
.yc3{bottom:230.790000px;}
.y12b{bottom:232.590000px;}
.y10f{bottom:237.090000px;}
.yf5{bottom:238.530000px;}
.y6c{bottom:239.970000px;}
.yfc{bottom:242.310000px;}
.ydc{bottom:242.850000px;}
.y160{bottom:251.130000px;}
.y39{bottom:252.750000px;}
.yab{bottom:252.930000px;}
.y55{bottom:253.290000px;}
.y88{bottom:253.650000px;}
.y84{bottom:254.730000px;}
.y12a{bottom:259.590000px;}
.yc2{bottom:263.190000px;}
.y10e{bottom:269.490000px;}
.yf4{bottom:271.470000px;}
.y147{bottom:272.370000px;}
.ydb{bottom:275.250000px;}
.y6b{bottom:279.930000px;}
.y15f{bottom:283.530000px;}
.y38{bottom:285.150000px;}
.yb2{bottom:285.330000px;}
.y54{bottom:285.690000px;}
.yaa{bottom:285.870000px;}
.y87{bottom:286.590000px;}
.y83{bottom:287.130000px;}
.yc1{bottom:295.590000px;}
.y10d{bottom:301.890000px;}
.yf3{bottom:303.330000px;}
.y146{bottom:304.770000px;}
.yda{bottom:307.650000px;}
.y15e{bottom:315.930000px;}
.y37{bottom:317.550000px;}
.ya9{bottom:317.730000px;}
.y53{bottom:318.090000px;}
.y82{bottom:319.530000px;}
.y6a{bottom:319.710000px;}
.yc0{bottom:327.990000px;}
.ye{bottom:332.275500px;}
.y10c{bottom:334.290000px;}
.yf2{bottom:335.730000px;}
.y145{bottom:337.170000px;}
.yd9{bottom:340.050000px;}
.y129{bottom:340.590000px;}
.y15d{bottom:348.330000px;}
.y36{bottom:350.130000px;}
.y52{bottom:350.670000px;}
.y81{bottom:351.930000px;}
.yd{bottom:357.475500px;}
.y9b{bottom:359.355000px;}
.y69{bottom:359.670000px;}
.ybf{bottom:360.390000px;}
.y7d{bottom:364.710000px;}
.y10b{bottom:366.690000px;}
.yf1{bottom:368.130000px;}
.y127{bottom:368.310000px;}
.y144{bottom:369.570000px;}
.yd8{bottom:372.450000px;}
.y15c{bottom:380.730000px;}
.y35{bottom:382.530000px;}
.yc{bottom:382.675500px;}
.y51{bottom:383.070000px;}
.y80{bottom:384.330000px;}
.ybe{bottom:392.790000px;}
.y10a{bottom:399.090000px;}
.y68{bottom:399.630000px;}
.yf0{bottom:400.530000px;}
.y143{bottom:401.970000px;}
.y7c{bottom:404.670000px;}
.yd7{bottom:404.850000px;}
.y15b{bottom:413.130000px;}
.y34{bottom:414.975000px;}
.y59{bottom:415.515000px;}
.y7f{bottom:416.775000px;}
.ybd{bottom:425.235000px;}
.y109{bottom:431.535000px;}
.yef{bottom:432.975000px;}
.y142{bottom:434.415000px;}
.y7b{bottom:437.115000px;}
.yd6{bottom:437.295000px;}
.y67{bottom:439.455000px;}
.y15a{bottom:445.575000px;}
.y33{bottom:447.375000px;}
.y58{bottom:447.915000px;}
.y126{bottom:450.255000px;}
.ybc{bottom:457.635000px;}
.yb{bottom:458.275500px;}
.y108{bottom:463.935000px;}
.yee{bottom:465.375000px;}
.y141{bottom:466.815000px;}
.y93{bottom:467.355000px;}
.yd5{bottom:469.695000px;}
.y7a{bottom:477.075000px;}
.y159{bottom:477.975000px;}
.y66{bottom:479.415000px;}
.y32{bottom:479.775000px;}
.ya{bottom:483.475500px;}
.ybb{bottom:490.035000px;}
.y23{bottom:490.215000px;}
.y107{bottom:496.335000px;}
.yed{bottom:497.775000px;}
.y140{bottom:499.215000px;}
.yd4{bottom:500.835000px;}
.yfb{bottom:503.715000px;}
.y158{bottom:510.375000px;}
.y31{bottom:512.175000px;}
.ya8{bottom:512.715000px;}
.y79{bottom:516.855000px;}
.y65{bottom:519.375000px;}
.yba{bottom:522.435000px;}
.y106{bottom:527.475000px;}
.y22{bottom:528.735000px;}
.yec{bottom:530.175000px;}
.y13f{bottom:531.615000px;}
.yd3{bottom:533.775000px;}
.yfa{bottom:535.215000px;}
.y157{bottom:542.775000px;}
.y30{bottom:544.575000px;}
.y122{bottom:549.975000px;}
.y9{bottom:552.808500px;}
.yb9{bottom:554.835000px;}
.y105{bottom:555.195000px;}
.y21{bottom:556.095000px;}
.y78{bottom:556.815000px;}
.y64{bottom:559.155000px;}
.yd2{bottom:561.855000px;}
.yeb{bottom:563.115000px;}
.y13e{bottom:564.555000px;}
.y20{bottom:574.095000px;}
.y156{bottom:575.175000px;}
.y2f{bottom:576.975000px;}
.y121{bottom:579.495000px;}
.y104{bottom:580.935000px;}
.yb8{bottom:587.235000px;}
.y1f{bottom:589.215000px;}
.y50{bottom:591.015000px;}
.yea{bottom:594.975000px;}
.y77{bottom:596.775000px;}
.y13d{bottom:597.135000px;}
.y63{bottom:599.115000px;}
.y120{bottom:606.495000px;}
.y155{bottom:607.575000px;}
.y2e{bottom:609.375000px;}
.y103{bottom:610.815000px;}
.yb7{bottom:619.635000px;}
.y4f{bottom:623.415000px;}
.y11e{bottom:624.135000px;}
.y13c{bottom:626.655000px;}
.ye9{bottom:627.375000px;}
.y1e{bottom:628.995000px;}
.y76{bottom:629.175000px;}
.y62{bottom:639.105000px;}
.y154{bottom:640.005000px;}
.y91{bottom:641.085000px;}
.y2d{bottom:641.805000px;}
.yb1{bottom:642.345000px;}
.y13b{bottom:644.325000px;}
.y1d{bottom:649.005000px;}
.y11d{bottom:651.165000px;}
.yb6{bottom:652.605000px;}
.y4e{bottom:655.305000px;}
.ye8{bottom:659.805000px;}
.y75{bottom:662.145000px;}
.y1c{bottom:671.145000px;}
.y153{bottom:672.405000px;}
.y2c{bottom:674.205000px;}
.y11c{bottom:678.165000px;}
.y61{bottom:679.065000px;}
.yb5{bottom:684.465000px;}
.y8d{bottom:686.490000px;}
.y4d{bottom:687.705000px;}
.ye7{bottom:692.205000px;}
.y74{bottom:694.005000px;}
.y13a{bottom:698.325000px;}
.y152{bottom:704.805000px;}
.y11b{bottom:705.165000px;}
.yd1{bottom:706.425000px;}
.y2b{bottom:706.605000px;}
.y101{bottom:707.145000px;}
.y60{bottom:718.845000px;}
.y4c{bottom:720.105000px;}
.y1b{bottom:721.005000px;}
.ye6{bottom:724.605000px;}
.y139{bottom:725.325000px;}
.y73{bottom:726.405000px;}
.y151{bottom:737.205000px;}
.y2a{bottom:739.005000px;}
.y12d{bottom:739.545000px;}
.y6{bottom:740.752500px;}
.y138{bottom:752.325000px;}
.y4b{bottom:752.505000px;}
.y1a{bottom:753.405000px;}
.ye5{bottom:757.185000px;}
.y5f{bottom:758.805000px;}
.y11a{bottom:759.165000px;}
.yd0{bottom:765.825000px;}
.y72{bottom:766.365000px;}
.y150{bottom:769.605000px;}
.y5{bottom:771.352500px;}
.y29{bottom:771.405000px;}
.y102{bottom:771.945000px;}
.y8c{bottom:772.350000px;}
.y137{bottom:779.325000px;}
.y4a{bottom:785.265000px;}
.y19{bottom:785.805000px;}
.y118{bottom:787.065000px;}
.ye4{bottom:789.585000px;}
.ycf{bottom:795.525000px;}
.y5e{bottom:798.765000px;}
.y4{bottom:801.952500px;}
.y14f{bottom:802.005000px;}
.y28{bottom:803.805000px;}
.y71{bottom:806.145000px;}
.y136{bottom:806.325000px;}
.ye3{bottom:810.825000px;}
.y49{bottom:816.225000px;}
.yce{bottom:825.225000px;}
.y18{bottom:827.205000px;}
.ye2{bottom:830.625000px;}
.y135{bottom:833.325000px;}
.y14e{bottom:834.585000px;}
.y27{bottom:836.205000px;}
.y5d{bottom:838.545000px;}
.y117{bottom:841.785000px;}
.y70{bottom:846.105000px;}
.y8b{bottom:846.360000px;}
.y48{bottom:847.365000px;}
.ye1{bottom:847.725000px;}
.ycc{bottom:854.925000px;}
.y134{bottom:860.370000px;}
.y3{bottom:863.152500px;}
.y14d{bottom:867.030000px;}
.y17{bottom:868.650000px;}
.y113{bottom:870.990000px;}
.y47{bottom:878.370000px;}
.y5c{bottom:878.550000px;}
.ycb{bottom:884.670000px;}
.y133{bottom:887.370000px;}
.y14c{bottom:900.330000px;}
.y16{bottom:901.050000px;}
.yf9{bottom:901.590000px;}
.y46{bottom:909.510000px;}
.y132{bottom:914.370000px;}
.y5b{bottom:918.510000px;}
.y14b{bottom:932.730000px;}
.y26{bottom:933.450000px;}
.y15{bottom:933.990000px;}
.y45{bottom:940.470000px;}
.y130{bottom:942.090000px;}
.yca{bottom:944.070000px;}
.y5a{bottom:958.290000px;}
.y25{bottom:965.850000px;}
.y14{bottom:966.390000px;}
.y44{bottom:971.610000px;}
.yc9{bottom:974.490000px;}
.y13{bottom:998.250000px;}
.ya7{bottom:998.430000px;}
.yb0{bottom:998.970000px;}
.y43{bottom:1002.570000px;}
.yc6{bottom:1006.530000px;}
.y12e{bottom:1027.770000px;}
.y24{bottom:1030.650000px;}
.yaf{bottom:1030.830000px;}
.y12{bottom:1031.190000px;}
.ya6{bottom:1031.370000px;}
.y42{bottom:1033.710000px;}
.y3e{bottom:1063.050000px;}
.ya5{bottom:1063.230000px;}
.y11{bottom:1063.590000px;}
.yb4{bottom:1063.770000px;}
.y41{bottom:1064.670000px;}
.y2{bottom:1067.317633px;}
.y1{bottom:1092.409500px;}
.y7e{bottom:1116.360000px;}
.h32{height:27.000000px;}
.h30{height:27.036000px;}
.h27{height:29.700000px;}
.h29{height:29.736000px;}
.h18{height:34.776000px;}
.h1d{height:40.608281px;}
.h6{height:40.781250px;}
.hb{height:40.986328px;}
.h1e{height:42.804459px;}
.h20{height:43.236000px;}
.h1f{height:43.450002px;}
.h11{height:47.309062px;}
.h7{height:48.972656px;}
.h13{height:50.305781px;}
.h12{height:51.064453px;}
.h2f{height:53.026419px;}
.h33{height:53.985000px;}
.h31{height:54.000000px;}
.h35{height:54.036000px;}
.h36{height:54.180000px;}
.h1a{height:55.760625px;}
.h2b{height:56.601562px;}
.ha{height:57.134766px;}
.h9{height:57.380859px;}
.h3{height:58.474920px;}
.h19{height:58.776272px;}
.h26{height:59.385000px;}
.h28{height:59.400000px;}
.h2{height:59.674406px;}
.hd{height:60.609375px;}
.he{height:61.523438px;}
.h2c{height:62.648438px;}
.h15{height:63.887252px;}
.h1c{height:64.800000px;}
.hf{height:64.850749px;}
.h25{height:65.458125px;}
.h16{height:65.884219px;}
.h4{height:69.328125px;}
.h5{height:69.377930px;}
.h8{height:69.676758px;}
.h2a{height:71.613281px;}
.h17{height:74.004654px;}
.h14{height:74.953125px;}
.h10{height:75.093750px;}
.h2e{height:81.000000px;}
.h34{height:81.036000px;}
.h22{height:108.000000px;}
.h2d{height:110.888438px;}
.h23{height:151.230000px;}
.h21{height:172.830000px;}
.h24{height:744.270000px;}
.h1b{height:918.000000px;}
.hc{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w17{width:14.400000px;}
.w24{width:16.020000px;}
.w22{width:16.380000px;}
.w15{width:16.560000px;}
.w27{width:29.880000px;}
.w29{width:32.040000px;}
.w2e{width:33.840000px;}
.w1e{width:73.296000px;}
.w1b{width:73.440000px;}
.w1a{width:73.476000px;}
.w18{width:74.520000px;}
.w1d{width:75.600000px;}
.w23{width:76.320000px;}
.w2c{width:76.500000px;}
.w2b{width:76.536000px;}
.w1c{width:78.516000px;}
.w21{width:79.236000px;}
.w20{width:81.036000px;}
.w1f{width:84.240000px;}
.w14{width:88.020000px;}
.w2d{width:97.776000px;}
.w26{width:99.360000px;}
.wa{width:102.060000px;}
.wb{width:102.096000px;}
.w38{width:103.896000px;}
.w3b{width:108.900000px;}
.w3a{width:108.936000px;}
.w30{width:109.440000px;}
.w3c{width:109.836000px;}
.w37{width:110.916000px;}
.w35{width:111.276000px;}
.w36{width:111.960000px;}
.w39{width:112.896000px;}
.w34{width:115.416000px;}
.w33{width:119.916000px;}
.wd{width:131.760000px;}
.wc{width:131.976000px;}
.w32{width:213.870000px;}
.w12{width:220.215000px;}
.w11{width:220.350000px;}
.w10{width:221.610000px;}
.w16{width:225.255000px;}
.w31{width:226.695000px;}
.w19{width:237.495000px;}
.w2a{width:244.515000px;}
.w28{width:253.515000px;}
.w13{width:622.545000px;}
.wf{width:662.190000px;}
.w2f{width:669.930000px;}
.w6{width:705.570000px;}
.w25{width:760.830000px;}
.w2{width:892.920000px;}
.w3{width:893.250000px;}
.w9{width:914.550000px;}
.w5{width:917.999986px;}
.w4{width:918.000000px;}
.we{width:1026.180000px;}
.w8{width:1187.999982px;}
.w7{width:1188.000000px;}
.w1{width:1870.500000px;}
.w0{width:1870.860000px;}
.x0{left:0.000000px;}
.x65{left:8.100000px;}
.xde{left:9.360000px;}
.x7c{left:11.340000px;}
.x6f{left:13.140000px;}
.xe0{left:14.580000px;}
.x82{left:15.660000px;}
.xe1{left:17.640000px;}
.x71{left:18.900000px;}
.xbc{left:19.980000px;}
.x6b{left:21.645000px;}
.xf9{left:22.860000px;}
.x72{left:24.480000px;}
.x6e{left:26.460000px;}
.x6c{left:28.305000px;}
.xe2{left:29.520000px;}
.xbe{left:31.320000px;}
.x69{left:32.760000px;}
.x67{left:34.554000px;}
.xdf{left:36.000000px;}
.x7a{left:37.980000px;}
.xea{left:39.774000px;}
.xf4{left:41.394000px;}
.xeb{left:42.654000px;}
.xf6{left:43.920000px;}
.xf5{left:46.125000px;}
.xfc{left:47.205000px;}
.xbf{left:48.960000px;}
.x75{left:50.265000px;}
.xfb{left:52.785000px;}
.x7f{left:55.620000px;}
.x61{left:57.954000px;}
.xf3{left:59.940000px;}
.xbd{left:64.074000px;}
.xb4{left:66.420000px;}
.xf2{left:68.400000px;}
.x78{left:71.460000px;}
.xb9{left:72.534000px;}
.xbb{left:76.134000px;}
.x7e{left:77.760000px;}
.xb6{left:79.740000px;}
.xc0{left:81.225000px;}
.xb7{left:82.305000px;}
.xb8{left:83.334000px;}
.x81{left:85.854000px;}
.x80{left:88.374000px;}
.x7b{left:92.700000px;}
.x79{left:93.960000px;}
.xba{left:102.090000px;}
.x62{left:106.379982px;}
.x83{left:108.540000px;}
.x14{left:111.455986px;}
.xa{left:113.075986px;}
.x7d{left:117.540000px;}
.x64{left:119.376000px;}
.x8{left:127.655986px;}
.x92{left:132.335986px;}
.x16{left:136.115986px;}
.x38{left:138.995986px;}
.xb{left:140.975986px;}
.x21{left:144.215986px;}
.xfd{left:148.175986px;}
.xe3{left:154.469986px;}
.x41{left:157.169986px;}
.x22{left:160.589986px;}
.xb2{left:162.389986px;}
.x4a{left:164.189986px;}
.xc1{left:165.269986px;}
.x4b{left:169.589986px;}
.x103{left:172.829986px;}
.x9f{left:174.809986px;}
.x10{left:181.649986px;}
.xa3{left:185.249986px;}
.x2e{left:189.029986px;}
.x10c{left:190.469986px;}
.xaf{left:192.449986px;}
.x1d{left:194.969986px;}
.x5b{left:196.409986px;}
.xa0{left:201.989986px;}
.xec{left:207.389986px;}
.x13c{left:210.989986px;}
.x26{left:213.329986px;}
.xd9{left:215.670000px;}
.x3e{left:216.749986px;}
.x109{left:219.449986px;}
.x68{left:221.430000px;}
.x86{left:223.949986px;}
.xd{left:226.649986px;}
.xfe{left:227.729986px;}
.x84{left:230.609986px;}
.xda{left:232.230000px;}
.xb0{left:233.669986px;}
.x60{left:235.649986px;}
.x9d{left:237.809986px;}
.xc8{left:242.489986px;}
.x115{left:243.929986px;}
.x4d{left:245.369986px;}
.x1b{left:246.629986px;}
.x12d{left:248.789986px;}
.x87{left:252.029986px;}
.xff{left:255.449986px;}
.x8c{left:257.069986px;}
.x85{left:259.769986px;}
.x4e{left:262.514986px;}
.x5c{left:264.314986px;}
.x9e{left:266.114986px;}
.x108{left:268.454986px;}
.x11d{left:270.974986px;}
.xaa{left:272.234986px;}
.xee{left:274.394986px;}
.x13d{left:276.014986px;}
.x3f{left:277.634986px;}
.x11{left:284.294986px;}
.x96{left:288.614986px;}
.x50{left:293.654986px;}
.x98{left:294.734986px;}
.x111{left:296.174986px;}
.xe4{left:297.974986px;}
.x35{left:301.754986px;}
.x40{left:305.354986px;}
.x46{left:306.614986px;}
.x39{left:308.954986px;}
.x4f{left:310.214986px;}
.x128{left:311.654986px;}
.x13{left:315.434986px;}
.xc3{left:318.314986px;}
.x116{left:322.274986px;}
.x6a{left:323.490000px;}
.x5d{left:327.674986px;}
.x9{left:328.754986px;}
.x8d{left:330.194986px;}
.xd1{left:332.534986px;}
.x6{left:334.750500px;}
.x36{left:337.394986px;}
.x113{left:339.194986px;}
.x49{left:343.514986px;}
.x134{left:344.954986px;}
.xc4{left:346.034986px;}
.xa6{left:347.474986px;}
.xb3{left:349.275000px;}
.x126{left:351.074986px;}
.x31{left:352.514986px;}
.x42{left:356.114986px;}
.x8e{left:358.094986px;}
.x12b{left:360.254986px;}
.xd5{left:364.394986px;}
.x19{left:366.554986px;}
.x100{left:367.814986px;}
.xd2{left:370.514986px;}
.x13f{left:373.034986px;}
.x27{left:374.294986px;}
.x12c{left:375.374986px;}
.x2a{left:377.354986px;}
.xdc{left:378.975000px;}
.x32{left:380.594986px;}
.x43{left:384.554986px;}
.x10d{left:386.174986px;}
.x101{left:387.614986px;}
.xc6{left:389.054986px;}
.x5e{left:391.034986px;}
.x1a{left:392.834986px;}
.xa4{left:394.634986px;}
.xf{left:397.874986px;}
.x24{left:399.314986px;}
.x12f{left:400.934986px;}
.x28{left:402.194986px;}
.x131{left:407.594986px;}
.x2b{left:408.674986px;}
.xe8{left:409.935000px;}
.x5f{left:411.194986px;}
.x93{left:414.794986px;}
.x102{left:415.874986px;}
.x124{left:418.034986px;}
.x15{left:419.114986px;}
.x23{left:420.734986px;}
.xa5{left:422.534986px;}
.x17{left:424.334986px;}
.x6d{left:425.595000px;}
.xce{left:428.474986px;}
.x18{left:432.254986px;}
.x56{left:434.234986px;}
.x104{left:446.684986px;}
.x1f{left:448.844986px;}
.x1c{left:450.824986px;}
.xe{left:452.984986px;}
.x7{left:454.964986px;}
.xf0{left:456.224986px;}
.xc{left:459.104986px;}
.x140{left:460.904986px;}
.x20{left:462.884986px;}
.x117{left:466.124986px;}
.x47{left:472.784986px;}
.x137{left:475.304986px;}
.x99{left:476.564986px;}
.xc5{left:478.184986px;}
.xa7{left:479.444986px;}
.x118{left:480.524986px;}
.x52{left:481.784986px;}
.xc9{left:484.124986px;}
.x1e{left:486.104986px;}
.x57{left:487.544986px;}
.xad{left:491.144986px;}
.x11f{left:493.484986px;}
.x3a{left:496.364986px;}
.x97{left:497.804986px;}
.x13b{left:499.424986px;}
.xa9{left:503.744986px;}
.x9a{left:504.824986px;}
.x58{left:507.164986px;}
.x48{left:509.504986px;}
.x8f{left:512.024986px;}
.x4c{left:513.104986px;}
.x25{left:516.344986px;}
.xe5{left:519.224986px;}
.xcf{left:525.524986px;}
.x88{left:526.604986px;}
.x70{left:527.655000px;}
.xed{left:529.664986px;}
.x127{left:532.544986px;}
.x91{left:534.164986px;}
.x53{left:535.424986px;}
.xa1{left:536.684986px;}
.xcb{left:538.664986px;}
.x90{left:539.924986px;}
.xe7{left:542.445000px;}
.xf1{left:544.074000px;}
.x133{left:548.564986px;}
.xdd{left:551.985000px;}
.xdb{left:553.065000px;}
.x89{left:554.684986px;}
.x136{left:556.124986px;}
.x107{left:557.204986px;}
.xd6{left:559.184986px;}
.x3b{left:562.604986px;}
.x13e{left:564.224986px;}
.xfa{left:567.825000px;}
.xb5{left:569.625000px;}
.xca{left:570.884986px;}
.xf7{left:575.745000px;}
.x141{left:577.184986px;}
.x10e{left:580.964986px;}
.x63{left:585.104982px;}
.x105{left:588.524986px;}
.xa8{left:590.684986px;}
.x2f{left:592.664986px;}
.x139{left:593.924986px;}
.x132{left:600.584986px;}
.x119{left:608.009986px;}
.xc2{left:609.089986px;}
.x33{left:618.449986px;}
.x30{left:621.689986px;}
.x121{left:622.949986px;}
.xcd{left:625.289986px;}
.xd0{left:626.729986px;}
.x10a{left:627.809986px;}
.x73{left:629.745000px;}
.xb1{left:633.209986px;}
.x11e{left:635.549986px;}
.x12{left:638.429986px;}
.xe6{left:640.229986px;}
.x9b{left:642.029986px;}
.x34{left:645.809986px;}
.x11b{left:648.689986px;}
.xa2{left:653.009986px;}
.x142{left:655.709986px;}
.x114{left:658.049986px;}
.x29{left:660.389986px;}
.x135{left:664.529986px;}
.x3c{left:666.329986px;}
.xae{left:667.589986px;}
.xab{left:669.389986px;}
.x10b{left:671.369986px;}
.x9c{left:672.809986px;}
.x11c{left:674.789986px;}
.xd3{left:677.849986px;}
.x94{left:682.169986px;}
.xd4{left:683.789986px;}
.xf8{left:686.670000px;}
.xe9{left:694.590000px;}
.x3d{left:696.929986px;}
.x123{left:698.549986px;}
.x11a{left:702.149986px;}
.x12e{left:703.949986px;}
.x59{left:705.029986px;}
.x44{left:707.009986px;}
.x8a{left:708.809986px;}
.xd7{left:710.609986px;}
.x130{left:712.949986px;}
.x66{left:714.714000px;}
.x122{left:716.189986px;}
.x12a{left:719.069986px;}
.x110{left:724.289986px;}
.x129{left:725.729986px;}
.xcc{left:730.229986px;}
.x74{left:731.805000px;}
.x45{left:734.009986px;}
.x8b{left:737.069986px;}
.x54{left:738.329986px;}
.x106{left:742.289986px;}
.x13a{left:744.809986px;}
.x138{left:746.429986px;}
.x112{left:747.689986px;}
.xef{left:749.849986px;}
.x120{left:751.469986px;}
.xc7{left:752.549986px;}
.x2c{left:753.629986px;}
.xac{left:754.889986px;}
.x10f{left:756.149986px;}
.x5a{left:757.589986px;}
.x95{left:766.229986px;}
.xd8{left:767.849986px;}
.x125{left:769.469986px;}
.x37{left:778.649986px;}
.x2d{left:781.919986px;}
.x55{left:786.239986px;}
.x51{left:790.559986px;}
.x76{left:863.610000px;}
.x3{left:920.883000px;}
.x2{left:939.805500px;}
.x4{left:942.483000px;}
.x5{left:964.083000px;}
.x77{left:995.580000px;}
.x1{left:1313.851500px;}
@media print{
.v1{vertical-align:-10.480000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v3{vertical-align:42.880000pt;}
.ls3d{letter-spacing:-0.896000pt;}
.ls27{letter-spacing:-0.864000pt;}
.ls44{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls28{letter-spacing:-0.693333pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls38{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls3a{letter-spacing:-0.337306pt;}
.ls33{letter-spacing:-0.322667pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.264533pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.233303pt;}
.ls2b{letter-spacing:-0.227733pt;}
.ls24{letter-spacing:-0.221333pt;}
.ls3b{letter-spacing:-0.202384pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.074133pt;}
.ls2f{letter-spacing:-0.067461pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.056533pt;}
.ls21{letter-spacing:-0.053969pt;}
.ls23{letter-spacing:-0.019840pt;}
.ls8{letter-spacing:-0.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.051200pt;}
.ls30{letter-spacing:0.051840pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls2d{letter-spacing:0.067461pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.134922pt;}
.ls29{letter-spacing:0.188160pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.196267pt;}
.ls31{letter-spacing:0.208000pt;}
.ls32{letter-spacing:0.213760pt;}
.ls36{letter-spacing:0.213867pt;}
.lse{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.259200pt;}
.ls9{letter-spacing:0.269845pt;}
.ls22{letter-spacing:0.293333pt;}
.lsc{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.404767pt;}
.ls1d{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls20{letter-spacing:0.539690pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.674612pt;}
.lsb{letter-spacing:0.768000pt;}
.ls39{letter-spacing:1.280000pt;}
.ls47{letter-spacing:1.920000pt;}
.ls14{letter-spacing:2.560000pt;}
.ls48{letter-spacing:3.200000pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls17{letter-spacing:5.760000pt;}
.ls40{letter-spacing:7.040000pt;}
.ls12{letter-spacing:8.320000pt;}
.ls2c{letter-spacing:10.240000pt;}
.ls35{letter-spacing:16.000000pt;}
.ls41{letter-spacing:18.560000pt;}
.ls43{letter-spacing:22.400000pt;}
.ls4a{letter-spacing:26.240000pt;}
.ls46{letter-spacing:48.000000pt;}
.ls3c{letter-spacing:60.160000pt;}
.ls3e{letter-spacing:64.640000pt;}
.ls42{letter-spacing:90.240000pt;}
.ls3f{letter-spacing:104.960000pt;}
.ls49{letter-spacing:120.960000pt;}
.ls45{letter-spacing:121.120000pt;}
.ls1{letter-spacing:752.138667pt;}
.ws2e{word-spacing:-64.000000pt;}
.wsa{word-spacing:-17.408000pt;}
.ws18{word-spacing:-17.405002pt;}
.ws22{word-spacing:-16.932773pt;}
.wsc{word-spacing:-16.865312pt;}
.ws2b{word-spacing:-16.662928pt;}
.wse{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.512000pt;}
.ws21{word-spacing:-16.448000pt;}
.ws13{word-spacing:-16.384000pt;}
.ws8{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws1e{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws1{word-spacing:-15.680000pt;}
.ws2{word-spacing:-15.616000pt;}
.wsb{word-spacing:-15.552000pt;}
.ws20{word-spacing:-15.516087pt;}
.ws2a{word-spacing:-15.488000pt;}
.ws14{word-spacing:-15.424000pt;}
.ws17{word-spacing:-15.360000pt;}
.ws12{word-spacing:-15.296000pt;}
.ws2d{word-spacing:-15.168000pt;}
.ws2c{word-spacing:-15.104000pt;}
.ws1f{word-spacing:-14.492267pt;}
.ws23{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.539200pt;}
.ws28{word-spacing:-13.493867pt;}
.ws25{word-spacing:-13.488000pt;}
.ws4{word-spacing:-13.476267pt;}
.ws27{word-spacing:-13.331840pt;}
.ws29{word-spacing:-13.331200pt;}
.ws5{word-spacing:-13.280000pt;}
.ws26{word-spacing:-13.015467pt;}
.ws24{word-spacing:-12.957333pt;}
.ws19{word-spacing:-11.299759pt;}
.ws1d{word-spacing:-11.013333pt;}
.ws1a{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-10.700160pt;}
.ws1c{word-spacing:-10.498667pt;}
.ws0{word-spacing:0.000000pt;}
._3b{margin-left:-16.331733pt;}
._1c{margin-left:-14.549333pt;}
._1b{margin-left:-13.525333pt;}
._19{margin-left:-11.861333pt;}
._1d{margin-left:-9.696000pt;}
._1f{margin-left:-8.566400pt;}
._1a{margin-left:-7.253333pt;}
._1e{margin-left:-5.578667pt;}
._1{margin-left:-4.524267pt;}
._3{margin-left:-3.161600pt;}
._23{margin-left:-2.254933pt;}
._0{margin-left:-1.341867pt;}
._4{width:1.375467pt;}
._d{width:2.444800pt;}
._12{width:3.524800pt;}
._11{width:4.736000pt;}
._5{width:5.824000pt;}
._6{width:7.135467pt;}
._e{width:8.096533pt;}
._7{width:9.620267pt;}
._16{width:10.529600pt;}
._f{width:11.456000pt;}
._10{width:12.891733pt;}
._a{width:14.336000pt;}
._2e{width:15.627200pt;}
._15{width:17.154936pt;}
._14{width:18.281998pt;}
._24{width:19.474802pt;}
._b{width:20.416000pt;}
._c{width:21.354667pt;}
._9{width:22.371733pt;}
._8{width:23.424000pt;}
._13{width:24.346133pt;}
._17{width:25.984000pt;}
._18{width:26.930133pt;}
._22{width:28.342933pt;}
._20{width:29.632000pt;}
._21{width:30.654933pt;}
._38{width:31.550345pt;}
._25{width:32.516322pt;}
._28{width:34.590878pt;}
._2a{width:36.319360pt;}
._34{width:39.406720pt;}
._2f{width:45.153838pt;}
._29{width:46.421760pt;}
._27{width:48.723200pt;}
._40{width:49.718940pt;}
._4b{width:51.000704pt;}
._37{width:59.229867pt;}
._3e{width:60.672000pt;}
._3f{width:63.278651pt;}
._42{width:64.576000pt;}
._44{width:67.731094pt;}
._43{width:68.810474pt;}
._33{width:70.837760pt;}
._4f{width:74.112000pt;}
._35{width:79.671040pt;}
._32{width:85.974400pt;}
._30{width:88.774187pt;}
._46{width:89.728000pt;}
._48{width:93.375877pt;}
._47{width:94.781990pt;}
._39{width:96.234667pt;}
._2b{width:97.564587pt;}
._2d{width:102.104624pt;}
._45{width:105.088000pt;}
._3d{width:106.112000pt;}
._3c{width:110.973754pt;}
._2c{width:118.105083pt;}
._4d{width:119.200000pt;}
._4a{width:121.920000pt;}
._4c{width:124.938233pt;}
._49{width:127.299377pt;}
._3a{width:176.000000pt;}
._36{width:191.587840pt;}
._31{width:229.322240pt;}
._41{width:366.400000pt;}
._4e{width:775.296000pt;}
._2{width:1246.086933pt;}
._26{width:1696.405333pt;}
.fsc{font-size:26.880000pt;}
.fs6{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fsb{font-size:45.199037pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:53.333333pt;}
.fse{font-size:55.992837pt;}
.fs8{font-size:58.880000pt;}
.fs9{font-size:62.064349pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:67.461249pt;}
.fsd{font-size:69.120000pt;}
.fs4{font-size:74.666667pt;}
.fs0{font-size:77.985600pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:6.240000pt;}
.ya4{bottom:6.560000pt;}
.y90{bottom:8.160000pt;}
.y116{bottom:10.240000pt;}
.y11f{bottom:10.266667pt;}
.y12f{bottom:10.560000pt;}
.yc8{bottom:11.200000pt;}
.ycd{bottom:11.240000pt;}
.y8a{bottom:15.680000pt;}
.y119{bottom:22.240000pt;}
.y8f{bottom:27.360000pt;}
.y9a{bottom:27.386667pt;}
.y92{bottom:27.400000pt;}
.ya2{bottom:31.360000pt;}
.y115{bottom:34.240000pt;}
.y131{bottom:34.400000pt;}
.yc7{bottom:37.600000pt;}
.y8{bottom:37.794267pt;}
.y7{bottom:37.794933pt;}
.y8e{bottom:46.560000pt;}
.y99{bottom:46.586667pt;}
.y10{bottom:49.760000pt;}
.y114{bottom:58.240000pt;}
.y128{bottom:58.280000pt;}
.y9d{bottom:65.760000pt;}
.y98{bottom:65.786667pt;}
.yf{bottom:68.960000pt;}
.y9c{bottom:84.960000pt;}
.y97{bottom:84.986667pt;}
.ya1{bottom:104.160000pt;}
.y96{bottom:104.186667pt;}
.y100{bottom:105.280000pt;}
.y6f{bottom:106.880000pt;}
.y164{bottom:108.000000pt;}
.y3d{bottom:109.440000pt;}
.yb3{bottom:109.600000pt;}
.y40{bottom:109.920000pt;}
.ye0{bottom:110.240000pt;}
.y125{bottom:111.840000pt;}
.y95{bottom:123.386667pt;}
.ya0{bottom:123.400000pt;}
.y112{bottom:124.800000pt;}
.yf8{bottom:125.600000pt;}
.y14a{bottom:126.880000pt;}
.ydf{bottom:129.440000pt;}
.yff{bottom:134.080000pt;}
.y163{bottom:136.800000pt;}
.y3c{bottom:138.240000pt;}
.yae{bottom:138.400000pt;}
.y3f{bottom:138.720000pt;}
.y124{bottom:140.640000pt;}
.y6e{bottom:142.240000pt;}
.y94{bottom:142.586667pt;}
.y9f{bottom:142.600000pt;}
.yc5{bottom:147.360000pt;}
.y89{bottom:148.480000pt;}
.y111{bottom:153.600000pt;}
.yf7{bottom:154.400000pt;}
.y149{bottom:155.680000pt;}
.yde{bottom:158.240000pt;}
.yfe{bottom:162.400000pt;}
.y162{bottom:165.600000pt;}
.y9e{bottom:165.786667pt;}
.y123{bottom:166.880000pt;}
.y3b{bottom:167.040000pt;}
.yad{bottom:167.200000pt;}
.y57{bottom:167.520000pt;}
.y86{bottom:168.800000pt;}
.yc4{bottom:176.186667pt;}
.y6d{bottom:177.786667pt;}
.y110{bottom:181.946667pt;}
.y12c{bottom:182.746667pt;}
.yf6{bottom:183.226667pt;}
.y148{bottom:184.506667pt;}
.ydd{bottom:187.066667pt;}
.yfd{bottom:190.586667pt;}
.y161{bottom:194.426667pt;}
.y3a{bottom:195.866667pt;}
.yac{bottom:196.026667pt;}
.y56{bottom:196.346667pt;}
.y85{bottom:197.626667pt;}
.yc3{bottom:205.146667pt;}
.y12b{bottom:206.746667pt;}
.y10f{bottom:210.746667pt;}
.yf5{bottom:212.026667pt;}
.y6c{bottom:213.306667pt;}
.yfc{bottom:215.386667pt;}
.ydc{bottom:215.866667pt;}
.y160{bottom:223.226667pt;}
.y39{bottom:224.666667pt;}
.yab{bottom:224.826667pt;}
.y55{bottom:225.146667pt;}
.y88{bottom:225.466667pt;}
.y84{bottom:226.426667pt;}
.y12a{bottom:230.746667pt;}
.yc2{bottom:233.946667pt;}
.y10e{bottom:239.546667pt;}
.yf4{bottom:241.306667pt;}
.y147{bottom:242.106667pt;}
.ydb{bottom:244.666667pt;}
.y6b{bottom:248.826667pt;}
.y15f{bottom:252.026667pt;}
.y38{bottom:253.466667pt;}
.yb2{bottom:253.626667pt;}
.y54{bottom:253.946667pt;}
.yaa{bottom:254.106667pt;}
.y87{bottom:254.746667pt;}
.y83{bottom:255.226667pt;}
.yc1{bottom:262.746667pt;}
.y10d{bottom:268.346667pt;}
.yf3{bottom:269.626667pt;}
.y146{bottom:270.906667pt;}
.yda{bottom:273.466667pt;}
.y15e{bottom:280.826667pt;}
.y37{bottom:282.266667pt;}
.ya9{bottom:282.426667pt;}
.y53{bottom:282.746667pt;}
.y82{bottom:284.026667pt;}
.y6a{bottom:284.186667pt;}
.yc0{bottom:291.546667pt;}
.ye{bottom:295.356000pt;}
.y10c{bottom:297.146667pt;}
.yf2{bottom:298.426667pt;}
.y145{bottom:299.706667pt;}
.yd9{bottom:302.266667pt;}
.y129{bottom:302.746667pt;}
.y15d{bottom:309.626667pt;}
.y36{bottom:311.226667pt;}
.y52{bottom:311.706667pt;}
.y81{bottom:312.826667pt;}
.yd{bottom:317.756000pt;}
.y9b{bottom:319.426667pt;}
.y69{bottom:319.706667pt;}
.ybf{bottom:320.346667pt;}
.y7d{bottom:324.186667pt;}
.y10b{bottom:325.946667pt;}
.yf1{bottom:327.226667pt;}
.y127{bottom:327.386667pt;}
.y144{bottom:328.506667pt;}
.yd8{bottom:331.066667pt;}
.y15c{bottom:338.426667pt;}
.y35{bottom:340.026667pt;}
.yc{bottom:340.156000pt;}
.y51{bottom:340.506667pt;}
.y80{bottom:341.626667pt;}
.ybe{bottom:349.146667pt;}
.y10a{bottom:354.746667pt;}
.y68{bottom:355.226667pt;}
.yf0{bottom:356.026667pt;}
.y143{bottom:357.306667pt;}
.y7c{bottom:359.706667pt;}
.yd7{bottom:359.866667pt;}
.y15b{bottom:367.226667pt;}
.y34{bottom:368.866667pt;}
.y59{bottom:369.346667pt;}
.y7f{bottom:370.466667pt;}
.ybd{bottom:377.986667pt;}
.y109{bottom:383.586667pt;}
.yef{bottom:384.866667pt;}
.y142{bottom:386.146667pt;}
.y7b{bottom:388.546667pt;}
.yd6{bottom:388.706667pt;}
.y67{bottom:390.626667pt;}
.y15a{bottom:396.066667pt;}
.y33{bottom:397.666667pt;}
.y58{bottom:398.146667pt;}
.y126{bottom:400.226667pt;}
.ybc{bottom:406.786667pt;}
.yb{bottom:407.356000pt;}
.y108{bottom:412.386667pt;}
.yee{bottom:413.666667pt;}
.y141{bottom:414.946667pt;}
.y93{bottom:415.426667pt;}
.yd5{bottom:417.506667pt;}
.y7a{bottom:424.066667pt;}
.y159{bottom:424.866667pt;}
.y66{bottom:426.146667pt;}
.y32{bottom:426.466667pt;}
.ya{bottom:429.756000pt;}
.ybb{bottom:435.586667pt;}
.y23{bottom:435.746667pt;}
.y107{bottom:441.186667pt;}
.yed{bottom:442.466667pt;}
.y140{bottom:443.746667pt;}
.yd4{bottom:445.186667pt;}
.yfb{bottom:447.746667pt;}
.y158{bottom:453.666667pt;}
.y31{bottom:455.266667pt;}
.ya8{bottom:455.746667pt;}
.y79{bottom:459.426667pt;}
.y65{bottom:461.666667pt;}
.yba{bottom:464.386667pt;}
.y106{bottom:468.866667pt;}
.y22{bottom:469.986667pt;}
.yec{bottom:471.266667pt;}
.y13f{bottom:472.546667pt;}
.yd3{bottom:474.466667pt;}
.yfa{bottom:475.746667pt;}
.y157{bottom:482.466667pt;}
.y30{bottom:484.066667pt;}
.y122{bottom:488.866667pt;}
.y9{bottom:491.385333pt;}
.yb9{bottom:493.186667pt;}
.y105{bottom:493.506667pt;}
.y21{bottom:494.306667pt;}
.y78{bottom:494.946667pt;}
.y64{bottom:497.026667pt;}
.yd2{bottom:499.426667pt;}
.yeb{bottom:500.546667pt;}
.y13e{bottom:501.826667pt;}
.y20{bottom:510.306667pt;}
.y156{bottom:511.266667pt;}
.y2f{bottom:512.866667pt;}
.y121{bottom:515.106667pt;}
.y104{bottom:516.386667pt;}
.yb8{bottom:521.986667pt;}
.y1f{bottom:523.746667pt;}
.y50{bottom:525.346667pt;}
.yea{bottom:528.866667pt;}
.y77{bottom:530.466667pt;}
.y13d{bottom:530.786667pt;}
.y63{bottom:532.546667pt;}
.y120{bottom:539.106667pt;}
.y155{bottom:540.066667pt;}
.y2e{bottom:541.666667pt;}
.y103{bottom:542.946667pt;}
.yb7{bottom:550.786667pt;}
.y4f{bottom:554.146667pt;}
.y11e{bottom:554.786667pt;}
.y13c{bottom:557.026667pt;}
.ye9{bottom:557.666667pt;}
.y1e{bottom:559.106667pt;}
.y76{bottom:559.266667pt;}
.y62{bottom:568.093333pt;}
.y154{bottom:568.893333pt;}
.y91{bottom:569.853333pt;}
.y2d{bottom:570.493333pt;}
.yb1{bottom:570.973333pt;}
.y13b{bottom:572.733333pt;}
.y1d{bottom:576.893333pt;}
.y11d{bottom:578.813333pt;}
.yb6{bottom:580.093333pt;}
.y4e{bottom:582.493333pt;}
.ye8{bottom:586.493333pt;}
.y75{bottom:588.573333pt;}
.y1c{bottom:596.573333pt;}
.y153{bottom:597.693333pt;}
.y2c{bottom:599.293333pt;}
.y11c{bottom:602.813333pt;}
.y61{bottom:603.613333pt;}
.yb5{bottom:608.413333pt;}
.y8d{bottom:610.213333pt;}
.y4d{bottom:611.293333pt;}
.ye7{bottom:615.293333pt;}
.y74{bottom:616.893333pt;}
.y13a{bottom:620.733333pt;}
.y152{bottom:626.493333pt;}
.y11b{bottom:626.813333pt;}
.yd1{bottom:627.933333pt;}
.y2b{bottom:628.093333pt;}
.y101{bottom:628.573333pt;}
.y60{bottom:638.973333pt;}
.y4c{bottom:640.093333pt;}
.y1b{bottom:640.893333pt;}
.ye6{bottom:644.093333pt;}
.y139{bottom:644.733333pt;}
.y73{bottom:645.693333pt;}
.y151{bottom:655.293333pt;}
.y2a{bottom:656.893333pt;}
.y12d{bottom:657.373333pt;}
.y6{bottom:658.446667pt;}
.y138{bottom:668.733333pt;}
.y4b{bottom:668.893333pt;}
.y1a{bottom:669.693333pt;}
.ye5{bottom:673.053333pt;}
.y5f{bottom:674.493333pt;}
.y11a{bottom:674.813333pt;}
.yd0{bottom:680.733333pt;}
.y72{bottom:681.213333pt;}
.y150{bottom:684.093333pt;}
.y5{bottom:685.646667pt;}
.y29{bottom:685.693333pt;}
.y102{bottom:686.173333pt;}
.y8c{bottom:686.533333pt;}
.y137{bottom:692.733333pt;}
.y4a{bottom:698.013333pt;}
.y19{bottom:698.493333pt;}
.y118{bottom:699.613333pt;}
.ye4{bottom:701.853333pt;}
.ycf{bottom:707.133333pt;}
.y5e{bottom:710.013333pt;}
.y4{bottom:712.846667pt;}
.y14f{bottom:712.893333pt;}
.y28{bottom:714.493333pt;}
.y71{bottom:716.573333pt;}
.y136{bottom:716.733333pt;}
.ye3{bottom:720.733333pt;}
.y49{bottom:725.533333pt;}
.yce{bottom:733.533333pt;}
.y18{bottom:735.293333pt;}
.ye2{bottom:738.333333pt;}
.y135{bottom:740.733333pt;}
.y14e{bottom:741.853333pt;}
.y27{bottom:743.293333pt;}
.y5d{bottom:745.373333pt;}
.y117{bottom:748.253333pt;}
.y70{bottom:752.093333pt;}
.y8b{bottom:752.320000pt;}
.y48{bottom:753.213333pt;}
.ye1{bottom:753.533333pt;}
.ycc{bottom:759.933333pt;}
.y134{bottom:764.773333pt;}
.y3{bottom:767.246667pt;}
.y14d{bottom:770.693333pt;}
.y17{bottom:772.133333pt;}
.y113{bottom:774.213333pt;}
.y47{bottom:780.773333pt;}
.y5c{bottom:780.933333pt;}
.ycb{bottom:786.373333pt;}
.y133{bottom:788.773333pt;}
.y14c{bottom:800.293333pt;}
.y16{bottom:800.933333pt;}
.yf9{bottom:801.413333pt;}
.y46{bottom:808.453333pt;}
.y132{bottom:812.773333pt;}
.y5b{bottom:816.453333pt;}
.y14b{bottom:829.093333pt;}
.y26{bottom:829.733333pt;}
.y15{bottom:830.213333pt;}
.y45{bottom:835.973333pt;}
.y130{bottom:837.413333pt;}
.yca{bottom:839.173333pt;}
.y5a{bottom:851.813333pt;}
.y25{bottom:858.533333pt;}
.y14{bottom:859.013333pt;}
.y44{bottom:863.653333pt;}
.yc9{bottom:866.213333pt;}
.y13{bottom:887.333333pt;}
.ya7{bottom:887.493333pt;}
.yb0{bottom:887.973333pt;}
.y43{bottom:891.173333pt;}
.yc6{bottom:894.693333pt;}
.y12e{bottom:913.573333pt;}
.y24{bottom:916.133333pt;}
.yaf{bottom:916.293333pt;}
.y12{bottom:916.613333pt;}
.ya6{bottom:916.773333pt;}
.y42{bottom:918.853333pt;}
.y3e{bottom:944.933333pt;}
.ya5{bottom:945.093333pt;}
.y11{bottom:945.413333pt;}
.yb4{bottom:945.573333pt;}
.y41{bottom:946.373333pt;}
.y2{bottom:948.726785pt;}
.y1{bottom:971.030667pt;}
.y7e{bottom:992.320000pt;}
.h32{height:24.000000pt;}
.h30{height:24.032000pt;}
.h27{height:26.400000pt;}
.h29{height:26.432000pt;}
.h18{height:30.912000pt;}
.h1d{height:36.096250pt;}
.h6{height:36.250000pt;}
.hb{height:36.432292pt;}
.h1e{height:38.048408pt;}
.h20{height:38.432000pt;}
.h1f{height:38.622224pt;}
.h11{height:42.052500pt;}
.h7{height:43.531250pt;}
.h13{height:44.716250pt;}
.h12{height:45.390625pt;}
.h2f{height:47.134595pt;}
.h33{height:47.986667pt;}
.h31{height:48.000000pt;}
.h35{height:48.032000pt;}
.h36{height:48.160000pt;}
.h1a{height:49.565000pt;}
.h2b{height:50.312500pt;}
.ha{height:50.786458pt;}
.h9{height:51.005208pt;}
.h3{height:51.977707pt;}
.h19{height:52.245575pt;}
.h26{height:52.786667pt;}
.h28{height:52.800000pt;}
.h2{height:53.043916pt;}
.hd{height:53.875000pt;}
.he{height:54.687500pt;}
.h2c{height:55.687500pt;}
.h15{height:56.788668pt;}
.h1c{height:57.600000pt;}
.hf{height:57.645110pt;}
.h25{height:58.185000pt;}
.h16{height:58.563750pt;}
.h4{height:61.625000pt;}
.h5{height:61.669271pt;}
.h8{height:61.934896pt;}
.h2a{height:63.656250pt;}
.h17{height:65.781915pt;}
.h14{height:66.625000pt;}
.h10{height:66.750000pt;}
.h2e{height:72.000000pt;}
.h34{height:72.032000pt;}
.h22{height:96.000000pt;}
.h2d{height:98.567500pt;}
.h23{height:134.426667pt;}
.h21{height:153.626667pt;}
.h24{height:661.573333pt;}
.h1b{height:816.000000pt;}
.hc{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w17{width:12.800000pt;}
.w24{width:14.240000pt;}
.w22{width:14.560000pt;}
.w15{width:14.720000pt;}
.w27{width:26.560000pt;}
.w29{width:28.480000pt;}
.w2e{width:30.080000pt;}
.w1e{width:65.152000pt;}
.w1b{width:65.280000pt;}
.w1a{width:65.312000pt;}
.w18{width:66.240000pt;}
.w1d{width:67.200000pt;}
.w23{width:67.840000pt;}
.w2c{width:68.000000pt;}
.w2b{width:68.032000pt;}
.w1c{width:69.792000pt;}
.w21{width:70.432000pt;}
.w20{width:72.032000pt;}
.w1f{width:74.880000pt;}
.w14{width:78.240000pt;}
.w2d{width:86.912000pt;}
.w26{width:88.320000pt;}
.wa{width:90.720000pt;}
.wb{width:90.752000pt;}
.w38{width:92.352000pt;}
.w3b{width:96.800000pt;}
.w3a{width:96.832000pt;}
.w30{width:97.280000pt;}
.w3c{width:97.632000pt;}
.w37{width:98.592000pt;}
.w35{width:98.912000pt;}
.w36{width:99.520000pt;}
.w39{width:100.352000pt;}
.w34{width:102.592000pt;}
.w33{width:106.592000pt;}
.wd{width:117.120000pt;}
.wc{width:117.312000pt;}
.w32{width:190.106667pt;}
.w12{width:195.746667pt;}
.w11{width:195.866667pt;}
.w10{width:196.986667pt;}
.w16{width:200.226667pt;}
.w31{width:201.506667pt;}
.w19{width:211.106667pt;}
.w2a{width:217.346667pt;}
.w28{width:225.346667pt;}
.w13{width:553.373333pt;}
.wf{width:588.613333pt;}
.w2f{width:595.493333pt;}
.w6{width:627.173333pt;}
.w25{width:676.293333pt;}
.w2{width:793.706667pt;}
.w3{width:794.000000pt;}
.w9{width:812.933333pt;}
.w5{width:815.999988pt;}
.w4{width:816.000000pt;}
.we{width:912.160000pt;}
.w8{width:1055.999984pt;}
.w7{width:1056.000000pt;}
.w1{width:1662.666667pt;}
.w0{width:1662.986667pt;}
.x0{left:0.000000pt;}
.x65{left:7.200000pt;}
.xde{left:8.320000pt;}
.x7c{left:10.080000pt;}
.x6f{left:11.680000pt;}
.xe0{left:12.960000pt;}
.x82{left:13.920000pt;}
.xe1{left:15.680000pt;}
.x71{left:16.800000pt;}
.xbc{left:17.760000pt;}
.x6b{left:19.240000pt;}
.xf9{left:20.320000pt;}
.x72{left:21.760000pt;}
.x6e{left:23.520000pt;}
.x6c{left:25.160000pt;}
.xe2{left:26.240000pt;}
.xbe{left:27.840000pt;}
.x69{left:29.120000pt;}
.x67{left:30.714667pt;}
.xdf{left:32.000000pt;}
.x7a{left:33.760000pt;}
.xea{left:35.354667pt;}
.xf4{left:36.794667pt;}
.xeb{left:37.914667pt;}
.xf6{left:39.040000pt;}
.xf5{left:41.000000pt;}
.xfc{left:41.960000pt;}
.xbf{left:43.520000pt;}
.x75{left:44.680000pt;}
.xfb{left:46.920000pt;}
.x7f{left:49.440000pt;}
.x61{left:51.514667pt;}
.xf3{left:53.280000pt;}
.xbd{left:56.954667pt;}
.xb4{left:59.040000pt;}
.xf2{left:60.800000pt;}
.x78{left:63.520000pt;}
.xb9{left:64.474667pt;}
.xbb{left:67.674667pt;}
.x7e{left:69.120000pt;}
.xb6{left:70.880000pt;}
.xc0{left:72.200000pt;}
.xb7{left:73.160000pt;}
.xb8{left:74.074667pt;}
.x81{left:76.314667pt;}
.x80{left:78.554667pt;}
.x7b{left:82.400000pt;}
.x79{left:83.520000pt;}
.xba{left:90.746667pt;}
.x62{left:94.559984pt;}
.x83{left:96.480000pt;}
.x14{left:99.071988pt;}
.xa{left:100.511988pt;}
.x7d{left:104.480000pt;}
.x64{left:106.112000pt;}
.x8{left:113.471988pt;}
.x92{left:117.631988pt;}
.x16{left:120.991988pt;}
.x38{left:123.551988pt;}
.xb{left:125.311988pt;}
.x21{left:128.191988pt;}
.xfd{left:131.711988pt;}
.xe3{left:137.306655pt;}
.x41{left:139.706655pt;}
.x22{left:142.746655pt;}
.xb2{left:144.346655pt;}
.x4a{left:145.946655pt;}
.xc1{left:146.906655pt;}
.x4b{left:150.746655pt;}
.x103{left:153.626655pt;}
.x9f{left:155.386655pt;}
.x10{left:161.466655pt;}
.xa3{left:164.666655pt;}
.x2e{left:168.026655pt;}
.x10c{left:169.306655pt;}
.xaf{left:171.066655pt;}
.x1d{left:173.306655pt;}
.x5b{left:174.586655pt;}
.xa0{left:179.546655pt;}
.xec{left:184.346655pt;}
.x13c{left:187.546655pt;}
.x26{left:189.626655pt;}
.xd9{left:191.706667pt;}
.x3e{left:192.666655pt;}
.x109{left:195.066655pt;}
.x68{left:196.826667pt;}
.x86{left:199.066655pt;}
.xd{left:201.466655pt;}
.xfe{left:202.426655pt;}
.x84{left:204.986655pt;}
.xda{left:206.426667pt;}
.xb0{left:207.706655pt;}
.x60{left:209.466655pt;}
.x9d{left:211.386655pt;}
.xc8{left:215.546655pt;}
.x115{left:216.826655pt;}
.x4d{left:218.106655pt;}
.x1b{left:219.226655pt;}
.x12d{left:221.146655pt;}
.x87{left:224.026655pt;}
.xff{left:227.066655pt;}
.x8c{left:228.506655pt;}
.x85{left:230.906655pt;}
.x4e{left:233.346655pt;}
.x5c{left:234.946655pt;}
.x9e{left:236.546655pt;}
.x108{left:238.626655pt;}
.x11d{left:240.866655pt;}
.xaa{left:241.986655pt;}
.xee{left:243.906655pt;}
.x13d{left:245.346655pt;}
.x3f{left:246.786655pt;}
.x11{left:252.706655pt;}
.x96{left:256.546655pt;}
.x50{left:261.026655pt;}
.x98{left:261.986655pt;}
.x111{left:263.266655pt;}
.xe4{left:264.866655pt;}
.x35{left:268.226655pt;}
.x40{left:271.426655pt;}
.x46{left:272.546655pt;}
.x39{left:274.626655pt;}
.x4f{left:275.746655pt;}
.x128{left:277.026655pt;}
.x13{left:280.386655pt;}
.xc3{left:282.946655pt;}
.x116{left:286.466655pt;}
.x6a{left:287.546667pt;}
.x5d{left:291.266655pt;}
.x9{left:292.226655pt;}
.x8d{left:293.506655pt;}
.xd1{left:295.586655pt;}
.x6{left:297.556000pt;}
.x36{left:299.906655pt;}
.x113{left:301.506655pt;}
.x49{left:305.346655pt;}
.x134{left:306.626655pt;}
.xc4{left:307.586655pt;}
.xa6{left:308.866655pt;}
.xb3{left:310.466667pt;}
.x126{left:312.066655pt;}
.x31{left:313.346655pt;}
.x42{left:316.546655pt;}
.x8e{left:318.306655pt;}
.x12b{left:320.226655pt;}
.xd5{left:323.906655pt;}
.x19{left:325.826655pt;}
.x100{left:326.946655pt;}
.xd2{left:329.346655pt;}
.x13f{left:331.586655pt;}
.x27{left:332.706655pt;}
.x12c{left:333.666655pt;}
.x2a{left:335.426655pt;}
.xdc{left:336.866667pt;}
.x32{left:338.306655pt;}
.x43{left:341.826655pt;}
.x10d{left:343.266655pt;}
.x101{left:344.546655pt;}
.xc6{left:345.826655pt;}
.x5e{left:347.586655pt;}
.x1a{left:349.186655pt;}
.xa4{left:350.786655pt;}
.xf{left:353.666655pt;}
.x24{left:354.946655pt;}
.x12f{left:356.386655pt;}
.x28{left:357.506655pt;}
.x131{left:362.306655pt;}
.x2b{left:363.266655pt;}
.xe8{left:364.386667pt;}
.x5f{left:365.506655pt;}
.x93{left:368.706655pt;}
.x102{left:369.666655pt;}
.x124{left:371.586655pt;}
.x15{left:372.546655pt;}
.x23{left:373.986655pt;}
.xa5{left:375.586655pt;}
.x17{left:377.186655pt;}
.x6d{left:378.306667pt;}
.xce{left:380.866655pt;}
.x18{left:384.226655pt;}
.x56{left:385.986655pt;}
.x104{left:397.053321pt;}
.x1f{left:398.973321pt;}
.x1c{left:400.733321pt;}
.xe{left:402.653321pt;}
.x7{left:404.413321pt;}
.xf0{left:405.533321pt;}
.xc{left:408.093321pt;}
.x140{left:409.693321pt;}
.x20{left:411.453321pt;}
.x117{left:414.333321pt;}
.x47{left:420.253321pt;}
.x137{left:422.493321pt;}
.x99{left:423.613321pt;}
.xc5{left:425.053321pt;}
.xa7{left:426.173321pt;}
.x118{left:427.133321pt;}
.x52{left:428.253321pt;}
.xc9{left:430.333321pt;}
.x1e{left:432.093321pt;}
.x57{left:433.373321pt;}
.xad{left:436.573321pt;}
.x11f{left:438.653321pt;}
.x3a{left:441.213321pt;}
.x97{left:442.493321pt;}
.x13b{left:443.933321pt;}
.xa9{left:447.773321pt;}
.x9a{left:448.733321pt;}
.x58{left:450.813321pt;}
.x48{left:452.893321pt;}
.x8f{left:455.133321pt;}
.x4c{left:456.093321pt;}
.x25{left:458.973321pt;}
.xe5{left:461.533321pt;}
.xcf{left:467.133321pt;}
.x88{left:468.093321pt;}
.x70{left:469.026667pt;}
.xed{left:470.813321pt;}
.x127{left:473.373321pt;}
.x91{left:474.813321pt;}
.x53{left:475.933321pt;}
.xa1{left:477.053321pt;}
.xcb{left:478.813321pt;}
.x90{left:479.933321pt;}
.xe7{left:482.173333pt;}
.xf1{left:483.621333pt;}
.x133{left:487.613321pt;}
.xdd{left:490.653333pt;}
.xdb{left:491.613333pt;}
.x89{left:493.053321pt;}
.x136{left:494.333321pt;}
.x107{left:495.293321pt;}
.xd6{left:497.053321pt;}
.x3b{left:500.093321pt;}
.x13e{left:501.533321pt;}
.xfa{left:504.733333pt;}
.xb5{left:506.333333pt;}
.xca{left:507.453321pt;}
.xf7{left:511.773333pt;}
.x141{left:513.053321pt;}
.x10e{left:516.413321pt;}
.x63{left:520.093318pt;}
.x105{left:523.133321pt;}
.xa8{left:525.053321pt;}
.x2f{left:526.813321pt;}
.x139{left:527.933321pt;}
.x132{left:533.853321pt;}
.x119{left:540.453321pt;}
.xc2{left:541.413321pt;}
.x33{left:549.733321pt;}
.x30{left:552.613321pt;}
.x121{left:553.733321pt;}
.xcd{left:555.813321pt;}
.xd0{left:557.093321pt;}
.x10a{left:558.053321pt;}
.x73{left:559.773333pt;}
.xb1{left:562.853321pt;}
.x11e{left:564.933321pt;}
.x12{left:567.493321pt;}
.xe6{left:569.093321pt;}
.x9b{left:570.693321pt;}
.x34{left:574.053321pt;}
.x11b{left:576.613321pt;}
.xa2{left:580.453321pt;}
.x142{left:582.853321pt;}
.x114{left:584.933321pt;}
.x29{left:587.013321pt;}
.x135{left:590.693321pt;}
.x3c{left:592.293321pt;}
.xae{left:593.413321pt;}
.xab{left:595.013321pt;}
.x10b{left:596.773321pt;}
.x9c{left:598.053321pt;}
.x11c{left:599.813321pt;}
.xd3{left:602.533321pt;}
.x94{left:606.373321pt;}
.xd4{left:607.813321pt;}
.xf8{left:610.373333pt;}
.xe9{left:617.413333pt;}
.x3d{left:619.493321pt;}
.x123{left:620.933321pt;}
.x11a{left:624.133321pt;}
.x12e{left:625.733321pt;}
.x59{left:626.693321pt;}
.x44{left:628.453321pt;}
.x8a{left:630.053321pt;}
.xd7{left:631.653321pt;}
.x130{left:633.733321pt;}
.x66{left:635.301333pt;}
.x122{left:636.613321pt;}
.x12a{left:639.173321pt;}
.x110{left:643.813321pt;}
.x129{left:645.093321pt;}
.xcc{left:649.093321pt;}
.x74{left:650.493333pt;}
.x45{left:652.453321pt;}
.x8b{left:655.173321pt;}
.x54{left:656.293321pt;}
.x106{left:659.813321pt;}
.x13a{left:662.053321pt;}
.x138{left:663.493321pt;}
.x112{left:664.613321pt;}
.xef{left:666.533321pt;}
.x120{left:667.973321pt;}
.xc7{left:668.933321pt;}
.x2c{left:669.893321pt;}
.xac{left:671.013321pt;}
.x10f{left:672.133321pt;}
.x5a{left:673.413321pt;}
.x95{left:681.093321pt;}
.xd8{left:682.533321pt;}
.x125{left:683.973321pt;}
.x37{left:692.133321pt;}
.x2d{left:695.039988pt;}
.x55{left:698.879988pt;}
.x51{left:702.719988pt;}
.x76{left:767.653333pt;}
.x3{left:818.562667pt;}
.x2{left:835.382667pt;}
.x4{left:837.762667pt;}
.x5{left:856.962667pt;}
.x77{left:884.960000pt;}
.x1{left:1167.868000pt;}
}




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