
    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_d66f8141fcb26765d02b9fa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_0114d27f2c196d541386c808.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_63a9078651b30580230e17a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_ef2d33ce342d015c7fe50342.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_4068cb72b5d5fbabbacff77f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_5469e14c8cd6ef765b9e31fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.684000;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_7ddc9f6d57d4a1405f68bbe0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_30ee8cc3f15ddbbe8de89cb4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.224000px;}
.v3{vertical-align:20.399963px;}
.v1{vertical-align:24.000000px;}
.ls2e{letter-spacing:-0.420000px;}
.ls61{letter-spacing:-0.408000px;}
.ls12{letter-spacing:-0.360000px;}
.ls5a{letter-spacing:-0.357000px;}
.ls5c{letter-spacing:-0.306000px;}
.ls29{letter-spacing:-0.300000px;}
.ls5f{letter-spacing:-0.255000px;}
.ls13{letter-spacing:-0.240000px;}
.ls5b{letter-spacing:-0.204000px;}
.ls28{letter-spacing:-0.180000px;}
.ls5e{letter-spacing:-0.153000px;}
.ls11{letter-spacing:-0.120000px;}
.ls5d{letter-spacing:-0.102000px;}
.ls10{letter-spacing:-0.060000px;}
.ls60{letter-spacing:-0.051000px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls30{letter-spacing:0.030000px;}
.ls43{letter-spacing:0.051000px;}
.ls20{letter-spacing:0.060000px;}
.ls31{letter-spacing:0.090000px;}
.ls46{letter-spacing:0.102000px;}
.ls7{letter-spacing:0.120000px;}
.ls37{letter-spacing:0.150000px;}
.ls49{letter-spacing:0.153000px;}
.ls48{letter-spacing:0.178500px;}
.lsd{letter-spacing:0.178791px;}
.ls1e{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.229500px;}
.ls2{letter-spacing:0.240000px;}
.lse{letter-spacing:0.255000px;}
.ls42{letter-spacing:0.264000px;}
.ls1c{letter-spacing:0.270000px;}
.ls47{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.305952px;}
.ls54{letter-spacing:0.306000px;}
.ls35{letter-spacing:0.330000px;}
.ls4d{letter-spacing:0.331500px;}
.ls44{letter-spacing:0.357000px;}
.ls21{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.390000px;}
.ls1d{letter-spacing:0.420000px;}
.ls52{letter-spacing:0.433500px;}
.ls25{letter-spacing:0.450000px;}
.ls45{letter-spacing:0.459000px;}
.ls8{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.533977px;}
.ls19{letter-spacing:0.540000px;}
.ls4e{letter-spacing:0.561000px;}
.ls2f{letter-spacing:0.570000px;}
.ls3{letter-spacing:0.600000px;}
.ls59{letter-spacing:0.612000px;}
.ls2c{letter-spacing:0.630000px;}
.ls2a{letter-spacing:0.660000px;}
.ls51{letter-spacing:0.663000px;}
.lsa{letter-spacing:0.690000px;}
.ls56{letter-spacing:0.714000px;}
.ls2b{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.750000px;}
.ls4c{letter-spacing:0.765000px;}
.ls6{letter-spacing:0.780000px;}
.ls4{letter-spacing:0.810000px;}
.ls4f{letter-spacing:0.816000px;}
.ls9{letter-spacing:0.840000px;}
.ls4b{letter-spacing:0.867000px;}
.ls14{letter-spacing:0.900000px;}
.ls34{letter-spacing:0.930000px;}
.ls58{letter-spacing:0.943500px;}
.ls18{letter-spacing:0.960000px;}
.ls53{letter-spacing:0.969000px;}
.ls15{letter-spacing:1.020000px;}
.ls55{letter-spacing:1.071000px;}
.ls23{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.140000px;}
.ls3a{letter-spacing:1.170000px;}
.ls24{letter-spacing:1.200000px;}
.ls33{letter-spacing:1.260000px;}
.ls38{letter-spacing:1.290000px;}
.ls3f{letter-spacing:1.319976px;}
.ls26{letter-spacing:1.320000px;}
.ls1f{letter-spacing:1.380000px;}
.ls22{letter-spacing:1.440000px;}
.ls3d{letter-spacing:1.500000px;}
.ls32{letter-spacing:1.560000px;}
.ls1a{letter-spacing:1.620000px;}
.ls3e{letter-spacing:1.680000px;}
.ls17{letter-spacing:1.710000px;}
.ls50{letter-spacing:1.734000px;}
.ls27{letter-spacing:1.740000px;}
.lsc{letter-spacing:1.800000px;}
.ls2d{letter-spacing:1.860000px;}
.ls41{letter-spacing:1.920000px;}
.ls3b{letter-spacing:2.040000px;}
.ls4a{letter-spacing:2.091000px;}
.ls3c{letter-spacing:2.220000px;}
.ls39{letter-spacing:2.520000px;}
.ls0{letter-spacing:3.990000px;}
.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;}
}
.ws25{word-spacing:-16.080000px;}
.ws43{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.000000px;}
.ws81{word-spacing:-14.832000px;}
.ws9{word-spacing:-14.544000px;}
.ws8b{word-spacing:-13.005000px;}
.ws22{word-spacing:-12.750000px;}
.ws61{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws5{word-spacing:-12.120000px;}
.ws8{word-spacing:-11.520000px;}
.ws6{word-spacing:-11.460000px;}
.ws79{word-spacing:-10.608000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.wsb{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.wsf{word-spacing:-2.400000px;}
.wsc{word-spacing:-1.890000px;}
.ws13{word-spacing:-1.500000px;}
.ws18{word-spacing:-1.440000px;}
.ws32{word-spacing:-1.380000px;}
.ws4b{word-spacing:-1.320000px;}
.ws85{word-spacing:-1.275000px;}
.ws4c{word-spacing:-1.200000px;}
.ws39{word-spacing:-1.140000px;}
.ws9a{word-spacing:-1.122000px;}
.ws57{word-spacing:-1.080000px;}
.ws88{word-spacing:-1.071000px;}
.ws5e{word-spacing:-1.020000px;}
.ws84{word-spacing:-0.969000px;}
.ws38{word-spacing:-0.960000px;}
.ws1a{word-spacing:-0.900000px;}
.ws77{word-spacing:-0.780000px;}
.ws89{word-spacing:-0.765000px;}
.ws12{word-spacing:-0.720000px;}
.ws8a{word-spacing:-0.714000px;}
.ws17{word-spacing:-0.660000px;}
.ws24{word-spacing:-0.612000px;}
.ws3f{word-spacing:-0.600000px;}
.wse{word-spacing:-0.570000px;}
.ws51{word-spacing:-0.540000px;}
.ws49{word-spacing:-0.480000px;}
.ws9e{word-spacing:-0.459000px;}
.ws55{word-spacing:-0.420000px;}
.ws30{word-spacing:-0.360000px;}
.ws1f{word-spacing:-0.300000px;}
.ws8f{word-spacing:-0.255000px;}
.ws15{word-spacing:-0.240000px;}
.wsa2{word-spacing:-0.204000px;}
.ws28{word-spacing:-0.180000px;}
.ws4a{word-spacing:-0.120000px;}
.ws7{word-spacing:-0.060000px;}
.wsd{word-spacing:0.000000px;}
.ws3a{word-spacing:0.060000px;}
.ws1b{word-spacing:0.120000px;}
.ws2a{word-spacing:0.180000px;}
.ws7d{word-spacing:0.240000px;}
.ws14{word-spacing:0.300000px;}
.ws82{word-spacing:0.357000px;}
.ws1e{word-spacing:0.360000px;}
.ws83{word-spacing:0.459000px;}
.ws72{word-spacing:0.480000px;}
.ws97{word-spacing:0.510000px;}
.ws74{word-spacing:0.540000px;}
.ws95{word-spacing:0.561000px;}
.ws91{word-spacing:0.663000px;}
.ws56{word-spacing:0.720000px;}
.ws1c{word-spacing:0.780000px;}
.ws45{word-spacing:0.840000px;}
.ws4f{word-spacing:0.900000px;}
.ws9d{word-spacing:0.918000px;}
.ws75{word-spacing:0.960000px;}
.wsa5{word-spacing:0.969000px;}
.ws21{word-spacing:1.080000px;}
.ws52{word-spacing:1.140000px;}
.ws86{word-spacing:1.173000px;}
.ws71{word-spacing:1.200000px;}
.ws11{word-spacing:1.260000px;}
.ws87{word-spacing:1.275000px;}
.ws46{word-spacing:1.320000px;}
.ws93{word-spacing:1.326000px;}
.ws9b{word-spacing:1.377000px;}
.ws48{word-spacing:1.380000px;}
.ws94{word-spacing:1.428000px;}
.ws3c{word-spacing:1.440000px;}
.ws19{word-spacing:1.500000px;}
.wsa3{word-spacing:1.530000px;}
.ws5a{word-spacing:1.560000px;}
.ws3b{word-spacing:1.620000px;}
.ws16{word-spacing:1.680000px;}
.ws99{word-spacing:1.734000px;}
.ws3d{word-spacing:1.740000px;}
.ws10{word-spacing:1.800000px;}
.ws1d{word-spacing:1.860000px;}
.ws4d{word-spacing:1.920000px;}
.ws73{word-spacing:1.980000px;}
.ws8c{word-spacing:1.989000px;}
.ws5b{word-spacing:2.040000px;}
.wsa0{word-spacing:2.091000px;}
.ws53{word-spacing:2.100000px;}
.ws4e{word-spacing:2.160000px;}
.ws8e{word-spacing:2.193000px;}
.ws26{word-spacing:2.220000px;}
.ws40{word-spacing:2.280000px;}
.wsa4{word-spacing:2.295000px;}
.ws44{word-spacing:2.340000px;}
.wsa1{word-spacing:2.397000px;}
.ws2c{word-spacing:2.400000px;}
.ws60{word-spacing:2.448000px;}
.ws37{word-spacing:2.460000px;}
.ws58{word-spacing:2.520000px;}
.ws9c{word-spacing:2.550000px;}
.ws7f{word-spacing:2.580000px;}
.ws5c{word-spacing:2.640000px;}
.ws7a{word-spacing:2.760000px;}
.ws9f{word-spacing:2.805000px;}
.ws27{word-spacing:2.820000px;}
.ws5f{word-spacing:2.880000px;}
.ws96{word-spacing:2.907000px;}
.ws29{word-spacing:2.940000px;}
.ws35{word-spacing:3.000000px;}
.ws80{word-spacing:3.060000px;}
.ws92{word-spacing:3.111000px;}
.ws3e{word-spacing:3.120000px;}
.ws59{word-spacing:3.180000px;}
.ws2e{word-spacing:3.360000px;}
.ws98{word-spacing:3.366000px;}
.ws6e{word-spacing:3.540000px;}
.ws31{word-spacing:3.600000px;}
.ws47{word-spacing:3.660000px;}
.ws5d{word-spacing:3.720000px;}
.ws36{word-spacing:3.780000px;}
.ws6d{word-spacing:3.900000px;}
.ws7c{word-spacing:4.080000px;}
.ws76{word-spacing:4.140000px;}
.ws54{word-spacing:4.200000px;}
.ws41{word-spacing:4.500000px;}
.ws7b{word-spacing:4.620000px;}
.ws2f{word-spacing:4.680000px;}
.ws33{word-spacing:4.800000px;}
.ws34{word-spacing:4.980000px;}
.ws6f{word-spacing:5.640000px;}
.ws6c{word-spacing:5.700000px;}
.ws2d{word-spacing:5.940000px;}
.ws78{word-spacing:6.180000px;}
.ws2b{word-spacing:6.300000px;}
.ws42{word-spacing:6.360000px;}
.ws90{word-spacing:6.732000px;}
.ws20{word-spacing:6.780000px;}
.ws7e{word-spacing:6.840000px;}
.ws50{word-spacing:7.080000px;}
.ws8d{word-spacing:8.517000px;}
.ws63{word-spacing:35.037000px;}
.ws62{word-spacing:49.011000px;}
.ws23{word-spacing:72.267000px;}
.ws6b{word-spacing:109.905000px;}
.ws68{word-spacing:110.517000px;}
.ws6a{word-spacing:127.703991px;}
.ws64{word-spacing:183.753000px;}
.ws65{word-spacing:209.253000px;}
.ws66{word-spacing:219.606000px;}
.ws69{word-spacing:242.199000px;}
.ws70{word-spacing:277.593000px;}
.ws67{word-spacing:280.449000px;}
._8{margin-left:-16.575000px;}
._52{margin-left:-14.841000px;}
._54{margin-left:-12.546000px;}
._f{margin-left:-11.268000px;}
._e{margin-left:-9.960000px;}
._d{margin-left:-7.800000px;}
._7{margin-left:-5.657700px;}
._2{margin-left:-4.622700px;}
._5{margin-left:-2.967300px;}
._0{margin-left:-1.632000px;}
._1{width:1.377000px;}
._10{width:2.637300px;}
._c{width:4.050000px;}
._4f{width:6.732000px;}
._43{width:10.648250px;}
._4{width:13.529987px;}
._11{width:15.606000px;}
._6{width:16.680000px;}
._9{width:18.360000px;}
._51{width:19.788000px;}
._56{width:21.114000px;}
._53{width:23.103000px;}
._55{width:24.990000px;}
._50{width:26.163000px;}
._57{width:27.282000px;}
._4e{width:29.529000px;}
._3{width:40.577391px;}
._17{width:47.787000px;}
._a{width:54.621000px;}
._16{width:72.726000px;}
._28{width:102.357000px;}
._1b{width:103.581000px;}
._19{width:111.537000px;}
._37{width:121.737000px;}
._33{width:123.878989px;}
._14{width:129.489000px;}
._3f{width:130.712998px;}
._32{width:132.191994px;}
._3a{width:148.460989px;}
._15{width:156.723000px;}
._36{width:161.823000px;}
._3c{width:174.317993px;}
._3b{width:175.796989px;}
._48{width:180.591004px;}
._4a{width:182.222979px;}
._39{width:187.323000px;}
._18{width:192.728984px;}
._26{width:195.942000px;}
._40{width:199.715996px;}
._3e{width:200.939984px;}
._4c{width:207.722979px;}
._42{width:212.823000px;}
._1a{width:217.107000px;}
._1e{width:222.003000px;}
._29{width:224.043000px;}
._22{width:234.192000px;}
._13{width:240.261000px;}
._3d{width:245.156993px;}
._1d{width:246.942000px;}
._20{width:260.253000px;}
._46{width:261.639305px;}
._4b{width:278.561979px;}
._2c{width:286.313984px;}
._35{width:297.329993px;}
._2b{width:298.503000px;}
._30{width:320.498349px;}
._12{width:325.839000px;}
._47{width:330.734979px;}
._27{width:340.323000px;}
._23{width:341.444984px;}
._25{width:343.689000px;}
._31{width:353.990993px;}
._2f{width:361.399238px;}
._21{width:365.823000px;}
._1f{width:366.944984px;}
._1c{width:369.189000px;}
._34{width:376.839000px;}
._24{width:378.573000px;}
._2a{width:379.694984px;}
._41{width:383.927993px;}
._45{width:387.395979px;}
._38{width:390.812993px;}
._2d{width:399.336000px;}
._44{width:431.817000px;}
._4d{width:442.832979px;}
._49{width:449.717979px;}
._2e{width:1299.572478px;}
._b{width:2041.989000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y6d{bottom:113.415298px;}
.y1a4{bottom:113.544296px;}
.y2d{bottom:114.211349px;}
.ycd{bottom:114.735146px;}
.yaf{bottom:114.735260px;}
.yec{bottom:114.874809px;}
.y3b{bottom:118.032303px;}
.y169{bottom:119.017056px;}
.y1da{bottom:131.474678px;}
.y21b{bottom:131.793446px;}
.y6c{bottom:132.165298px;}
.y1a3{bottom:132.294296px;}
.y2c{bottom:132.961349px;}
.y168{bottom:133.170594px;}
.ycc{bottom:133.485146px;}
.yae{bottom:133.485260px;}
.yeb{bottom:133.624809px;}
.y144{bottom:133.664553px;}
.y108{bottom:134.116806px;}
.y3a{bottom:135.485553px;}
.y1d9{bottom:146.468678px;}
.y21a{bottom:146.787446px;}
.y107{bottom:149.110806px;}
.y6b{bottom:150.915298px;}
.y1a2{bottom:151.044296px;}
.y2b{bottom:151.711349px;}
.ycb{bottom:152.235146px;}
.yad{bottom:152.235260px;}
.yea{bottom:152.374809px;}
.y39{bottom:155.579556px;}
.y143{bottom:158.017056px;}
.y1d8{bottom:161.462678px;}
.y173{bottom:161.693843px;}
.y219{bottom:161.781446px;}
.y6a{bottom:169.665298px;}
.y1a1{bottom:169.794296px;}
.y2a{bottom:170.461349px;}
.yca{bottom:170.985146px;}
.yac{bottom:170.985260px;}
.ye9{bottom:171.124809px;}
.y1d7{bottom:176.456678px;}
.y218{bottom:176.775446px;}
.y142{bottom:177.268948px;}
.y38{bottom:178.126797px;}
.y172{bottom:180.487343px;}
.y69{bottom:188.415298px;}
.y1a0{bottom:188.544296px;}
.y29{bottom:189.211349px;}
.yc9{bottom:189.735146px;}
.yab{bottom:189.735260px;}
.ye8{bottom:189.874809px;}
.y1d6{bottom:191.450678px;}
.y217{bottom:191.769446px;}
.y37{bottom:195.580059px;}
.y171{bottom:199.204343px;}
.y14e{bottom:199.819795px;}
.y1d5{bottom:206.444678px;}
.y216{bottom:206.763446px;}
.y68{bottom:207.165298px;}
.y19f{bottom:207.294296px;}
.y28{bottom:207.961349px;}
.yc8{bottom:208.485146px;}
.yaa{bottom:208.485260px;}
.ye7{bottom:208.624809px;}
.y36{bottom:215.674049px;}
.y170{bottom:217.921343px;}
.y14d{bottom:218.613295px;}
.y1d4{bottom:221.438678px;}
.y215{bottom:221.757446px;}
.y67{bottom:225.915298px;}
.y19e{bottom:226.044296px;}
.y27{bottom:226.711349px;}
.yc7{bottom:227.235146px;}
.ya9{bottom:227.235260px;}
.ye6{bottom:227.374809px;}
.y35{bottom:233.133300px;}
.y1d3{bottom:236.432678px;}
.y16f{bottom:236.638343px;}
.y214{bottom:236.751446px;}
.y14c{bottom:237.330295px;}
.y66{bottom:244.665298px;}
.y19d{bottom:244.794296px;}
.y26{bottom:245.461349px;}
.yc6{bottom:245.985146px;}
.ya8{bottom:245.985260px;}
.ye5{bottom:246.124809px;}
.y34{bottom:248.127300px;}
.y1d2{bottom:251.426678px;}
.y213{bottom:251.745446px;}
.y16e{bottom:255.355343px;}
.y14b{bottom:256.047295px;}
.y65{bottom:263.415298px;}
.y19c{bottom:263.544296px;}
.y25{bottom:264.211349px;}
.yc5{bottom:264.735146px;}
.ya7{bottom:264.735260px;}
.ye4{bottom:264.874809px;}
.y1d1{bottom:266.420678px;}
.y212{bottom:266.739446px;}
.y33{bottom:268.221291px;}
.y16d{bottom:274.072343px;}
.y14a{bottom:274.764295px;}
.y1d0{bottom:281.414678px;}
.y211{bottom:281.733446px;}
.y64{bottom:282.165298px;}
.y19b{bottom:282.294296px;}
.y24{bottom:282.961349px;}
.ya6{bottom:283.485260px;}
.ye3{bottom:283.624809px;}
.y32{bottom:293.234392px;}
.y149{bottom:293.481295px;}
.y1cf{bottom:296.408678px;}
.y210{bottom:296.727446px;}
.y63{bottom:300.915298px;}
.y19a{bottom:301.044296px;}
.y23{bottom:301.711349px;}
.y16c{bottom:302.160593px;}
.ya5{bottom:302.235260px;}
.yc4{bottom:302.241146px;}
.ye2{bottom:302.374809px;}
.y31{bottom:308.228392px;}
.y1ce{bottom:311.402678px;}
.y16b{bottom:311.582843px;}
.y20f{bottom:311.721446px;}
.y148{bottom:312.198295px;}
.y167{bottom:317.408092px;}
.y62{bottom:319.665298px;}
.y199{bottom:319.794296px;}
.y22{bottom:320.461349px;}
.yc3{bottom:320.985146px;}
.ya4{bottom:320.985260px;}
.ye1{bottom:321.124809px;}
.y1cd{bottom:326.396678px;}
.y16a{bottom:326.576843px;}
.y20e{bottom:326.715446px;}
.y166{bottom:332.402092px;}
.y61{bottom:338.415298px;}
.y30{bottom:339.045142px;}
.ya3{bottom:339.735260px;}
.ye0{bottom:339.874809px;}
.y147{bottom:340.286545px;}
.y1cc{bottom:341.390678px;}
.y20d{bottom:341.709446px;}
.y2f{bottom:354.039142px;}
.y1cb{bottom:356.384678px;}
.y20c{bottom:356.703446px;}
.y60{bottom:357.165298px;}
.y198{bottom:357.294296px;}
.y21{bottom:357.961349px;}
.yc2{bottom:358.485168px;}
.ya2{bottom:358.485260px;}
.y100{bottom:358.624809px;}
.y146{bottom:364.699059px;}
.y2e{bottom:369.033142px;}
.y1ca{bottom:371.378678px;}
.y20b{bottom:371.697446px;}
.y5f{bottom:375.915298px;}
.yc1{bottom:377.235168px;}
.ya1{bottom:377.235260px;}
.y162{bottom:377.235306px;}
.ydf{bottom:377.374809px;}
.y1c9{bottom:386.372678px;}
.y20a{bottom:386.691446px;}
.y145{bottom:389.411545px;}
.y5e{bottom:394.665298px;}
.yc0{bottom:395.985168px;}
.ya0{bottom:395.985260px;}
.y161{bottom:395.985306px;}
.yff{bottom:396.124809px;}
.y1c8{bottom:401.366678px;}
.y209{bottom:401.685446px;}
.y5d{bottom:413.415298px;}
.y197{bottom:413.544342px;}
.y20{bottom:414.211395px;}
.ybf{bottom:414.735168px;}
.y9f{bottom:414.735260px;}
.y160{bottom:414.735306px;}
.yfe{bottom:414.874809px;}
.y141{bottom:414.948774px;}
.y1c7{bottom:416.360678px;}
.y208{bottom:416.679446px;}
.y1c6{bottom:431.354678px;}
.y207{bottom:431.673446px;}
.y5c{bottom:432.165298px;}
.y196{bottom:432.294342px;}
.y1f{bottom:432.961395px;}
.ybe{bottom:433.485168px;}
.y9e{bottom:433.485260px;}
.y15f{bottom:433.485306px;}
.yde{bottom:433.624786px;}
.yfd{bottom:433.624809px;}
.y1c5{bottom:446.348678px;}
.y206{bottom:446.667446px;}
.y5b{bottom:450.915298px;}
.y195{bottom:451.044342px;}
.ybd{bottom:452.235168px;}
.y9d{bottom:452.235260px;}
.y15e{bottom:452.235306px;}
.ydd{bottom:452.374786px;}
.yfc{bottom:452.374809px;}
.y1c4{bottom:461.342678px;}
.y205{bottom:461.661446px;}
.y7a{bottom:469.665298px;}
.y194{bottom:469.794342px;}
.y114{bottom:469.933823px;}
.y1e{bottom:470.461395px;}
.ybc{bottom:470.985168px;}
.y9c{bottom:470.985260px;}
.y15d{bottom:470.985306px;}
.y121{bottom:471.118823px;}
.ydc{bottom:471.124786px;}
.yfb{bottom:471.124809px;}
.y1c3{bottom:476.336678px;}
.y204{bottom:476.655446px;}
.y5a{bottom:488.415298px;}
.y193{bottom:488.544342px;}
.y113{bottom:488.683823px;}
.y1d{bottom:489.211395px;}
.ybb{bottom:489.735168px;}
.y9b{bottom:489.735260px;}
.y15c{bottom:489.735306px;}
.y120{bottom:489.868823px;}
.ydb{bottom:489.874786px;}
.yfa{bottom:489.874809px;}
.y1c2{bottom:491.330678px;}
.y203{bottom:491.649446px;}
.y1c1{bottom:506.324678px;}
.y202{bottom:506.643446px;}
.y79{bottom:507.165298px;}
.y192{bottom:507.294342px;}
.y112{bottom:507.433823px;}
.y1c{bottom:507.961395px;}
.yba{bottom:508.485168px;}
.y9a{bottom:508.485260px;}
.y15b{bottom:508.485306px;}
.y11f{bottom:508.618823px;}
.yda{bottom:508.624786px;}
.yf9{bottom:508.624809px;}
.y1c0{bottom:521.318678px;}
.y201{bottom:521.637446px;}
.y59{bottom:525.915298px;}
.y191{bottom:526.044342px;}
.y111{bottom:526.183823px;}
.y1b{bottom:526.711395px;}
.yb9{bottom:527.235168px;}
.y99{bottom:527.235260px;}
.y15a{bottom:527.235306px;}
.y11e{bottom:527.368823px;}
.yd9{bottom:527.374786px;}
.yf8{bottom:527.374809px;}
.y1bf{bottom:536.312678px;}
.y200{bottom:536.631446px;}
.y78{bottom:544.665298px;}
.y190{bottom:544.794342px;}
.y110{bottom:544.933823px;}
.y1a{bottom:545.461395px;}
.y98{bottom:545.985260px;}
.y159{bottom:545.985306px;}
.y11d{bottom:546.118823px;}
.yd8{bottom:546.124786px;}
.yf7{bottom:546.124809px;}
.y1be{bottom:551.306678px;}
.y1ff{bottom:551.625446px;}
.y77{bottom:563.415298px;}
.y18f{bottom:563.544342px;}
.y10f{bottom:563.683823px;}
.y19{bottom:564.211395px;}
.yb8{bottom:564.735168px;}
.y97{bottom:564.735260px;}
.y158{bottom:564.735306px;}
.y11c{bottom:564.868823px;}
.yd7{bottom:564.874786px;}
.yf6{bottom:564.874809px;}
.y1bd{bottom:566.300678px;}
.y1fe{bottom:566.619446px;}
.y1bc{bottom:581.294678px;}
.y1fd{bottom:581.613446px;}
.y76{bottom:582.165298px;}
.y58{bottom:582.165344px;}
.y18e{bottom:582.294342px;}
.y10e{bottom:582.433823px;}
.y18{bottom:582.961395px;}
.y96{bottom:583.485260px;}
.y157{bottom:583.485306px;}
.y11b{bottom:583.618823px;}
.yd6{bottom:583.624786px;}
.yf5{bottom:583.624809px;}
.y1fc{bottom:596.607446px;}
.y75{bottom:600.915298px;}
.y57{bottom:600.915344px;}
.y18d{bottom:601.044342px;}
.y10d{bottom:601.183823px;}
.y17{bottom:601.711395px;}
.yb7{bottom:602.235168px;}
.y95{bottom:602.235260px;}
.y156{bottom:602.235306px;}
.y11a{bottom:602.368823px;}
.yd5{bottom:602.374786px;}
.yf4{bottom:602.374809px;}
.y1fb{bottom:611.601446px;}
.y1bb{bottom:615.044678px;}
.y74{bottom:619.665298px;}
.y56{bottom:619.665344px;}
.y18c{bottom:619.794342px;}
.y10c{bottom:619.933823px;}
.y16{bottom:620.461395px;}
.y94{bottom:620.985260px;}
.y155{bottom:620.985306px;}
.y119{bottom:621.118823px;}
.yd4{bottom:621.124786px;}
.yf3{bottom:621.124809px;}
.y1fa{bottom:626.595446px;}
.y73{bottom:638.415298px;}
.y55{bottom:638.415344px;}
.y18b{bottom:638.544342px;}
.y10b{bottom:638.683823px;}
.y15{bottom:639.211395px;}
.y93{bottom:639.735260px;}
.y154{bottom:639.735306px;}
.y118{bottom:639.868823px;}
.yd3{bottom:639.874786px;}
.yf2{bottom:639.874809px;}
.y1f9{bottom:641.589446px;}
.y1f8{bottom:656.583446px;}
.y72{bottom:657.165298px;}
.y54{bottom:657.165344px;}
.y18a{bottom:657.294342px;}
.y14{bottom:657.961395px;}
.yb6{bottom:658.485168px;}
.y92{bottom:658.485260px;}
.y153{bottom:658.485306px;}
.y117{bottom:658.618823px;}
.yd2{bottom:658.624786px;}
.yf1{bottom:658.624809px;}
.y1ba{bottom:671.364296px;}
.y1f7{bottom:671.577446px;}
.y53{bottom:675.915344px;}
.y189{bottom:676.044342px;}
.y10a{bottom:676.189823px;}
.y13{bottom:676.711395px;}
.yb5{bottom:677.235168px;}
.y91{bottom:677.235260px;}
.y152{bottom:677.235306px;}
.y116{bottom:677.368823px;}
.yd1{bottom:677.374786px;}
.yf0{bottom:677.374809px;}
.y1b9{bottom:686.358296px;}
.y1f6{bottom:686.571446px;}
.y71{bottom:694.665298px;}
.y52{bottom:694.665344px;}
.y188{bottom:694.794342px;}
.y109{bottom:694.933823px;}
.y12{bottom:695.461395px;}
.yb4{bottom:695.985168px;}
.y90{bottom:695.985260px;}
.y151{bottom:695.985306px;}
.y115{bottom:696.118823px;}
.yd0{bottom:696.124786px;}
.yef{bottom:696.124809px;}
.y1b8{bottom:701.352296px;}
.y1f5{bottom:701.565446px;}
.y51{bottom:713.415344px;}
.y187{bottom:713.544342px;}
.y11{bottom:714.211395px;}
.yb3{bottom:714.735168px;}
.y8f{bottom:714.735260px;}
.y150{bottom:714.735306px;}
.ycf{bottom:714.874786px;}
.yee{bottom:714.874809px;}
.y1b7{bottom:716.346296px;}
.y1f4{bottom:716.559446px;}
.y1b6{bottom:731.340296px;}
.y1f3{bottom:731.553446px;}
.y50{bottom:732.165344px;}
.y186{bottom:732.294342px;}
.y10{bottom:732.961395px;}
.yb2{bottom:733.485168px;}
.y8e{bottom:733.485260px;}
.y14f{bottom:733.485306px;}
.yce{bottom:733.624786px;}
.yed{bottom:733.624809px;}
.y1b5{bottom:746.334296px;}
.y1f2{bottom:746.547446px;}
.y140{bottom:748.093524px;}
.y4f{bottom:750.915344px;}
.y185{bottom:751.044342px;}
.yf{bottom:751.711395px;}
.yb1{bottom:752.235168px;}
.y8d{bottom:752.235260px;}
.y1b4{bottom:761.328296px;}
.y1f1{bottom:761.541446px;}
.y13f{bottom:763.087524px;}
.y4e{bottom:769.665344px;}
.y184{bottom:769.794342px;}
.ye{bottom:770.461395px;}
.y8c{bottom:770.985260px;}
.y1b3{bottom:776.322296px;}
.y1f0{bottom:776.535446px;}
.y13e{bottom:781.881024px;}
.y4d{bottom:788.415344px;}
.y183{bottom:788.544342px;}
.yd{bottom:789.211395px;}
.yb0{bottom:789.735168px;}
.y8b{bottom:789.735260px;}
.y1b2{bottom:791.316296px;}
.y1ef{bottom:791.529446px;}
.y13d{bottom:796.875024px;}
.y1b1{bottom:806.310296px;}
.y1ee{bottom:806.523446px;}
.y4c{bottom:807.165344px;}
.y182{bottom:807.294342px;}
.y8a{bottom:808.485260px;}
.y13c{bottom:815.592024px;}
.y1b0{bottom:821.304296px;}
.y1ed{bottom:821.517446px;}
.y4b{bottom:825.915344px;}
.y181{bottom:826.044342px;}
.y89{bottom:827.235260px;}
.y13b{bottom:830.586024px;}
.yc{bottom:833.394153px;}
.y1af{bottom:836.298296px;}
.y1ec{bottom:836.511446px;}
.y4a{bottom:844.665344px;}
.y180{bottom:844.794342px;}
.y88{bottom:845.985260px;}
.yb{bottom:848.388153px;}
.y13a{bottom:849.303024px;}
.y1eb{bottom:851.505446px;}
.y49{bottom:863.415344px;}
.y17f{bottom:863.544342px;}
.y87{bottom:864.735260px;}
.y1ea{bottom:866.499446px;}
.y139{bottom:868.020024px;}
.y1ae{bottom:870.009296px;}
.y1e9{bottom:881.493446px;}
.y48{bottom:882.165344px;}
.y17e{bottom:882.294342px;}
.y86{bottom:883.485260px;}
.y1ad{bottom:885.003296px;}
.y138{bottom:886.737024px;}
.ya{bottom:890.988190px;}
.y1e8{bottom:896.487446px;}
.y47{bottom:900.915344px;}
.y17d{bottom:901.044342px;}
.y85{bottom:902.235260px;}
.y137{bottom:905.454024px;}
.y9{bottom:909.738190px;}
.y1e7{bottom:911.481446px;}
.y1ac{bottom:918.753296px;}
.y46{bottom:919.665344px;}
.y17c{bottom:919.794342px;}
.y84{bottom:920.985260px;}
.y136{bottom:924.171024px;}
.y1e6{bottom:926.475446px;}
.y45{bottom:938.415344px;}
.y17b{bottom:938.544342px;}
.y83{bottom:939.735260px;}
.y1e5{bottom:941.469446px;}
.y12c{bottom:942.849774px;}
.y8{bottom:954.424622px;}
.y1ab{bottom:956.283325px;}
.y1e4{bottom:956.463446px;}
.y44{bottom:957.165344px;}
.y17a{bottom:957.294342px;}
.y128{bottom:957.831024px;}
.y12b{bottom:957.843774px;}
.y12f{bottom:957.856524px;}
.y132{bottom:957.869274px;}
.y135{bottom:957.882024px;}
.y82{bottom:958.485260px;}
.y1e3{bottom:971.457446px;}
.y127{bottom:972.825024px;}
.y12a{bottom:972.837774px;}
.y12e{bottom:972.850524px;}
.y131{bottom:972.863274px;}
.y134{bottom:972.876024px;}
.y1aa{bottom:975.033325px;}
.y43{bottom:975.915344px;}
.y179{bottom:976.044342px;}
.y81{bottom:977.235260px;}
.y7{bottom:981.424622px;}
.y1e2{bottom:986.451446px;}
.y126{bottom:987.819024px;}
.y129{bottom:987.831774px;}
.y12d{bottom:987.844524px;}
.y130{bottom:987.857274px;}
.y133{bottom:987.870024px;}
.y1a9{bottom:993.783325px;}
.y42{bottom:994.665344px;}
.y178{bottom:994.794342px;}
.y80{bottom:995.985260px;}
.y1e1{bottom:1001.445446px;}
.y125{bottom:1006.536024px;}
.y6{bottom:1008.424622px;}
.y1a8{bottom:1012.533325px;}
.y41{bottom:1013.415344px;}
.y177{bottom:1013.544342px;}
.y7f{bottom:1014.735260px;}
.y106{bottom:1015.132844px;}
.y1e0{bottom:1016.439446px;}
.y124{bottom:1021.530024px;}
.y105{bottom:1030.126844px;}
.y220{bottom:1031.248823px;}
.y225{bottom:1031.274321px;}
.y1a7{bottom:1031.283325px;}
.y1df{bottom:1031.433446px;}
.y40{bottom:1032.165344px;}
.y176{bottom:1032.294342px;}
.y7e{bottom:1033.485260px;}
.y104{bottom:1045.120844px;}
.y21f{bottom:1046.242823px;}
.y224{bottom:1046.268321px;}
.y1de{bottom:1046.427446px;}
.y123{bottom:1049.618274px;}
.y1a6{bottom:1050.033325px;}
.y70{bottom:1050.915298px;}
.y3f{bottom:1050.915344px;}
.y175{bottom:1051.044342px;}
.y7d{bottom:1052.235260px;}
.y165{bottom:1052.235306px;}
.y103{bottom:1060.114844px;}
.y21e{bottom:1061.236823px;}
.y223{bottom:1061.262321px;}
.y1dd{bottom:1061.421446px;}
.y122{bottom:1064.612274px;}
.y6f{bottom:1069.665298px;}
.y3e{bottom:1069.665344px;}
.y7c{bottom:1070.985260px;}
.y164{bottom:1070.985306px;}
.y102{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y21d{bottom:1076.230823px;}
.y222{bottom:1076.256321px;}
.y1dc{bottom:1076.415446px;}
.y1a5{bottom:1087.533325px;}
.y6e{bottom:1088.415298px;}
.y3d{bottom:1088.415344px;}
.y174{bottom:1088.544342px;}
.y7b{bottom:1089.735260px;}
.y163{bottom:1089.735306px;}
.y101{bottom:1090.102844px;}
.y21c{bottom:1091.224823px;}
.y221{bottom:1091.250321px;}
.y1db{bottom:1091.409446px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3c{bottom:1127.482361px;}
.hf{height:25.204199px;}
.hd{height:36.006000px;}
.he{height:36.855469px;}
.h2{height:42.048000px;}
.ha{height:42.360000px;}
.h4{height:44.676000px;}
.h13{height:45.580254px;}
.h11{height:45.604163px;}
.h12{height:46.804144px;}
.hc{height:49.113000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.h9{height:57.780000px;}
.h8{height:59.340000px;}
.h10{height:64.680000px;}
.h7{height:64.824000px;}
.hb{height:71.208000px;}
.h6{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545402px;}
.x7{left:97.796100px;}
.x1c{left:102.048152px;}
.xe{left:184.910414px;}
.xf{left:193.911926px;}
.x17{left:213.204300px;}
.x18{left:267.874652px;}
.x10{left:293.145176px;}
.x11{left:302.146676px;}
.x12{left:370.818176px;}
.x19{left:412.662894px;}
.xa{left:442.256402px;}
.x13{left:451.257926px;}
.x5{left:459.212723px;}
.x6{left:476.222709px;}
.x1d{left:484.726652px;}
.x1a{left:503.621391px;}
.xb{left:549.930148px;}
.x14{left:558.931674px;}
.x1b{left:600.329086px;}
.xc{left:637.305898px;}
.x15{left:646.307422px;}
.x1{left:728.220612px;}
.xd{left:744.699148px;}
.x16{left:753.713422px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.088000pt;}
.v3{vertical-align:18.133301pt;}
.v1{vertical-align:21.333333pt;}
.ls2e{letter-spacing:-0.373333pt;}
.ls61{letter-spacing:-0.362667pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls5a{letter-spacing:-0.317333pt;}
.ls5c{letter-spacing:-0.272000pt;}
.ls29{letter-spacing:-0.266667pt;}
.ls5f{letter-spacing:-0.226667pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls5b{letter-spacing:-0.181333pt;}
.ls28{letter-spacing:-0.160000pt;}
.ls5e{letter-spacing:-0.136000pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls5d{letter-spacing:-0.090667pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls60{letter-spacing:-0.045333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls30{letter-spacing:0.026667pt;}
.ls43{letter-spacing:0.045333pt;}
.ls20{letter-spacing:0.053333pt;}
.ls31{letter-spacing:0.080000pt;}
.ls46{letter-spacing:0.090667pt;}
.ls7{letter-spacing:0.106667pt;}
.ls37{letter-spacing:0.133333pt;}
.ls49{letter-spacing:0.136000pt;}
.ls48{letter-spacing:0.158667pt;}
.lsd{letter-spacing:0.158926pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.204000pt;}
.ls2{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.226667pt;}
.ls42{letter-spacing:0.234667pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls47{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.271958pt;}
.ls54{letter-spacing:0.272000pt;}
.ls35{letter-spacing:0.293333pt;}
.ls4d{letter-spacing:0.294667pt;}
.ls44{letter-spacing:0.317333pt;}
.ls21{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.346667pt;}
.ls1d{letter-spacing:0.373333pt;}
.ls52{letter-spacing:0.385333pt;}
.ls25{letter-spacing:0.400000pt;}
.ls45{letter-spacing:0.408000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.474646pt;}
.ls19{letter-spacing:0.480000pt;}
.ls4e{letter-spacing:0.498667pt;}
.ls2f{letter-spacing:0.506667pt;}
.ls3{letter-spacing:0.533333pt;}
.ls59{letter-spacing:0.544000pt;}
.ls2c{letter-spacing:0.560000pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls51{letter-spacing:0.589333pt;}
.lsa{letter-spacing:0.613333pt;}
.ls56{letter-spacing:0.634667pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.666667pt;}
.ls4c{letter-spacing:0.680000pt;}
.ls6{letter-spacing:0.693333pt;}
.ls4{letter-spacing:0.720000pt;}
.ls4f{letter-spacing:0.725333pt;}
.ls9{letter-spacing:0.746667pt;}
.ls4b{letter-spacing:0.770667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls34{letter-spacing:0.826667pt;}
.ls58{letter-spacing:0.838667pt;}
.ls18{letter-spacing:0.853333pt;}
.ls53{letter-spacing:0.861333pt;}
.ls15{letter-spacing:0.906667pt;}
.ls55{letter-spacing:0.952000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls3a{letter-spacing:1.040000pt;}
.ls24{letter-spacing:1.066667pt;}
.ls33{letter-spacing:1.120000pt;}
.ls38{letter-spacing:1.146667pt;}
.ls3f{letter-spacing:1.173312pt;}
.ls26{letter-spacing:1.173333pt;}
.ls1f{letter-spacing:1.226667pt;}
.ls22{letter-spacing:1.280000pt;}
.ls3d{letter-spacing:1.333333pt;}
.ls32{letter-spacing:1.386667pt;}
.ls1a{letter-spacing:1.440000pt;}
.ls3e{letter-spacing:1.493333pt;}
.ls17{letter-spacing:1.520000pt;}
.ls50{letter-spacing:1.541333pt;}
.ls27{letter-spacing:1.546667pt;}
.lsc{letter-spacing:1.600000pt;}
.ls2d{letter-spacing:1.653333pt;}
.ls41{letter-spacing:1.706667pt;}
.ls3b{letter-spacing:1.813333pt;}
.ls4a{letter-spacing:1.858667pt;}
.ls3c{letter-spacing:1.973333pt;}
.ls39{letter-spacing:2.240000pt;}
.ls0{letter-spacing:3.546667pt;}
.ws25{word-spacing:-14.293333pt;}
.ws43{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.333333pt;}
.ws81{word-spacing:-13.184000pt;}
.ws9{word-spacing:-12.928000pt;}
.ws8b{word-spacing:-11.560000pt;}
.ws22{word-spacing:-11.333333pt;}
.ws61{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws5{word-spacing:-10.773333pt;}
.ws8{word-spacing:-10.240000pt;}
.ws6{word-spacing:-10.186667pt;}
.ws79{word-spacing:-9.429333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.wsb{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.wsf{word-spacing:-2.133333pt;}
.wsc{word-spacing:-1.680000pt;}
.ws13{word-spacing:-1.333333pt;}
.ws18{word-spacing:-1.280000pt;}
.ws32{word-spacing:-1.226667pt;}
.ws4b{word-spacing:-1.173333pt;}
.ws85{word-spacing:-1.133333pt;}
.ws4c{word-spacing:-1.066667pt;}
.ws39{word-spacing:-1.013333pt;}
.ws9a{word-spacing:-0.997333pt;}
.ws57{word-spacing:-0.960000pt;}
.ws88{word-spacing:-0.952000pt;}
.ws5e{word-spacing:-0.906667pt;}
.ws84{word-spacing:-0.861333pt;}
.ws38{word-spacing:-0.853333pt;}
.ws1a{word-spacing:-0.800000pt;}
.ws77{word-spacing:-0.693333pt;}
.ws89{word-spacing:-0.680000pt;}
.ws12{word-spacing:-0.640000pt;}
.ws8a{word-spacing:-0.634667pt;}
.ws17{word-spacing:-0.586667pt;}
.ws24{word-spacing:-0.544000pt;}
.ws3f{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.506667pt;}
.ws51{word-spacing:-0.480000pt;}
.ws49{word-spacing:-0.426667pt;}
.ws9e{word-spacing:-0.408000pt;}
.ws55{word-spacing:-0.373333pt;}
.ws30{word-spacing:-0.320000pt;}
.ws1f{word-spacing:-0.266667pt;}
.ws8f{word-spacing:-0.226667pt;}
.ws15{word-spacing:-0.213333pt;}
.wsa2{word-spacing:-0.181333pt;}
.ws28{word-spacing:-0.160000pt;}
.ws4a{word-spacing:-0.106667pt;}
.ws7{word-spacing:-0.053333pt;}
.wsd{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.053333pt;}
.ws1b{word-spacing:0.106667pt;}
.ws2a{word-spacing:0.160000pt;}
.ws7d{word-spacing:0.213333pt;}
.ws14{word-spacing:0.266667pt;}
.ws82{word-spacing:0.317333pt;}
.ws1e{word-spacing:0.320000pt;}
.ws83{word-spacing:0.408000pt;}
.ws72{word-spacing:0.426667pt;}
.ws97{word-spacing:0.453333pt;}
.ws74{word-spacing:0.480000pt;}
.ws95{word-spacing:0.498667pt;}
.ws91{word-spacing:0.589333pt;}
.ws56{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.693333pt;}
.ws45{word-spacing:0.746667pt;}
.ws4f{word-spacing:0.800000pt;}
.ws9d{word-spacing:0.816000pt;}
.ws75{word-spacing:0.853333pt;}
.wsa5{word-spacing:0.861333pt;}
.ws21{word-spacing:0.960000pt;}
.ws52{word-spacing:1.013333pt;}
.ws86{word-spacing:1.042667pt;}
.ws71{word-spacing:1.066667pt;}
.ws11{word-spacing:1.120000pt;}
.ws87{word-spacing:1.133333pt;}
.ws46{word-spacing:1.173333pt;}
.ws93{word-spacing:1.178667pt;}
.ws9b{word-spacing:1.224000pt;}
.ws48{word-spacing:1.226667pt;}
.ws94{word-spacing:1.269333pt;}
.ws3c{word-spacing:1.280000pt;}
.ws19{word-spacing:1.333333pt;}
.wsa3{word-spacing:1.360000pt;}
.ws5a{word-spacing:1.386667pt;}
.ws3b{word-spacing:1.440000pt;}
.ws16{word-spacing:1.493333pt;}
.ws99{word-spacing:1.541333pt;}
.ws3d{word-spacing:1.546667pt;}
.ws10{word-spacing:1.600000pt;}
.ws1d{word-spacing:1.653333pt;}
.ws4d{word-spacing:1.706667pt;}
.ws73{word-spacing:1.760000pt;}
.ws8c{word-spacing:1.768000pt;}
.ws5b{word-spacing:1.813333pt;}
.wsa0{word-spacing:1.858667pt;}
.ws53{word-spacing:1.866667pt;}
.ws4e{word-spacing:1.920000pt;}
.ws8e{word-spacing:1.949333pt;}
.ws26{word-spacing:1.973333pt;}
.ws40{word-spacing:2.026667pt;}
.wsa4{word-spacing:2.040000pt;}
.ws44{word-spacing:2.080000pt;}
.wsa1{word-spacing:2.130667pt;}
.ws2c{word-spacing:2.133333pt;}
.ws60{word-spacing:2.176000pt;}
.ws37{word-spacing:2.186667pt;}
.ws58{word-spacing:2.240000pt;}
.ws9c{word-spacing:2.266667pt;}
.ws7f{word-spacing:2.293333pt;}
.ws5c{word-spacing:2.346667pt;}
.ws7a{word-spacing:2.453333pt;}
.ws9f{word-spacing:2.493333pt;}
.ws27{word-spacing:2.506667pt;}
.ws5f{word-spacing:2.560000pt;}
.ws96{word-spacing:2.584000pt;}
.ws29{word-spacing:2.613333pt;}
.ws35{word-spacing:2.666667pt;}
.ws80{word-spacing:2.720000pt;}
.ws92{word-spacing:2.765333pt;}
.ws3e{word-spacing:2.773333pt;}
.ws59{word-spacing:2.826667pt;}
.ws2e{word-spacing:2.986667pt;}
.ws98{word-spacing:2.992000pt;}
.ws6e{word-spacing:3.146667pt;}
.ws31{word-spacing:3.200000pt;}
.ws47{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.306667pt;}
.ws36{word-spacing:3.360000pt;}
.ws6d{word-spacing:3.466667pt;}
.ws7c{word-spacing:3.626667pt;}
.ws76{word-spacing:3.680000pt;}
.ws54{word-spacing:3.733333pt;}
.ws41{word-spacing:4.000000pt;}
.ws7b{word-spacing:4.106667pt;}
.ws2f{word-spacing:4.160000pt;}
.ws33{word-spacing:4.266667pt;}
.ws34{word-spacing:4.426667pt;}
.ws6f{word-spacing:5.013333pt;}
.ws6c{word-spacing:5.066667pt;}
.ws2d{word-spacing:5.280000pt;}
.ws78{word-spacing:5.493333pt;}
.ws2b{word-spacing:5.600000pt;}
.ws42{word-spacing:5.653333pt;}
.ws90{word-spacing:5.984000pt;}
.ws20{word-spacing:6.026667pt;}
.ws7e{word-spacing:6.080000pt;}
.ws50{word-spacing:6.293333pt;}
.ws8d{word-spacing:7.570667pt;}
.ws63{word-spacing:31.144000pt;}
.ws62{word-spacing:43.565333pt;}
.ws23{word-spacing:64.237333pt;}
.ws6b{word-spacing:97.693333pt;}
.ws68{word-spacing:98.237333pt;}
.ws6a{word-spacing:113.514658pt;}
.ws64{word-spacing:163.336000pt;}
.ws65{word-spacing:186.002667pt;}
.ws66{word-spacing:195.205333pt;}
.ws69{word-spacing:215.288000pt;}
.ws70{word-spacing:246.749333pt;}
.ws67{word-spacing:249.288000pt;}
._8{margin-left:-14.733333pt;}
._52{margin-left:-13.192000pt;}
._54{margin-left:-11.152000pt;}
._f{margin-left:-10.016000pt;}
._e{margin-left:-8.853333pt;}
._d{margin-left:-6.933333pt;}
._7{margin-left:-5.029067pt;}
._2{margin-left:-4.109067pt;}
._5{margin-left:-2.637600pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.224000pt;}
._10{width:2.344267pt;}
._c{width:3.600000pt;}
._4f{width:5.984000pt;}
._43{width:9.465112pt;}
._4{width:12.026655pt;}
._11{width:13.872000pt;}
._6{width:14.826667pt;}
._9{width:16.320000pt;}
._51{width:17.589333pt;}
._56{width:18.768000pt;}
._53{width:20.536000pt;}
._55{width:22.213333pt;}
._50{width:23.256000pt;}
._57{width:24.250667pt;}
._4e{width:26.248000pt;}
._3{width:36.068792pt;}
._17{width:42.477333pt;}
._a{width:48.552000pt;}
._16{width:64.645333pt;}
._28{width:90.984000pt;}
._1b{width:92.072000pt;}
._19{width:99.144000pt;}
._37{width:108.210667pt;}
._33{width:110.114657pt;}
._14{width:115.101333pt;}
._3f{width:116.189332pt;}
._32{width:117.503995pt;}
._3a{width:131.965323pt;}
._15{width:139.309333pt;}
._36{width:143.842667pt;}
._3c{width:154.949327pt;}
._3b{width:156.263990pt;}
._48{width:160.525337pt;}
._4a{width:161.975982pt;}
._39{width:166.509333pt;}
._18{width:171.314653pt;}
._26{width:174.170667pt;}
._40{width:177.525330pt;}
._3e{width:178.613319pt;}
._4c{width:184.642648pt;}
._42{width:189.176000pt;}
._1a{width:192.984000pt;}
._1e{width:197.336000pt;}
._29{width:199.149333pt;}
._22{width:208.170667pt;}
._13{width:213.565333pt;}
._3d{width:217.917327pt;}
._1d{width:219.504000pt;}
._20{width:231.336000pt;}
._46{width:232.568271pt;}
._4b{width:247.610648pt;}
._2c{width:254.501319pt;}
._35{width:264.293327pt;}
._2b{width:265.336000pt;}
._30{width:284.887421pt;}
._12{width:289.634667pt;}
._47{width:293.986648pt;}
._27{width:302.509333pt;}
._23{width:303.506653pt;}
._25{width:305.501333pt;}
._31{width:314.658660pt;}
._2f{width:321.243767pt;}
._21{width:325.176000pt;}
._1f{width:326.173319pt;}
._1c{width:328.168000pt;}
._34{width:334.968000pt;}
._24{width:336.509333pt;}
._2a{width:337.506653pt;}
._41{width:341.269327pt;}
._45{width:344.351982pt;}
._38{width:347.389327pt;}
._2d{width:354.965333pt;}
._44{width:383.837333pt;}
._4d{width:393.629315pt;}
._49{width:399.749315pt;}
._2e{width:1155.175536pt;}
._b{width:1815.101333pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y6d{bottom:100.813599pt;}
.y1a4{bottom:100.928263pt;}
.y2d{bottom:101.521200pt;}
.ycd{bottom:101.986796pt;}
.yaf{bottom:101.986898pt;}
.yec{bottom:102.110942pt;}
.y3b{bottom:104.917603pt;}
.y169{bottom:105.792938pt;}
.y1da{bottom:116.866380pt;}
.y21b{bottom:117.149730pt;}
.y6c{bottom:117.480265pt;}
.y1a3{bottom:117.594930pt;}
.y2c{bottom:118.187866pt;}
.y168{bottom:118.373862pt;}
.ycc{bottom:118.653463pt;}
.yae{bottom:118.653564pt;}
.yeb{bottom:118.777608pt;}
.y144{bottom:118.812936pt;}
.y108{bottom:119.214938pt;}
.y3a{bottom:120.431603pt;}
.y1d9{bottom:130.194380pt;}
.y21a{bottom:130.477730pt;}
.y107{bottom:132.542938pt;}
.y6b{bottom:134.146932pt;}
.y1a2{bottom:134.261597pt;}
.y2b{bottom:134.854533pt;}
.ycb{bottom:135.320129pt;}
.yad{bottom:135.320231pt;}
.yea{bottom:135.444275pt;}
.y39{bottom:138.292938pt;}
.y143{bottom:140.459605pt;}
.y1d8{bottom:143.522380pt;}
.y173{bottom:143.727861pt;}
.y219{bottom:143.805730pt;}
.y6a{bottom:150.813599pt;}
.y1a1{bottom:150.928263pt;}
.y2a{bottom:151.521200pt;}
.yca{bottom:151.986796pt;}
.yac{bottom:151.986898pt;}
.ye9{bottom:152.110942pt;}
.y1d7{bottom:156.850380pt;}
.y218{bottom:157.133730pt;}
.y142{bottom:157.572398pt;}
.y38{bottom:158.334930pt;}
.y172{bottom:160.433194pt;}
.y69{bottom:167.480265pt;}
.y1a0{bottom:167.594930pt;}
.y29{bottom:168.187866pt;}
.yc9{bottom:168.653463pt;}
.yab{bottom:168.653564pt;}
.ye8{bottom:168.777608pt;}
.y1d6{bottom:170.178380pt;}
.y217{bottom:170.461730pt;}
.y37{bottom:173.848941pt;}
.y171{bottom:177.070527pt;}
.y14e{bottom:177.617595pt;}
.y1d5{bottom:183.506380pt;}
.y216{bottom:183.789730pt;}
.y68{bottom:184.146932pt;}
.y19f{bottom:184.261597pt;}
.y28{bottom:184.854533pt;}
.yc8{bottom:185.320129pt;}
.yaa{bottom:185.320231pt;}
.ye7{bottom:185.444275pt;}
.y36{bottom:191.710266pt;}
.y170{bottom:193.707861pt;}
.y14d{bottom:194.322929pt;}
.y1d4{bottom:196.834380pt;}
.y215{bottom:197.117730pt;}
.y67{bottom:200.813599pt;}
.y19e{bottom:200.928263pt;}
.y27{bottom:201.521200pt;}
.yc7{bottom:201.986796pt;}
.ya9{bottom:201.986898pt;}
.ye6{bottom:202.110942pt;}
.y35{bottom:207.229600pt;}
.y1d3{bottom:210.162380pt;}
.y16f{bottom:210.345194pt;}
.y214{bottom:210.445730pt;}
.y14c{bottom:210.960262pt;}
.y66{bottom:217.480265pt;}
.y19d{bottom:217.594930pt;}
.y26{bottom:218.187866pt;}
.yc6{bottom:218.653463pt;}
.ya8{bottom:218.653564pt;}
.ye5{bottom:218.777608pt;}
.y34{bottom:220.557600pt;}
.y1d2{bottom:223.490380pt;}
.y213{bottom:223.773730pt;}
.y16e{bottom:226.982527pt;}
.y14b{bottom:227.597595pt;}
.y65{bottom:234.146932pt;}
.y19c{bottom:234.261597pt;}
.y25{bottom:234.854533pt;}
.yc5{bottom:235.320129pt;}
.ya7{bottom:235.320231pt;}
.ye4{bottom:235.444275pt;}
.y1d1{bottom:236.818380pt;}
.y212{bottom:237.101730pt;}
.y33{bottom:238.418925pt;}
.y16d{bottom:243.619861pt;}
.y14a{bottom:244.234929pt;}
.y1d0{bottom:250.146380pt;}
.y211{bottom:250.429730pt;}
.y64{bottom:250.813599pt;}
.y19b{bottom:250.928263pt;}
.y24{bottom:251.521200pt;}
.ya6{bottom:251.986898pt;}
.ye3{bottom:252.110942pt;}
.y32{bottom:260.652793pt;}
.y149{bottom:260.872262pt;}
.y1cf{bottom:263.474380pt;}
.y210{bottom:263.757730pt;}
.y63{bottom:267.480265pt;}
.y19a{bottom:267.594930pt;}
.y23{bottom:268.187866pt;}
.y16c{bottom:268.587194pt;}
.ya5{bottom:268.653564pt;}
.yc4{bottom:268.658796pt;}
.ye2{bottom:268.777608pt;}
.y31{bottom:273.980793pt;}
.y1ce{bottom:276.802380pt;}
.y16b{bottom:276.962527pt;}
.y20f{bottom:277.085730pt;}
.y148{bottom:277.509595pt;}
.y167{bottom:282.140526pt;}
.y62{bottom:284.146932pt;}
.y199{bottom:284.261597pt;}
.y22{bottom:284.854533pt;}
.yc3{bottom:285.320129pt;}
.ya4{bottom:285.320231pt;}
.ye1{bottom:285.444275pt;}
.y1cd{bottom:290.130380pt;}
.y16a{bottom:290.290527pt;}
.y20e{bottom:290.413730pt;}
.y166{bottom:295.468526pt;}
.y61{bottom:300.813599pt;}
.y30{bottom:301.373460pt;}
.ya3{bottom:301.986898pt;}
.ye0{bottom:302.110942pt;}
.y147{bottom:302.476929pt;}
.y1cc{bottom:303.458380pt;}
.y20d{bottom:303.741730pt;}
.y2f{bottom:314.701460pt;}
.y1cb{bottom:316.786380pt;}
.y20c{bottom:317.069730pt;}
.y60{bottom:317.480265pt;}
.y198{bottom:317.594930pt;}
.y21{bottom:318.187866pt;}
.yc2{bottom:318.653483pt;}
.ya2{bottom:318.653564pt;}
.y100{bottom:318.777608pt;}
.y146{bottom:324.176941pt;}
.y2e{bottom:328.029460pt;}
.y1ca{bottom:330.114380pt;}
.y20b{bottom:330.397730pt;}
.y5f{bottom:334.146932pt;}
.yc1{bottom:335.320150pt;}
.ya1{bottom:335.320231pt;}
.y162{bottom:335.320272pt;}
.ydf{bottom:335.444275pt;}
.y1c9{bottom:343.442380pt;}
.y20a{bottom:343.725730pt;}
.y145{bottom:346.143595pt;}
.y5e{bottom:350.813599pt;}
.yc0{bottom:351.986816pt;}
.ya0{bottom:351.986898pt;}
.y161{bottom:351.986938pt;}
.yff{bottom:352.110942pt;}
.y1c8{bottom:356.770380pt;}
.y209{bottom:357.053730pt;}
.y5d{bottom:367.480265pt;}
.y197{bottom:367.594971pt;}
.y20{bottom:368.187907pt;}
.ybf{bottom:368.653483pt;}
.y9f{bottom:368.653564pt;}
.y160{bottom:368.653605pt;}
.yfe{bottom:368.777608pt;}
.y141{bottom:368.843355pt;}
.y1c7{bottom:370.098380pt;}
.y208{bottom:370.381730pt;}
.y1c6{bottom:383.426380pt;}
.y207{bottom:383.709730pt;}
.y5c{bottom:384.146932pt;}
.y196{bottom:384.261637pt;}
.y1f{bottom:384.854574pt;}
.ybe{bottom:385.320150pt;}
.y9e{bottom:385.320231pt;}
.y15f{bottom:385.320272pt;}
.yde{bottom:385.444255pt;}
.yfd{bottom:385.444275pt;}
.y1c5{bottom:396.754380pt;}
.y206{bottom:397.037730pt;}
.y5b{bottom:400.813599pt;}
.y195{bottom:400.928304pt;}
.ybd{bottom:401.986816pt;}
.y9d{bottom:401.986898pt;}
.y15e{bottom:401.986938pt;}
.ydd{bottom:402.110921pt;}
.yfc{bottom:402.110942pt;}
.y1c4{bottom:410.082380pt;}
.y205{bottom:410.365730pt;}
.y7a{bottom:417.480265pt;}
.y194{bottom:417.594971pt;}
.y114{bottom:417.718953pt;}
.y1e{bottom:418.187907pt;}
.ybc{bottom:418.653483pt;}
.y9c{bottom:418.653564pt;}
.y15d{bottom:418.653605pt;}
.y121{bottom:418.772287pt;}
.ydc{bottom:418.777588pt;}
.yfb{bottom:418.777608pt;}
.y1c3{bottom:423.410380pt;}
.y204{bottom:423.693730pt;}
.y5a{bottom:434.146932pt;}
.y193{bottom:434.261637pt;}
.y113{bottom:434.385620pt;}
.y1d{bottom:434.854574pt;}
.ybb{bottom:435.320150pt;}
.y9b{bottom:435.320231pt;}
.y15c{bottom:435.320272pt;}
.y120{bottom:435.438953pt;}
.ydb{bottom:435.444255pt;}
.yfa{bottom:435.444275pt;}
.y1c2{bottom:436.738380pt;}
.y203{bottom:437.021730pt;}
.y1c1{bottom:450.066380pt;}
.y202{bottom:450.349730pt;}
.y79{bottom:450.813599pt;}
.y192{bottom:450.928304pt;}
.y112{bottom:451.052287pt;}
.y1c{bottom:451.521240pt;}
.yba{bottom:451.986816pt;}
.y9a{bottom:451.986898pt;}
.y15b{bottom:451.986938pt;}
.y11f{bottom:452.105620pt;}
.yda{bottom:452.110921pt;}
.yf9{bottom:452.110942pt;}
.y1c0{bottom:463.394380pt;}
.y201{bottom:463.677730pt;}
.y59{bottom:467.480265pt;}
.y191{bottom:467.594971pt;}
.y111{bottom:467.718953pt;}
.y1b{bottom:468.187907pt;}
.yb9{bottom:468.653483pt;}
.y99{bottom:468.653564pt;}
.y15a{bottom:468.653605pt;}
.y11e{bottom:468.772287pt;}
.yd9{bottom:468.777588pt;}
.yf8{bottom:468.777608pt;}
.y1bf{bottom:476.722380pt;}
.y200{bottom:477.005730pt;}
.y78{bottom:484.146932pt;}
.y190{bottom:484.261637pt;}
.y110{bottom:484.385620pt;}
.y1a{bottom:484.854574pt;}
.y98{bottom:485.320231pt;}
.y159{bottom:485.320272pt;}
.y11d{bottom:485.438953pt;}
.yd8{bottom:485.444255pt;}
.yf7{bottom:485.444275pt;}
.y1be{bottom:490.050380pt;}
.y1ff{bottom:490.333730pt;}
.y77{bottom:500.813599pt;}
.y18f{bottom:500.928304pt;}
.y10f{bottom:501.052287pt;}
.y19{bottom:501.521240pt;}
.yb8{bottom:501.986816pt;}
.y97{bottom:501.986898pt;}
.y158{bottom:501.986938pt;}
.y11c{bottom:502.105620pt;}
.yd7{bottom:502.110921pt;}
.yf6{bottom:502.110942pt;}
.y1bd{bottom:503.378380pt;}
.y1fe{bottom:503.661730pt;}
.y1bc{bottom:516.706380pt;}
.y1fd{bottom:516.989730pt;}
.y76{bottom:517.480265pt;}
.y58{bottom:517.480306pt;}
.y18e{bottom:517.594971pt;}
.y10e{bottom:517.718953pt;}
.y18{bottom:518.187907pt;}
.y96{bottom:518.653564pt;}
.y157{bottom:518.653605pt;}
.y11b{bottom:518.772287pt;}
.yd6{bottom:518.777588pt;}
.yf5{bottom:518.777608pt;}
.y1fc{bottom:530.317730pt;}
.y75{bottom:534.146932pt;}
.y57{bottom:534.146973pt;}
.y18d{bottom:534.261637pt;}
.y10d{bottom:534.385620pt;}
.y17{bottom:534.854574pt;}
.yb7{bottom:535.320150pt;}
.y95{bottom:535.320231pt;}
.y156{bottom:535.320272pt;}
.y11a{bottom:535.438953pt;}
.yd5{bottom:535.444255pt;}
.yf4{bottom:535.444275pt;}
.y1fb{bottom:543.645730pt;}
.y1bb{bottom:546.706380pt;}
.y74{bottom:550.813599pt;}
.y56{bottom:550.813639pt;}
.y18c{bottom:550.928304pt;}
.y10c{bottom:551.052287pt;}
.y16{bottom:551.521240pt;}
.y94{bottom:551.986898pt;}
.y155{bottom:551.986938pt;}
.y119{bottom:552.105620pt;}
.yd4{bottom:552.110921pt;}
.yf3{bottom:552.110942pt;}
.y1fa{bottom:556.973730pt;}
.y73{bottom:567.480265pt;}
.y55{bottom:567.480306pt;}
.y18b{bottom:567.594971pt;}
.y10b{bottom:567.718953pt;}
.y15{bottom:568.187907pt;}
.y93{bottom:568.653564pt;}
.y154{bottom:568.653605pt;}
.y118{bottom:568.772287pt;}
.yd3{bottom:568.777588pt;}
.yf2{bottom:568.777608pt;}
.y1f9{bottom:570.301730pt;}
.y1f8{bottom:583.629730pt;}
.y72{bottom:584.146932pt;}
.y54{bottom:584.146973pt;}
.y18a{bottom:584.261637pt;}
.y14{bottom:584.854574pt;}
.yb6{bottom:585.320150pt;}
.y92{bottom:585.320231pt;}
.y153{bottom:585.320272pt;}
.y117{bottom:585.438953pt;}
.yd2{bottom:585.444255pt;}
.yf1{bottom:585.444275pt;}
.y1ba{bottom:596.768263pt;}
.y1f7{bottom:596.957730pt;}
.y53{bottom:600.813639pt;}
.y189{bottom:600.928304pt;}
.y10a{bottom:601.057620pt;}
.y13{bottom:601.521240pt;}
.yb5{bottom:601.986816pt;}
.y91{bottom:601.986898pt;}
.y152{bottom:601.986938pt;}
.y116{bottom:602.105620pt;}
.yd1{bottom:602.110921pt;}
.yf0{bottom:602.110942pt;}
.y1b9{bottom:610.096263pt;}
.y1f6{bottom:610.285730pt;}
.y71{bottom:617.480265pt;}
.y52{bottom:617.480306pt;}
.y188{bottom:617.594971pt;}
.y109{bottom:617.718953pt;}
.y12{bottom:618.187907pt;}
.yb4{bottom:618.653483pt;}
.y90{bottom:618.653564pt;}
.y151{bottom:618.653605pt;}
.y115{bottom:618.772287pt;}
.yd0{bottom:618.777588pt;}
.yef{bottom:618.777608pt;}
.y1b8{bottom:623.424263pt;}
.y1f5{bottom:623.613730pt;}
.y51{bottom:634.146973pt;}
.y187{bottom:634.261637pt;}
.y11{bottom:634.854574pt;}
.yb3{bottom:635.320150pt;}
.y8f{bottom:635.320231pt;}
.y150{bottom:635.320272pt;}
.ycf{bottom:635.444255pt;}
.yee{bottom:635.444275pt;}
.y1b7{bottom:636.752263pt;}
.y1f4{bottom:636.941730pt;}
.y1b6{bottom:650.080263pt;}
.y1f3{bottom:650.269730pt;}
.y50{bottom:650.813639pt;}
.y186{bottom:650.928304pt;}
.y10{bottom:651.521240pt;}
.yb2{bottom:651.986816pt;}
.y8e{bottom:651.986898pt;}
.y14f{bottom:651.986938pt;}
.yce{bottom:652.110921pt;}
.yed{bottom:652.110942pt;}
.y1b5{bottom:663.408263pt;}
.y1f2{bottom:663.597730pt;}
.y140{bottom:664.972021pt;}
.y4f{bottom:667.480306pt;}
.y185{bottom:667.594971pt;}
.yf{bottom:668.187907pt;}
.yb1{bottom:668.653483pt;}
.y8d{bottom:668.653564pt;}
.y1b4{bottom:676.736263pt;}
.y1f1{bottom:676.925730pt;}
.y13f{bottom:678.300021pt;}
.y4e{bottom:684.146973pt;}
.y184{bottom:684.261637pt;}
.ye{bottom:684.854574pt;}
.y8c{bottom:685.320231pt;}
.y1b3{bottom:690.064263pt;}
.y1f0{bottom:690.253730pt;}
.y13e{bottom:695.005355pt;}
.y4d{bottom:700.813639pt;}
.y183{bottom:700.928304pt;}
.yd{bottom:701.521240pt;}
.yb0{bottom:701.986816pt;}
.y8b{bottom:701.986898pt;}
.y1b2{bottom:703.392263pt;}
.y1ef{bottom:703.581730pt;}
.y13d{bottom:708.333355pt;}
.y1b1{bottom:716.720263pt;}
.y1ee{bottom:716.909730pt;}
.y4c{bottom:717.480306pt;}
.y182{bottom:717.594971pt;}
.y8a{bottom:718.653564pt;}
.y13c{bottom:724.970688pt;}
.y1b0{bottom:730.048263pt;}
.y1ed{bottom:730.237730pt;}
.y4b{bottom:734.146973pt;}
.y181{bottom:734.261637pt;}
.y89{bottom:735.320231pt;}
.y13b{bottom:738.298688pt;}
.yc{bottom:740.794803pt;}
.y1af{bottom:743.376263pt;}
.y1ec{bottom:743.565730pt;}
.y4a{bottom:750.813639pt;}
.y180{bottom:750.928304pt;}
.y88{bottom:751.986898pt;}
.yb{bottom:754.122803pt;}
.y13a{bottom:754.936021pt;}
.y1eb{bottom:756.893730pt;}
.y49{bottom:767.480306pt;}
.y17f{bottom:767.594971pt;}
.y87{bottom:768.653564pt;}
.y1ea{bottom:770.221730pt;}
.y139{bottom:771.573355pt;}
.y1ae{bottom:773.341596pt;}
.y1e9{bottom:783.549730pt;}
.y48{bottom:784.146973pt;}
.y17e{bottom:784.261637pt;}
.y86{bottom:785.320231pt;}
.y1ad{bottom:786.669596pt;}
.y138{bottom:788.210688pt;}
.ya{bottom:791.989502pt;}
.y1e8{bottom:796.877730pt;}
.y47{bottom:800.813639pt;}
.y17d{bottom:800.928304pt;}
.y85{bottom:801.986898pt;}
.y137{bottom:804.848021pt;}
.y9{bottom:808.656169pt;}
.y1e7{bottom:810.205730pt;}
.y1ac{bottom:816.669596pt;}
.y46{bottom:817.480306pt;}
.y17c{bottom:817.594971pt;}
.y84{bottom:818.653564pt;}
.y136{bottom:821.485355pt;}
.y1e6{bottom:823.533730pt;}
.y45{bottom:834.146973pt;}
.y17b{bottom:834.261637pt;}
.y83{bottom:835.320231pt;}
.y1e5{bottom:836.861730pt;}
.y12c{bottom:838.088688pt;}
.y8{bottom:848.377441pt;}
.y1ab{bottom:850.029622pt;}
.y1e4{bottom:850.189730pt;}
.y44{bottom:850.813639pt;}
.y17a{bottom:850.928304pt;}
.y128{bottom:851.405355pt;}
.y12b{bottom:851.416688pt;}
.y12f{bottom:851.428021pt;}
.y132{bottom:851.439355pt;}
.y135{bottom:851.450688pt;}
.y82{bottom:851.986898pt;}
.y1e3{bottom:863.517730pt;}
.y127{bottom:864.733355pt;}
.y12a{bottom:864.744688pt;}
.y12e{bottom:864.756021pt;}
.y131{bottom:864.767355pt;}
.y134{bottom:864.778688pt;}
.y1aa{bottom:866.696289pt;}
.y43{bottom:867.480306pt;}
.y179{bottom:867.594971pt;}
.y81{bottom:868.653564pt;}
.y7{bottom:872.377441pt;}
.y1e2{bottom:876.845730pt;}
.y126{bottom:878.061355pt;}
.y129{bottom:878.072688pt;}
.y12d{bottom:878.084021pt;}
.y130{bottom:878.095355pt;}
.y133{bottom:878.106688pt;}
.y1a9{bottom:883.362956pt;}
.y42{bottom:884.146973pt;}
.y178{bottom:884.261637pt;}
.y80{bottom:885.320231pt;}
.y1e1{bottom:890.173730pt;}
.y125{bottom:894.698688pt;}
.y6{bottom:896.377441pt;}
.y1a8{bottom:900.029622pt;}
.y41{bottom:900.813639pt;}
.y177{bottom:900.928304pt;}
.y7f{bottom:901.986898pt;}
.y106{bottom:902.340306pt;}
.y1e0{bottom:903.501730pt;}
.y124{bottom:908.026688pt;}
.y105{bottom:915.668306pt;}
.y220{bottom:916.665620pt;}
.y225{bottom:916.688285pt;}
.y1a7{bottom:916.696289pt;}
.y1df{bottom:916.829730pt;}
.y40{bottom:917.480306pt;}
.y176{bottom:917.594971pt;}
.y7e{bottom:918.653564pt;}
.y104{bottom:928.996306pt;}
.y21f{bottom:929.993620pt;}
.y224{bottom:930.016285pt;}
.y1de{bottom:930.157730pt;}
.y123{bottom:932.994021pt;}
.y1a6{bottom:933.362956pt;}
.y70{bottom:934.146932pt;}
.y3f{bottom:934.146973pt;}
.y175{bottom:934.261637pt;}
.y7d{bottom:935.320231pt;}
.y165{bottom:935.320272pt;}
.y103{bottom:942.324306pt;}
.y21e{bottom:943.321620pt;}
.y223{bottom:943.344285pt;}
.y1dd{bottom:943.485730pt;}
.y122{bottom:946.322021pt;}
.y6f{bottom:950.813599pt;}
.y3e{bottom:950.813639pt;}
.y7c{bottom:951.986898pt;}
.y164{bottom:951.986938pt;}
.y102{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y21d{bottom:956.649620pt;}
.y222{bottom:956.672285pt;}
.y1dc{bottom:956.813730pt;}
.y1a5{bottom:966.696289pt;}
.y6e{bottom:967.480265pt;}
.y3d{bottom:967.480306pt;}
.y174{bottom:967.594971pt;}
.y7b{bottom:968.653564pt;}
.y163{bottom:968.653605pt;}
.y101{bottom:968.980306pt;}
.y21c{bottom:969.977620pt;}
.y221{bottom:970.000285pt;}
.y1db{bottom:970.141730pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3c{bottom:1002.206543pt;}
.hf{height:22.403733pt;}
.hd{height:32.005333pt;}
.he{height:32.760417pt;}
.h2{height:37.376000pt;}
.ha{height:37.653333pt;}
.h4{height:39.712000pt;}
.h13{height:40.515781pt;}
.h11{height:40.537033pt;}
.h12{height:41.603684pt;}
.hc{height:43.656000pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.h9{height:51.360000pt;}
.h8{height:52.746667pt;}
.h10{height:57.493333pt;}
.h7{height:57.621333pt;}
.hb{height:63.296000pt;}
.h6{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151469pt;}
.x7{left:86.929867pt;}
.x1c{left:90.709469pt;}
.xe{left:164.364812pt;}
.xf{left:172.366156pt;}
.x17{left:189.514933pt;}
.x18{left:238.110802pt;}
.x10{left:260.573489pt;}
.x11{left:268.574823pt;}
.x12{left:329.616156pt;}
.x19{left:366.811461pt;}
.xa{left:393.116802pt;}
.x13{left:401.118156pt;}
.x5{left:408.189087pt;}
.x6{left:423.309075pt;}
.x1d{left:430.868135pt;}
.x1a{left:447.663459pt;}
.xb{left:488.826799pt;}
.x14{left:496.828154pt;}
.x1b{left:533.625854pt;}
.xc{left:566.494132pt;}
.x15{left:574.495486pt;}
.x1{left:647.307210pt;}
.xd{left:661.954799pt;}
.x16{left:669.967486pt;}
.x2{left:671.546549pt;}
}




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