
    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_eefbf91a66509c7ba4756450.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675000;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_561635b61788cc1fd34b02f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57a6c1caccbebaf46a046927.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.336000;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_d86f4e66f461c84a36af8248.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.683000;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_fd58f7ba8c718b242507b25d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967773;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_0d001ea12783e4a42bf06821.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_2c0da86f11f131f54f79f6fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_b6cfce9e4da0fb5b5fc6f08a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4a9250cd5b942829ada52201.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c65c57a45958b908fdfb51aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964000;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_6fc3854d2907a6b23789e07c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.887000;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_b009eace74977f45045aa0fe.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975586;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_3a4990e64b17693aa0b87c82.woff2')format("woff");}.fff{font-family:fff;line-height:0.975586;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_61596d95497d6af44d14fc9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.467000;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_4040a436add4d1ee9390665f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7b8903b7372c166785cd9e48.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.936523;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:ff13;src:url('chunks/assets/font_c503603ac1ea7e4a4f020528.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000977;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;}
.m2{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);}
.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);}
.m4{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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);}
.vb{vertical-align:-22.854000px;}
.v9{vertical-align:-21.204000px;}
.v8{vertical-align:-18.204000px;}
.v1{vertical-align:-5.304000px;}
.v7{vertical-align:-3.140072px;}
.v4{vertical-align:-1.312911px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.296767px;}
.v6{vertical-align:4.639833px;}
.v3{vertical-align:13.040094px;}
.va{vertical-align:23.754000px;}
.v2{vertical-align:26.628000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.001620px;}
.lsa{letter-spacing:0.008547px;}
.ls5{letter-spacing:0.019828px;}
.ls8{letter-spacing:0.061730px;}
.ls9{letter-spacing:0.195397px;}
.ls14{letter-spacing:2.990496px;}
.lsb{letter-spacing:7.221166px;}
.ls12{letter-spacing:15.381831px;}
.ls11{letter-spacing:16.363650px;}
.ls10{letter-spacing:21.517441px;}
.ls4{letter-spacing:28.925293px;}
.lsd{letter-spacing:32.725057px;}
.lsf{letter-spacing:32.727300px;}
.lse{letter-spacing:32.729966px;}
.ls1{letter-spacing:52.499421px;}
.ls2{letter-spacing:52.505421px;}
.ls6{letter-spacing:330.678236px;}
.ls7{letter-spacing:340.475461px;}
.ls3{letter-spacing:435.997485px;}
.ls13{letter-spacing:532.085421px;}
.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;}
}
.ws50{word-spacing:-37.180650px;}
.ws3a{word-spacing:-32.727300px;}
.ws60{word-spacing:-25.103357px;}
.ws31{word-spacing:-21.519300px;}
.ws1{word-spacing:-16.363650px;}
.ws2a{word-spacing:-14.891948px;}
.ws37{word-spacing:-7.680150px;}
.ws38{word-spacing:-6.720121px;}
.ws2b{word-spacing:-6.413802px;}
.ws2c{word-spacing:-5.492245px;}
.ws65{word-spacing:-3.600003px;}
.ws4a{word-spacing:-3.076366px;}
.ws8{word-spacing:-2.199748px;}
.ws4{word-spacing:-1.701820px;}
.ws4e{word-spacing:-1.440001px;}
.ws13{word-spacing:-1.141980px;}
.ws3c{word-spacing:-0.981819px;}
.ws3d{word-spacing:-0.916364px;}
.ws69{word-spacing:-0.196364px;}
.ws6a{word-spacing:-0.155090px;}
.ws3b{word-spacing:-0.065455px;}
.ws39{word-spacing:-0.026048px;}
.ws26{word-spacing:-0.005817px;}
.ws5e{word-spacing:-0.005337px;}
.ws10{word-spacing:-0.005034px;}
.ws42{word-spacing:-0.004666px;}
.ws57{word-spacing:-0.004615px;}
.ws30{word-spacing:-0.004474px;}
.ws5f{word-spacing:-0.004157px;}
.ws2e{word-spacing:-0.004058px;}
.wse{word-spacing:-0.003724px;}
.ws45{word-spacing:-0.003608px;}
.ws12{word-spacing:-0.003584px;}
.ws52{word-spacing:-0.003476px;}
.ws6f{word-spacing:-0.002940px;}
.ws2d{word-spacing:-0.002910px;}
.ws3{word-spacing:-0.002830px;}
.ws2{word-spacing:-0.002694px;}
.ws35{word-spacing:-0.002672px;}
.ws6b{word-spacing:-0.002455px;}
.ws6e{word-spacing:-0.002371px;}
.ws54{word-spacing:-0.002280px;}
.ws23{word-spacing:-0.002129px;}
.ws5c{word-spacing:-0.002075px;}
.ws11{word-spacing:-0.001804px;}
.wsd{word-spacing:-0.001723px;}
.ws5b{word-spacing:-0.001500px;}
.ws55{word-spacing:-0.001479px;}
.wsa{word-spacing:-0.001351px;}
.ws5d{word-spacing:-0.001328px;}
.ws32{word-spacing:-0.001291px;}
.ws3f{word-spacing:-0.001266px;}
.ws66{word-spacing:-0.000806px;}
.ws62{word-spacing:-0.000779px;}
.wsf{word-spacing:-0.000732px;}
.ws9{word-spacing:-0.000589px;}
.ws64{word-spacing:-0.000391px;}
.ws6c{word-spacing:-0.000347px;}
.ws67{word-spacing:-0.000346px;}
.ws2f{word-spacing:-0.000193px;}
.ws63{word-spacing:-0.000166px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:0.000304px;}
.wsb{word-spacing:0.000333px;}
.ws53{word-spacing:0.000334px;}
.wsc{word-spacing:0.000380px;}
.ws44{word-spacing:0.000989px;}
.ws6d{word-spacing:0.001021px;}
.ws68{word-spacing:0.001450px;}
.ws34{word-spacing:0.001568px;}
.ws51{word-spacing:0.002001px;}
.ws25{word-spacing:0.003720px;}
.ws70{word-spacing:0.004306px;}
.ws61{word-spacing:0.047332px;}
.ws49{word-spacing:0.130909px;}
.ws4c{word-spacing:0.327273px;}
.ws29{word-spacing:2.225456px;}
.ws56{word-spacing:2.734082px;}
.ws3e{word-spacing:2.749093px;}
.ws1f{word-spacing:3.646505px;}
.ws1a{word-spacing:3.679556px;}
.ws20{word-spacing:3.696946px;}
.ws16{word-spacing:3.728631px;}
.ws19{word-spacing:3.746770px;}
.ws15{word-spacing:3.786372px;}
.ws14{word-spacing:3.809645px;}
.ws1b{word-spacing:3.921880px;}
.ws28{word-spacing:4.712731px;}
.ws4b{word-spacing:4.974550px;}
.ws41{word-spacing:5.105459px;}
.ws40{word-spacing:5.694550px;}
.ws27{word-spacing:6.872733px;}
.ws17{word-spacing:9.805673px;}
.ws18{word-spacing:10.044101px;}
.ws1c{word-spacing:10.663743px;}
.ws21{word-spacing:10.826246px;}
.ws7{word-spacing:13.102844px;}
.ws33{word-spacing:16.298195px;}
.ws47{word-spacing:19.374562px;}
.ws6{word-spacing:20.228114px;}
.ws46{word-spacing:25.527294px;}
.ws36{word-spacing:27.570683px;}
.ws1e{word-spacing:28.570081px;}
.ws1d{word-spacing:33.292800px;}
.ws4d{word-spacing:37.767304px;}
.ws48{word-spacing:57.010957px;}
.ws22{word-spacing:109.924191px;}
.ws4f{word-spacing:178.494694px;}
.ws5{word-spacing:184.740975px;}
.ws5a{word-spacing:232.801372px;}
.ws43{word-spacing:236.110234px;}
.ws59{word-spacing:252.546359px;}
.ws58{word-spacing:499.159963px;}
._12{margin-left:-175.912144px;}
._11{margin-left:-161.884128px;}
._29{margin-left:-127.323000px;}
._28{margin-left:-108.047423px;}
._1e{margin-left:-106.731408px;}
._14{margin-left:-91.523003px;}
._16{margin-left:-84.390844px;}
._1d{margin-left:-66.653784px;}
._21{margin-left:-55.668588px;}
._15{margin-left:-52.472064px;}
._19{margin-left:-49.236667px;}
._1c{margin-left:-47.931546px;}
._10{margin-left:-44.995027px;}
._2a{margin-left:-16.496260px;}
._b{margin-left:-8.770916px;}
._0{margin-left:-5.563641px;}
._23{margin-left:-4.123640px;}
._8{margin-left:-3.094297px;}
._7{margin-left:-1.291162px;}
._a{width:1.112728px;}
._3{width:2.117686px;}
._4{width:3.547123px;}
._1{width:4.658908px;}
._1b{width:5.802691px;}
._2{width:7.094247px;}
._22{width:8.265210px;}
._d{width:10.472755px;}
._17{width:11.489012px;}
._41{width:15.547738px;}
._2c{width:16.976270px;}
._f{width:18.636631px;}
._25{width:19.641868px;}
._1a{width:23.228873px;}
._33{width:24.445925px;}
._e{width:25.651009px;}
._31{width:27.127798px;}
._24{width:28.262901px;}
._2e{width:34.232756px;}
._13{width:50.996932px;}
._5{width:71.444275px;}
._3f{width:74.123737px;}
._6{width:80.410675px;}
._1f{width:98.580282px;}
._2f{width:106.638205px;}
._20{width:117.912371px;}
._3c{width:136.369912px;}
._3d{width:151.496338px;}
._40{width:169.500051px;}
._9{width:184.236769px;}
._2d{width:209.929816px;}
._30{width:272.421923px;}
._3e{width:276.952568px;}
._35{width:324.458452px;}
._39{width:350.936744px;}
._42{width:361.524236px;}
._36{width:369.360308px;}
._34{width:392.400327px;}
._18{width:410.630884px;}
._3b{width:505.426264px;}
._27{width:520.164523px;}
._37{width:536.531356px;}
._26{width:582.312258px;}
._32{width:781.709621px;}
._3a{width:890.968015px;}
._2b{width:1065.059321px;}
._38{width:1122.446688px;}
._c{width:1153.048234px;}
.fc16{color:rgb(141,211,95);}
.fc15{color:rgb(255,128,128);}
.fc13{color:rgb(218,147,13);}
.fc17{color:rgb(0,128,0);}
.fc12{color:rgb(215,7,81);}
.fc10{color:rgb(240,81,51);}
.fcf{color:rgb(237,36,54);}
.fce{color:rgb(0,130,96);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc9{color:rgb(255,0,0);}
.fcd{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fca{color:rgb(32,0,179);}
.fc4{color:rgb(252,230,223);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fc14{color:rgb(245,245,245);}
.fc8{color:rgb(0,173,239);}
.fc6{color:rgb(254,250,248);}
.fcb{color:rgb(186,0,35);}
.fc11{color:rgb(96,96,96);}
.fcc{color:rgb(39,105,0);}
.fsb{font-size:4.567920px;}
.fsf{font-size:12.421392px;}
.fs1b{font-size:14.849738px;}
.fs1a{font-size:14.849740px;}
.fs18{font-size:19.310693px;}
.fs1c{font-size:19.799569px;}
.fs13{font-size:19.827598px;}
.fsc{font-size:20.881920px;}
.fs15{font-size:21.514209px;}
.fs19{font-size:22.069398px;}
.fs17{font-size:22.686720px;}
.fs10{font-size:23.154521px;}
.fs7{font-size:23.844744px;}
.fs1e{font-size:25.524335px;}
.fs1d{font-size:26.048077px;}
.fs9{font-size:28.386600px;}
.fs22{font-size:29.696400px;}
.fs14{font-size:29.763720px;}
.fse{font-size:30.607025px;}
.fs11{font-size:33.092296px;}
.fs5{font-size:34.063920px;}
.fs3{font-size:35.865600px;}
.fs23{font-size:39.595200px;}
.fs12{font-size:39.699842px;}
.fs6{font-size:39.741240px;}
.fs16{font-size:42.351660px;}
.fs8{font-size:45.418560px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:52.942140px;}
.fsd{font-size:53.761546px;}
.fs20{font-size:53.798400px;}
.fsa{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs21{font-size:79.190400px;}
.fs0{font-size:86.077200px;}
.fs1f{font-size:148.722600px;}
.fs24{font-size:253.409282px;}
.y1a5{bottom:-70.699500px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.608087px;}
.y9{bottom:3.619500px;}
.y63{bottom:4.267778px;}
.y7b{bottom:4.628672px;}
.y1d{bottom:7.172052px;}
.y16e{bottom:8.920500px;}
.y52{bottom:9.603482px;}
.y65{bottom:10.204853px;}
.y5e{bottom:13.192562px;}
.yae{bottom:14.296093px;}
.y64{bottom:15.425333px;}
.y7c{bottom:15.749575px;}
.yf1{bottom:15.858000px;}
.yec{bottom:16.317131px;}
.y50{bottom:16.781642px;}
.yf4{bottom:17.247000px;}
.yf7{bottom:18.343500px;}
.y1c{bottom:19.336154px;}
.y134{bottom:20.102696px;}
.y193{bottom:20.350500px;}
.y5b{bottom:20.370722px;}
.y8{bottom:20.397402px;}
.yad{bottom:20.869742px;}
.y9e{bottom:20.998718px;}
.y1bd{bottom:21.457500px;}
.y1ae{bottom:21.870000px;}
.yfd{bottom:22.987500px;}
.ye9{bottom:23.826000px;}
.y56{bottom:23.959801px;}
.y13b{bottom:25.307119px;}
.ya0{bottom:25.627390px;}
.y5a{bottom:27.548881px;}
.y5d{bottom:27.875161px;}
.y9d{bottom:27.935732px;}
.yd0{bottom:28.231500px;}
.y7{bottom:28.647000px;}
.y16d{bottom:29.244000px;}
.y19e{bottom:29.532000px;}
.y151{bottom:29.683500px;}
.y76{bottom:30.253500px;}
.y15c{bottom:30.436500px;}
.y51{bottom:31.097176px;}
.y1be{bottom:31.500000px;}
.yaf{bottom:31.697122px;}
.y103{bottom:31.716521px;}
.y1a6{bottom:31.968000px;}
.y143{bottom:32.365500px;}
.y9f{bottom:32.564403px;}
.y1e{bottom:32.669165px;}
.yfc{bottom:33.448500px;}
.y88{bottom:33.853338px;}
.y68{bottom:33.978000px;}
.y182{bottom:34.303500px;}
.y5c{bottom:34.645471px;}
.y9c{bottom:34.884733px;}
.y1bc{bottom:35.220000px;}
.y133{bottom:35.375889px;}
.yf0{bottom:36.181500px;}
.y114{bottom:36.687552px;}
.yf3{bottom:37.570500px;}
.y1a{bottom:37.633500px;}
.y2d{bottom:38.136000px;}
.y4c{bottom:38.193766px;}
.yf6{bottom:38.667000px;}
.y1bf{bottom:39.879000px;}
.y168{bottom:40.843500px;}
.y87{bottom:41.130154px;}
.y13e{bottom:42.100500px;}
.y58{bottom:42.598546px;}
.y113{bottom:43.584317px;}
.y1d1{bottom:43.643607px;}
.y185{bottom:44.656500px;}
.y7a{bottom:44.973808px;}
.y192{bottom:45.157500px;}
.ydf{bottom:45.690000px;}
.y1a3{bottom:46.600500px;}
.y4b{bottom:47.003326px;}
.y150{bottom:47.617500px;}
.yab{bottom:48.489234px;}
.y1b{bottom:49.290000px;}
.y86{bottom:49.801731px;}
.y19d{bottom:49.855500px;}
.y59{bottom:50.551621px;}
.y75{bottom:50.577000px;}
.y53{bottom:54.099916px;}
.y67{bottom:54.301500px;}
.y181{bottom:54.627000px;}
.yff{bottom:54.634500px;}
.yaa{bottom:55.098020px;}
.y15b{bottom:55.243500px;}
.y1bb{bottom:55.543500px;}
.y142{bottom:56.295000px;}
.y125{bottom:56.364614px;}
.y94{bottom:56.996284px;}
.y85{bottom:57.043410px;}
.y1e9{bottom:57.327000px;}
.y79{bottom:57.617601px;}
.y57{bottom:57.648211px;}
.y1de{bottom:58.983000px;}
.y1ad{bottom:59.637000px;}
.y102{bottom:59.953304px;}
.y62{bottom:60.599993px;}
.y1aa{bottom:60.990000px;}
.y55{bottom:61.196506px;}
.y19{bottom:61.563000px;}
.ya9{bottom:61.707219px;}
.yc6{bottom:62.812500px;}
.y93{bottom:62.949028px;}
.y124{bottom:63.261389px;}
.y184{bottom:64.981500px;}
.y54{bottom:65.601286px;}
.y167{bottom:65.650500px;}
.y84{bottom:65.726148px;}
.y9a{bottom:65.925400px;}
.y13d{bottom:66.907500px;}
.y14f{bottom:68.538000px;}
.y92{bottom:68.901772px;}
.y13a{bottom:69.705519px;}
.y191{bottom:69.964500px;}
.y4f{bottom:70.046851px;}
.yac{bottom:70.354820px;}
.yde{bottom:70.497000px;}
.y74{bottom:70.743000px;}
.y99{bottom:71.878144px;}
.y78{bottom:72.124521px;}
.y83{bottom:73.003378px;}
.y4d{bottom:73.635931px;}
.y39{bottom:74.365500px;}
.y91{bottom:74.854516px;}
.y180{bottom:74.950500px;}
.y12e{bottom:75.360194px;}
.y1ba{bottom:75.867000px;}
.y10{bottom:76.120500px;}
.y121{bottom:77.171874px;}
.y48{bottom:77.225011px;}
.y98{bottom:77.830888px;}
.y66{bottom:78.231000px;}
.y16c{bottom:78.585000px;}
.y1dd{bottom:79.308000px;}
.y90{bottom:80.772122px;}
.y60{bottom:80.814091px;}
.y12d{bottom:81.394949px;}
.y82{bottom:81.674541px;}
.y141{bottom:81.886500px;}
.y1e8{bottom:82.134000px;}
.y10d{bottom:82.386976px;}
.y1f{bottom:82.596447px;}
.yc5{bottom:83.136000px;}
.y15a{bottom:83.655000px;}
.y97{bottom:83.748494px;}
.y1d0{bottom:84.066611px;}
.y46{bottom:84.403171px;}
.y1ac{bottom:84.444000px;}
.ya7{bottom:85.693884px;}
.y1a9{bottom:85.797000px;}
.ye8{bottom:86.284500px;}
.y8f{bottom:86.724866px;}
.y120{bottom:87.339546px;}
.y101{bottom:88.190127px;}
.y10c{bottom:88.421567px;}
.y17f{bottom:88.723500px;}
.y4e{bottom:88.848741px;}
.y81{bottom:88.916220px;}
.y96{bottom:89.701238px;}
.y190{bottom:90.288000px;}
.y166{bottom:90.457500px;}
.y14e{bottom:90.954000px;}
.y183{bottom:91.174500px;}
.y15e{bottom:91.201500px;}
.yb9{bottom:91.456500px;}
.ya6{bottom:91.470939px;}
.y13c{bottom:91.714500px;}
.y8e{bottom:92.677610px;}
.y45{bottom:93.294306px;}
.y1cf{bottom:93.346736px;}
.y38{bottom:94.689000px;}
.y135{bottom:95.152947px;}
.ydd{bottom:95.304000px;}
.y95{bottom:95.653982px;}
.y1b9{bottom:96.190500px;}
.y80{bottom:97.599372px;}
.y47{bottom:97.739871px;}
.ya5{bottom:98.091300px;}
.y8d{bottom:98.583641px;}
.y116{bottom:99.310429px;}
.y12c{bottom:99.797302px;}
.y139{bottom:100.179676px;}
.y10b{bottom:100.713694px;}
.ycf{bottom:101.619000px;}
.y49{bottom:102.144651px;}
.y1ce{bottom:102.626861px;}
.yc4{bottom:103.459500px;}
.ya4{bottom:103.915481px;}
.y1dc{bottom:104.115000px;}
.y8c{bottom:104.536385px;}
.y43{bottom:104.547000px;}
.y115{bottom:104.791373px;}
.y7f{bottom:104.864613px;}
.y4a{bottom:105.692946px;}
.y12b{bottom:105.832058px;}
.y10a{bottom:106.748449px;}
.y1e7{bottom:106.941000px;}
.y11f{bottom:108.167142px;}
.y73{bottom:108.394500px;}
.y44{bottom:109.241241px;}
.y1ab{bottom:109.251000px;}
.y23{bottom:110.414116px;}
.ya3{bottom:110.489129px;}
.y1a8{bottom:110.604000px;}
.ye7{bottom:110.932500px;}
.y14d{bottom:111.277500px;}
.yb8{bottom:111.780000px;}
.y1cd{bottom:111.906986px;}
.y19c{bottom:112.041000px;}
.y61{bottom:112.489819px;}
.y37{bottom:114.855000px;}
.y165{bottom:115.264500px;}
.ya2{bottom:116.324472px;}
.y100{bottom:116.426910px;}
.y118{bottom:116.646442px;}
.y42{bottom:116.698500px;}
.y9b{bottom:117.519981px;}
.y131{bottom:117.644032px;}
.y110{bottom:118.093679px;}
.y18f{bottom:118.618500px;}
.y11d{bottom:119.129030px;}
.y1b8{bottom:119.868000px;}
.y138{bottom:119.882599px;}
.yf{bottom:120.019500px;}
.y15d{bottom:120.492000px;}
.y132{bottom:120.905773px;}
.y1cc{bottom:121.187111px;}
.y17e{bottom:121.338000px;}
.y119{bottom:121.923278px;}
.yce{bottom:121.942500px;}
.y6{bottom:122.457000px;}
.y7e{bottom:122.558731px;}
.ya1{bottom:122.898534px;}
.ydc{bottom:123.717000px;}
.y1db{bottom:124.438500px;}
.y130{bottom:124.540796px;}
.y11e{bottom:124.609974px;}
.y10f{bottom:124.990443px;}
.y105{bottom:125.488500px;}
.y159{bottom:125.790000px;}
.yc3{bottom:128.266500px;}
.y1a2{bottom:129.088500px;}
.y7d{bottom:129.460607px;}
.y1cb{bottom:130.467236px;}
.y12f{bottom:131.437560px;}
.y1e6{bottom:131.748000px;}
.y15{bottom:131.751000px;}
.y17a{bottom:131.775000px;}
.y10e{bottom:131.887207px;}
.y72{bottom:132.241500px;}
.y20{bottom:132.678968px;}
.ya8{bottom:133.596938px;}
.y1a4{bottom:133.861500px;}
.y117{bottom:134.079261px;}
.y14c{bottom:136.084500px;}
.yb7{bottom:136.587000px;}
.y19b{bottom:136.848000px;}
.y8b{bottom:137.522441px;}
.y137{bottom:137.835149px;}
.y11a{bottom:138.386914px;}
.y109{bottom:139.041429px;}
.y164{bottom:139.192500px;}
.y1ca{bottom:139.747361px;}
.y36{bottom:139.863000px;}
.y1b7{bottom:140.191500px;}
.y17d{bottom:141.663000px;}
.ycd{bottom:142.266000px;}
.y11b{bottom:142.430576px;}
.y5{bottom:142.780500px;}
.y1e5{bottom:144.457500px;}
.y41{bottom:144.493500px;}
.y104{bottom:144.663693px;}
.y1da{bottom:144.762000px;}
.y108{bottom:145.076174px;}
.y158{bottom:146.115000px;}
.y8a{bottom:148.279546px;}
.yc2{bottom:148.590000px;}
.y12a{bottom:148.671529px;}
.y1c9{bottom:149.027487px;}
.y179{bottom:152.098500px;}
.ye6{bottom:153.067500px;}
.y187{bottom:153.895500px;}
.y129{bottom:154.706266px;}
.y136{bottom:155.021605px;}
.yf5{bottom:155.386500px;}
.y18e{bottom:155.388000px;}
.y14b{bottom:156.409500px;}
.yf2{bottom:156.483000px;}
.y14{bottom:156.558000px;}
.y1d2{bottom:156.772391px;}
.yb6{bottom:156.910500px;}
.y71{bottom:157.833000px;}
.yef{bottom:157.872000px;}
.y1c8{bottom:158.307612px;}
.y89{bottom:158.614998px;}
.y107{bottom:159.743018px;}
.y1b6{bottom:161.112000px;}
.y11c{bottom:161.176010px;}
.y19a{bottom:161.655000px;}
.y17c{bottom:161.986500px;}
.y40{bottom:162.426000px;}
.y4{bottom:163.104000px;}
.ye{bottom:163.917000px;}
.y106{bottom:165.777764px;}
.ycc{bottom:167.073000px;}
.y1c7{bottom:167.587737px;}
.yc1{bottom:168.913500px;}
.y1d9{bottom:169.569000px;}
.y157{bottom:170.920500px;}
.y123{bottom:173.116337px;}
.y178{bottom:173.814000px;}
.y112{bottom:175.440342px;}
.y1c6{bottom:176.867862px;}
.ye5{bottom:177.874500px;}
.y70{bottom:178.156500px;}
.y34{bottom:178.627500px;}
.y128{bottom:179.217915px;}
.y122{bottom:179.303767px;}
.y18d{bottom:180.195000px;}
.y14a{bottom:181.216500px;}
.y13{bottom:181.365000px;}
.y1b5{bottom:181.437000px;}
.yb5{bottom:181.717500px;}
.y17b{bottom:182.068500px;}
.y111{bottom:182.336974px;}
.y21{bottom:182.606250px;}
.y3f{bottom:183.348000px;}
.y1e4{bottom:184.447500px;}
.y77{bottom:184.669075px;}
.y127{bottom:185.252651px;}
.y1c5{bottom:186.147987px;}
.y199{bottom:186.462000px;}
.ydb{bottom:189.058500px;}
.yc0{bottom:189.237000px;}
.y1d8{bottom:189.892500px;}
.y126{bottom:191.467927px;}
.ycb{bottom:191.880000px;}
.y1a1{bottom:192.669000px;}
.y33{bottom:192.823500px;}
.y1c4{bottom:195.428112px;}
.yee{bottom:196.873500px;}
.y6f{bottom:198.480000px;}
.y156{bottom:200.211000px;}
.yb4{bottom:202.042500px;}
.ye4{bottom:202.681500px;}
.y163{bottom:202.818000px;}
.y1c3{bottom:204.708237px;}
.y18c{bottom:205.002000px;}
.y3e{bottom:205.764000px;}
.y1b4{bottom:205.944000px;}
.y149{bottom:206.023500px;}
.y12{bottom:206.172000px;}
.y32{bottom:207.021000px;}
.yd{bottom:207.816000px;}
.y2c{bottom:208.613123px;}
.y1e3{bottom:209.254500px;}
.ybf{bottom:209.562000px;}
.y198{bottom:211.269000px;}
.yca{bottom:212.203500px;}
.yfa{bottom:213.436500px;}
.y1d7{bottom:213.829500px;}
.y1c2{bottom:213.988362px;}
.y2b{bottom:216.554718px;}
.yed{bottom:220.720500px;}
.y31{bottom:221.217000px;}
.y6e{bottom:222.327000px;}
.yb3{bottom:222.366000px;}
.y162{bottom:223.141500px;}
.y1c1{bottom:223.268487px;}
.y2a{bottom:224.496313px;}
.y3{bottom:224.779500px;}
.y3d{bottom:226.108500px;}
.y173{bottom:226.152000px;}
.y1b3{bottom:226.866000px;}
.yd5{bottom:228.123000px;}
.y155{bottom:228.624000px;}
.y1e2{bottom:229.578000px;}
.y18b{bottom:229.809000px;}
.yda{bottom:230.448000px;}
.y11{bottom:230.979000px;}
.ye3{bottom:231.094500px;}
.y22{bottom:232.611152px;}
.y148{bottom:233.818500px;}
.ybe{bottom:234.369000px;}
.y29{bottom:234.908429px;}
.y30{bottom:235.414500px;}
.y197{bottom:235.917000px;}
.y177{bottom:236.355000px;}
.yc9{bottom:237.010500px;}
.y28{bottom:242.850024px;}
.y161{bottom:243.465000px;}
.y1d6{bottom:243.943500px;}
.y18{bottom:245.533500px;}
.y172{bottom:246.477000px;}
.yb2{bottom:247.173000px;}
.y6d{bottom:247.486500px;}
.y1b2{bottom:247.788000px;}
.y16b{bottom:247.885500px;}
.y2f{bottom:249.610500px;}
.yd9{bottom:250.771500px;}
.y27{bottom:250.791619px;}
.yc{bottom:251.715000px;}
.yd4{bottom:252.930000px;}
.y18a{bottom:254.616000px;}
.ybd{bottom:254.692500px;}
.y147{bottom:254.740500px;}
.y1a0{bottom:256.281000px;}
.y176{bottom:256.680000px;}
.y1c0{bottom:257.267953px;}
.yc8{bottom:257.334000px;}
.y1e1{bottom:258.868500px;}
.y26{bottom:261.203735px;}
.yeb{bottom:262.444500px;}
.y160{bottom:263.788500px;}
.y1d5{bottom:264.267000px;}
.y171{bottom:266.800500px;}
.yb1{bottom:267.496500px;}
.y6c{bottom:267.810000px;}
.y3c{bottom:268.251000px;}
.y154{bottom:270.235500px;}
.y25{bottom:271.615851px;}
.ye2{bottom:273.229500px;}
.y196{bottom:274.138500px;}
.ybc{bottom:275.016000px;}
.yd8{bottom:275.578500px;}
.y175{bottom:277.003500px;}
.y146{bottom:277.156500px;}
.yd3{bottom:277.737000px;}
.y1e0{bottom:279.192000px;}
.y189{bottom:279.423000px;}
.yf9{bottom:279.796500px;}
.y1b1{bottom:280.836000px;}
.y2e{bottom:282.532500px;}
.y1d4{bottom:284.590500px;}
.yc7{bottom:285.747000px;}
.y16a{bottom:286.902000px;}
.y170{bottom:287.124000px;}
.y24{bottom:287.649845px;}
.y6b{bottom:288.135000px;}
.y2{bottom:288.390000px;}
.y17{bottom:291.345000px;}
.yb0{bottom:292.144500px;}
.y3b{bottom:293.058000px;}
.y35{bottom:294.960000px;}
.y153{bottom:295.042500px;}
.ybb{bottom:295.339500px;}
.yb{bottom:295.612500px;}
.ye1{bottom:298.036500px;}
.y195{bottom:298.945500px;}
.yf8{bottom:300.120000px;}
.yd7{bottom:300.385500px;}
.y1d3{bottom:300.981000px;}
.y1b0{bottom:301.159500px;}
.y145{bottom:301.963500px;}
.yd2{bottom:302.544000px;}
.y188{bottom:304.230000px;}
.y1df{bottom:305.134500px;}
.yfe{bottom:306.276000px;}
.y169{bottom:307.225500px;}
.y140{bottom:307.888500px;}
.y6a{bottom:308.458500px;}
.y174{bottom:312.447000px;}
.y16f{bottom:312.943500px;}
.y15f{bottom:313.609500px;}
.y1{bottom:314.094000px;}
.y16{bottom:315.274500px;}
.y3a{bottom:317.706000px;}
.yba{bottom:319.989000px;}
.yd6{bottom:320.550000px;}
.y1a7{bottom:321.360000px;}
.ye0{bottom:321.964500px;}
.yfb{bottom:322.093500px;}
.yd1{bottom:322.794000px;}
.y152{bottom:323.061000px;}
.y1af{bottom:325.089000px;}
.y144{bottom:326.770500px;}
.y186{bottom:327.277500px;}
.y194{bottom:327.358500px;}
.y69{bottom:328.371000px;}
.y13f{bottom:331.816500px;}
.yea{bottom:333.255000px;}
.y19f{bottom:357.190500px;}
.ya{bottom:362.751000px;}
.h15{height:4.819156px;}
.h1a{height:9.043113px;}
.h2c{height:11.282320px;}
.h2b{height:11.282322px;}
.h20{height:14.339304px;}
.h1e{height:14.435034px;}
.h29{height:14.671600px;}
.h2d{height:15.043032px;}
.h21{height:15.662932px;}
.h16{height:15.865365px;}
.h27{height:15.926077px;}
.h2a{height:16.767570px;}
.h1b{height:16.857124px;}
.h19{height:22.282751px;}
.h37{height:22.721806px;}
.h1c{height:24.092096px;}
.h6{height:25.392845px;}
.h25{height:26.074291px;}
.h1f{height:26.308635px;}
.h10{height:26.371151px;}
.h24{height:28.206206px;}
.h1d{height:28.902570px;}
.h2f{height:28.970121px;}
.h2e{height:29.564567px;}
.h38{height:30.083072px;}
.hc{height:31.645382px;}
.he{height:35.191862px;}
.h11{height:35.195962px;}
.h5{height:35.259465px;}
.hd{height:36.919612px;}
.h18{height:39.139876px;}
.h33{height:40.911857px;}
.h7{height:41.037857px;}
.hf{height:42.193842px;}
.h12{height:42.321125px;}
.h13{height:43.994842px;}
.h22{height:45.687311px;}
.h3{height:46.341857px;}
.h30{height:47.585494px;}
.h9{height:48.174586px;}
.h31{height:53.604586px;}
.h34{height:57.610985px;}
.h36{height:60.166144px;}
.h2{height:60.942658px;}
.h8{height:63.352819px;}
.h23{height:72.840146px;}
.ha{height:72.969857px;}
.h4{height:91.054594px;}
.h32{height:105.295601px;}
.h14{height:116.456161px;}
.h26{height:164.073600px;}
.h17{height:167.414724px;}
.h39{height:192.531662px;}
.h28{height:201.147792px;}
.h35{height:294.625693px;}
.hb{height:301.386298px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w4{width:249.982736px;}
.w7{width:291.686400px;}
.w5{width:297.625212px;}
.w6{width:333.363113px;}
.w8{width:416.667489px;}
.w9{width:416.684923px;}
.w2{width:416.724081px;}
.w3{width:505.988160px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x57{left:4.530959px;}
.x88{left:5.619049px;}
.x27{left:8.857036px;}
.x1d{left:10.679297px;}
.x11{left:12.660867px;}
.x2e{left:16.144487px;}
.xa{left:18.136500px;}
.x80{left:21.259500px;}
.x2f{left:22.279603px;}
.x31{left:24.315029px;}
.x14{left:26.364000px;}
.x34{left:27.941549px;}
.x28{left:30.806695px;}
.xd{left:32.316000px;}
.x72{left:33.818200px;}
.x5f{left:37.109411px;}
.x92{left:38.268000px;}
.x20{left:41.521360px;}
.xb{left:43.275000px;}
.x4a{left:46.130065px;}
.x10{left:48.331176px;}
.x8b{left:50.276534px;}
.x51{left:51.946867px;}
.x21{left:53.523940px;}
.x73{left:55.520086px;}
.x44{left:57.919320px;}
.x4b{left:61.925650px;}
.x13{left:64.399881px;}
.x24{left:66.294424px;}
.x23{left:68.371114px;}
.x48{left:70.120089px;}
.x39{left:71.659404px;}
.x53{left:72.931386px;}
.xc{left:75.247500px;}
.x89{left:76.264234px;}
.x56{left:77.321987px;}
.x8a{left:78.734647px;}
.x45{left:80.393130px;}
.x52{left:81.910300px;}
.x55{left:83.645733px;}
.x38{left:85.065402px;}
.xf{left:87.163500px;}
.x6d{left:88.380428px;}
.x4f{left:89.773680px;}
.x29{left:91.793334px;}
.x54{left:92.853106px;}
.x42{left:94.650355px;}
.x3b{left:95.968220px;}
.x50{left:97.151463px;}
.x37{left:98.203907px;}
.x1c{left:101.201764px;}
.x47{left:103.036930px;}
.x4e{left:105.468098px;}
.x26{left:106.768757px;}
.x1a{left:107.974500px;}
.x46{left:109.970380px;}
.x4c{left:111.031108px;}
.x43{left:112.304365px;}
.x4d{left:114.094763px;}
.x3c{left:116.382865px;}
.x3a{left:117.878050px;}
.x25{left:119.562343px;}
.x8{left:120.988740px;}
.x70{left:123.027096px;}
.x3e{left:125.738721px;}
.x49{left:126.855688px;}
.x3f{left:129.678775px;}
.x7{left:131.812500px;}
.x41{left:132.973120px;}
.x40{left:134.833935px;}
.x87{left:137.073538px;}
.x58{left:139.315187px;}
.x3d{left:140.355205px;}
.x9b{left:141.487500px;}
.x32{left:142.521430px;}
.x86{left:144.748938px;}
.x33{left:145.788372px;}
.x30{left:147.789068px;}
.x2d{left:149.766025px;}
.x6b{left:151.387547px;}
.x61{left:152.906788px;}
.x91{left:154.228500px;}
.x12{left:155.503851px;}
.x60{left:156.763998px;}
.x69{left:158.672768px;}
.x6c{left:161.709338px;}
.x5b{left:162.827740px;}
.x5c{left:164.860139px;}
.x5{left:168.535500px;}
.x66{left:169.837821px;}
.x62{left:171.311020px;}
.x7d{left:173.481000px;}
.x5e{left:176.552051px;}
.x5a{left:177.655796px;}
.x67{left:178.774675px;}
.x64{left:179.794300px;}
.x63{left:182.792316px;}
.x6a{left:185.006654px;}
.x85{left:186.411005px;}
.x68{left:187.502983px;}
.x2{left:190.554000px;}
.x82{left:192.205694px;}
.x5d{left:193.253350px;}
.x83{left:196.388655px;}
.x65{left:197.739700px;}
.x84{left:198.807021px;}
.x2a{left:203.573388px;}
.x59{left:205.896700px;}
.x2c{left:208.678842px;}
.x2b{left:210.546190px;}
.x1e{left:217.399344px;}
.x1f{left:218.430918px;}
.x35{left:233.008688px;}
.x22{left:234.935142px;}
.x36{left:237.607037px;}
.x74{left:241.936500px;}
.x6f{left:246.089744px;}
.x7e{left:250.866000px;}
.xe{left:253.971000px;}
.x1{left:259.869000px;}
.x9e{left:264.874500px;}
.x98{left:267.301500px;}
.x75{left:274.663500px;}
.x3{left:278.695500px;}
.x15{left:279.859500px;}
.x6{left:281.812500px;}
.x9c{left:285.618000px;}
.x16{left:290.494500px;}
.x8f{left:296.565822px;}
.x8e{left:298.260212px;}
.x4{left:303.355500px;}
.x9a{left:305.188500px;}
.x8d{left:308.186440px;}
.x90{left:320.420462px;}
.x96{left:324.565500px;}
.x6e{left:343.348500px;}
.x79{left:351.706500px;}
.x71{left:354.331500px;}
.x9{left:355.876500px;}
.x97{left:357.292500px;}
.x81{left:358.813500px;}
.x93{left:362.266500px;}
.x7a{left:364.252500px;}
.x1b{left:376.990500px;}
.x9d{left:381.934500px;}
.x8c{left:386.443589px;}
.x19{left:391.294500px;}
.x7b{left:396.979500px;}
.x7c{left:429.078000px;}
.x17{left:439.651500px;}
.x95{left:441.759000px;}
.x78{left:444.082500px;}
.x76{left:461.125500px;}
.x94{left:462.594000px;}
.x7f{left:465.589500px;}
.x77{left:493.852500px;}
.x18{left:520.653000px;}
.x99{left:601.599000px;}
@media print{
.vb{vertical-align:-20.314667pt;}
.v9{vertical-align:-18.848000pt;}
.v8{vertical-align:-16.181333pt;}
.v1{vertical-align:-4.714667pt;}
.v7{vertical-align:-2.791176pt;}
.v4{vertical-align:-1.167032pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.041571pt;}
.v6{vertical-align:4.124296pt;}
.v3{vertical-align:11.591195pt;}
.va{vertical-align:21.114667pt;}
.v2{vertical-align:23.669333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.001440pt;}
.lsa{letter-spacing:0.007597pt;}
.ls5{letter-spacing:0.017625pt;}
.ls8{letter-spacing:0.054871pt;}
.ls9{letter-spacing:0.173686pt;}
.ls14{letter-spacing:2.658219pt;}
.lsb{letter-spacing:6.418814pt;}
.ls12{letter-spacing:13.672739pt;}
.ls11{letter-spacing:14.545467pt;}
.ls10{letter-spacing:19.126614pt;}
.ls4{letter-spacing:25.711371pt;}
.lsd{letter-spacing:29.088939pt;}
.lsf{letter-spacing:29.090933pt;}
.lse{letter-spacing:29.093303pt;}
.ls1{letter-spacing:46.666152pt;}
.ls2{letter-spacing:46.671485pt;}
.ls6{letter-spacing:293.936210pt;}
.ls7{letter-spacing:302.644854pt;}
.ls3{letter-spacing:387.553320pt;}
.ls13{letter-spacing:472.964819pt;}
.ws50{word-spacing:-33.049467pt;}
.ws3a{word-spacing:-29.090933pt;}
.ws60{word-spacing:-22.314095pt;}
.ws31{word-spacing:-19.128267pt;}
.ws1{word-spacing:-14.545467pt;}
.ws2a{word-spacing:-13.237287pt;}
.ws37{word-spacing:-6.826800pt;}
.ws38{word-spacing:-5.973441pt;}
.ws2b{word-spacing:-5.701158pt;}
.ws2c{word-spacing:-4.881995pt;}
.ws65{word-spacing:-3.200003pt;}
.ws4a{word-spacing:-2.734548pt;}
.ws8{word-spacing:-1.955331pt;}
.ws4{word-spacing:-1.512729pt;}
.ws4e{word-spacing:-1.280001pt;}
.ws13{word-spacing:-1.015093pt;}
.ws3c{word-spacing:-0.872728pt;}
.ws3d{word-spacing:-0.814546pt;}
.ws69{word-spacing:-0.174546pt;}
.ws6a{word-spacing:-0.137858pt;}
.ws3b{word-spacing:-0.058182pt;}
.ws39{word-spacing:-0.023154pt;}
.ws26{word-spacing:-0.005171pt;}
.ws5e{word-spacing:-0.004744pt;}
.ws10{word-spacing:-0.004475pt;}
.ws42{word-spacing:-0.004147pt;}
.ws57{word-spacing:-0.004102pt;}
.ws30{word-spacing:-0.003977pt;}
.ws5f{word-spacing:-0.003695pt;}
.ws2e{word-spacing:-0.003607pt;}
.wse{word-spacing:-0.003310pt;}
.ws45{word-spacing:-0.003207pt;}
.ws12{word-spacing:-0.003186pt;}
.ws52{word-spacing:-0.003090pt;}
.ws6f{word-spacing:-0.002613pt;}
.ws2d{word-spacing:-0.002587pt;}
.ws3{word-spacing:-0.002515pt;}
.ws2{word-spacing:-0.002395pt;}
.ws35{word-spacing:-0.002375pt;}
.ws6b{word-spacing:-0.002182pt;}
.ws6e{word-spacing:-0.002108pt;}
.ws54{word-spacing:-0.002027pt;}
.ws23{word-spacing:-0.001893pt;}
.ws5c{word-spacing:-0.001844pt;}
.ws11{word-spacing:-0.001603pt;}
.wsd{word-spacing:-0.001532pt;}
.ws5b{word-spacing:-0.001333pt;}
.ws55{word-spacing:-0.001315pt;}
.wsa{word-spacing:-0.001201pt;}
.ws5d{word-spacing:-0.001180pt;}
.ws32{word-spacing:-0.001147pt;}
.ws3f{word-spacing:-0.001125pt;}
.ws66{word-spacing:-0.000716pt;}
.ws62{word-spacing:-0.000692pt;}
.wsf{word-spacing:-0.000651pt;}
.ws9{word-spacing:-0.000524pt;}
.ws64{word-spacing:-0.000348pt;}
.ws6c{word-spacing:-0.000309pt;}
.ws67{word-spacing:-0.000308pt;}
.ws2f{word-spacing:-0.000171pt;}
.ws63{word-spacing:-0.000147pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:0.000270pt;}
.wsb{word-spacing:0.000296pt;}
.ws53{word-spacing:0.000297pt;}
.wsc{word-spacing:0.000338pt;}
.ws44{word-spacing:0.000879pt;}
.ws6d{word-spacing:0.000907pt;}
.ws68{word-spacing:0.001289pt;}
.ws34{word-spacing:0.001394pt;}
.ws51{word-spacing:0.001779pt;}
.ws25{word-spacing:0.003307pt;}
.ws70{word-spacing:0.003827pt;}
.ws61{word-spacing:0.042073pt;}
.ws49{word-spacing:0.116364pt;}
.ws4c{word-spacing:0.290909pt;}
.ws29{word-spacing:1.978183pt;}
.ws56{word-spacing:2.430295pt;}
.ws3e{word-spacing:2.443638pt;}
.ws1f{word-spacing:3.241338pt;}
.ws1a{word-spacing:3.270717pt;}
.ws20{word-spacing:3.286174pt;}
.ws16{word-spacing:3.314339pt;}
.ws19{word-spacing:3.330462pt;}
.ws15{word-spacing:3.365664pt;}
.ws14{word-spacing:3.386351pt;}
.ws1b{word-spacing:3.486116pt;}
.ws28{word-spacing:4.189094pt;}
.ws4b{word-spacing:4.421822pt;}
.ws41{word-spacing:4.538186pt;}
.ws40{word-spacing:5.061822pt;}
.ws27{word-spacing:6.109096pt;}
.ws17{word-spacing:8.716153pt;}
.ws18{word-spacing:8.928090pt;}
.ws1c{word-spacing:9.478883pt;}
.ws21{word-spacing:9.623330pt;}
.ws7{word-spacing:11.646973pt;}
.ws33{word-spacing:14.487285pt;}
.ws47{word-spacing:17.221833pt;}
.ws6{word-spacing:17.980546pt;}
.ws46{word-spacing:22.690928pt;}
.ws36{word-spacing:24.507274pt;}
.ws1e{word-spacing:25.395628pt;}
.ws1d{word-spacing:29.593600pt;}
.ws4d{word-spacing:33.570937pt;}
.ws48{word-spacing:50.676406pt;}
.ws22{word-spacing:97.710392pt;}
.ws4f{word-spacing:158.661950pt;}
.ws5{word-spacing:164.214200pt;}
.ws5a{word-spacing:206.934553pt;}
.ws43{word-spacing:209.875764pt;}
.ws59{word-spacing:224.485652pt;}
.ws58{word-spacing:443.697745pt;}
._12{margin-left:-156.366350pt;}
._11{margin-left:-143.897002pt;}
._29{margin-left:-113.176000pt;}
._28{margin-left:-96.042154pt;}
._1e{margin-left:-94.872363pt;}
._14{margin-left:-81.353780pt;}
._16{margin-left:-75.014083pt;}
._1d{margin-left:-59.247808pt;}
._21{margin-left:-49.483189pt;}
._15{margin-left:-46.641835pt;}
._19{margin-left:-43.765926pt;}
._1c{margin-left:-42.605819pt;}
._10{margin-left:-39.995579pt;}
._2a{margin-left:-14.663342pt;}
._b{margin-left:-7.796370pt;}
._0{margin-left:-4.945459pt;}
._23{margin-left:-3.665458pt;}
._8{margin-left:-2.750486pt;}
._7{margin-left:-1.147699pt;}
._a{width:0.989092pt;}
._3{width:1.882387pt;}
._4{width:3.152999pt;}
._1{width:4.141252pt;}
._1b{width:5.157947pt;}
._2{width:6.305997pt;}
._22{width:7.346853pt;}
._d{width:9.309116pt;}
._17{width:10.212455pt;}
._41{width:13.820211pt;}
._2c{width:15.090018pt;}
._f{width:16.565894pt;}
._25{width:17.459438pt;}
._1a{width:20.647887pt;}
._33{width:21.729711pt;}
._e{width:22.800897pt;}
._31{width:24.113598pt;}
._24{width:25.122578pt;}
._2e{width:30.429116pt;}
._13{width:45.330606pt;}
._5{width:63.506022pt;}
._3f{width:65.887766pt;}
._6{width:71.476156pt;}
._1f{width:87.626917pt;}
._2f{width:94.789515pt;}
._20{width:104.810997pt;}
._3c{width:121.217700pt;}
._3d{width:134.663412pt;}
._40{width:150.666712pt;}
._9{width:163.766017pt;}
._2d{width:186.604281pt;}
._30{width:242.152820pt;}
._3e{width:246.180061pt;}
._35{width:288.407513pt;}
._39{width:311.943773pt;}
._42{width:321.354877pt;}
._36{width:328.320274pt;}
._34{width:348.800291pt;}
._18{width:365.005230pt;}
._3b{width:449.267790pt;}
._27{width:462.368465pt;}
._37{width:476.916761pt;}
._26{width:517.610896pt;}
._32{width:694.852996pt;}
._3a{width:791.971569pt;}
._2b{width:946.719396pt;}
._38{width:997.730389pt;}
._c{width:1024.931763pt;}
.fsb{font-size:4.060373pt;}
.fsf{font-size:11.041238pt;}
.fs1b{font-size:13.199767pt;}
.fs1a{font-size:13.199769pt;}
.fs18{font-size:17.165060pt;}
.fs1c{font-size:17.599617pt;}
.fs13{font-size:17.624532pt;}
.fsc{font-size:18.561707pt;}
.fs15{font-size:19.123741pt;}
.fs19{font-size:19.617243pt;}
.fs17{font-size:20.165973pt;}
.fs10{font-size:20.581796pt;}
.fs7{font-size:21.195328pt;}
.fs1e{font-size:22.688298pt;}
.fs1d{font-size:23.153846pt;}
.fs9{font-size:25.232533pt;}
.fs22{font-size:26.396800pt;}
.fs14{font-size:26.456640pt;}
.fse{font-size:27.206245pt;}
.fs11{font-size:29.415374pt;}
.fs5{font-size:30.279040pt;}
.fs3{font-size:31.880533pt;}
.fs23{font-size:35.195733pt;}
.fs12{font-size:35.288748pt;}
.fs6{font-size:35.325547pt;}
.fs16{font-size:37.645920pt;}
.fs8{font-size:40.372053pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.059680pt;}
.fsd{font-size:47.788041pt;}
.fs20{font-size:47.820800pt;}
.fsa{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs21{font-size:70.391467pt;}
.fs0{font-size:76.513067pt;}
.fs1f{font-size:132.197867pt;}
.fs24{font-size:225.252695pt;}
.y1a5{bottom:-62.844000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:3.207189pt;}
.y9{bottom:3.217333pt;}
.y63{bottom:3.793580pt;}
.y7b{bottom:4.114375pt;}
.y1d{bottom:6.375157pt;}
.y16e{bottom:7.929333pt;}
.y52{bottom:8.536429pt;}
.y65{bottom:9.070981pt;}
.y5e{bottom:11.726722pt;}
.yae{bottom:12.707639pt;}
.y64{bottom:13.711407pt;}
.y7c{bottom:13.999622pt;}
.yf1{bottom:14.096000pt;}
.yec{bottom:14.504117pt;}
.y50{bottom:14.917016pt;}
.yf4{bottom:15.330667pt;}
.yf7{bottom:16.305333pt;}
.y1c{bottom:17.187692pt;}
.y134{bottom:17.869063pt;}
.y193{bottom:18.089333pt;}
.y5b{bottom:18.107309pt;}
.y8{bottom:18.131024pt;}
.yad{bottom:18.550882pt;}
.y9e{bottom:18.665527pt;}
.y1bd{bottom:19.073333pt;}
.y1ae{bottom:19.440000pt;}
.yfd{bottom:20.433333pt;}
.ye9{bottom:21.178667pt;}
.y56{bottom:21.297601pt;}
.y13b{bottom:22.495216pt;}
.ya0{bottom:22.779902pt;}
.y5a{bottom:24.487894pt;}
.y5d{bottom:24.777921pt;}
.y9d{bottom:24.831761pt;}
.yd0{bottom:25.094667pt;}
.y7{bottom:25.464000pt;}
.y16d{bottom:25.994667pt;}
.y19e{bottom:26.250667pt;}
.y151{bottom:26.385333pt;}
.y76{bottom:26.892000pt;}
.y15c{bottom:27.054667pt;}
.y51{bottom:27.641934pt;}
.y1be{bottom:28.000000pt;}
.yaf{bottom:28.175219pt;}
.y103{bottom:28.192463pt;}
.y1a6{bottom:28.416000pt;}
.y143{bottom:28.769333pt;}
.y9f{bottom:28.946136pt;}
.y1e{bottom:29.039258pt;}
.yfc{bottom:29.732000pt;}
.y88{bottom:30.091856pt;}
.y68{bottom:30.202667pt;}
.y182{bottom:30.492000pt;}
.y5c{bottom:30.795974pt;}
.y9c{bottom:31.008652pt;}
.y1bc{bottom:31.306667pt;}
.y133{bottom:31.445235pt;}
.yf0{bottom:32.161333pt;}
.y114{bottom:32.611158pt;}
.yf3{bottom:33.396000pt;}
.y1a{bottom:33.452000pt;}
.y2d{bottom:33.898667pt;}
.y4c{bottom:33.950014pt;}
.yf6{bottom:34.370667pt;}
.y1bf{bottom:35.448000pt;}
.y168{bottom:36.305333pt;}
.y87{bottom:36.560137pt;}
.y13e{bottom:37.422667pt;}
.y58{bottom:37.865374pt;}
.y113{bottom:38.741615pt;}
.y1d1{bottom:38.794317pt;}
.y185{bottom:39.694667pt;}
.y7a{bottom:39.976718pt;}
.y192{bottom:40.140000pt;}
.ydf{bottom:40.613333pt;}
.y1a3{bottom:41.422667pt;}
.y4b{bottom:41.780734pt;}
.y150{bottom:42.326667pt;}
.yab{bottom:43.101541pt;}
.y1b{bottom:43.813333pt;}
.y86{bottom:44.268205pt;}
.y19d{bottom:44.316000pt;}
.y59{bottom:44.934774pt;}
.y75{bottom:44.957333pt;}
.y53{bottom:48.088814pt;}
.y67{bottom:48.268000pt;}
.y181{bottom:48.557333pt;}
.yff{bottom:48.564000pt;}
.yaa{bottom:48.976018pt;}
.y15b{bottom:49.105333pt;}
.y1bb{bottom:49.372000pt;}
.y142{bottom:50.040000pt;}
.y125{bottom:50.101879pt;}
.y94{bottom:50.663363pt;}
.y85{bottom:50.705253pt;}
.y1e9{bottom:50.957333pt;}
.y79{bottom:51.215646pt;}
.y57{bottom:51.242854pt;}
.y1de{bottom:52.429333pt;}
.y1ad{bottom:53.010667pt;}
.y102{bottom:53.291825pt;}
.y62{bottom:53.866660pt;}
.y1aa{bottom:54.213333pt;}
.y55{bottom:54.396894pt;}
.y19{bottom:54.722667pt;}
.ya9{bottom:54.850861pt;}
.yc6{bottom:55.833333pt;}
.y93{bottom:55.954691pt;}
.y124{bottom:56.232346pt;}
.y184{bottom:57.761333pt;}
.y54{bottom:58.312254pt;}
.y167{bottom:58.356000pt;}
.y84{bottom:58.423243pt;}
.y9a{bottom:58.600355pt;}
.y13d{bottom:59.473333pt;}
.y14f{bottom:60.922667pt;}
.y92{bottom:61.246019pt;}
.y13a{bottom:61.960461pt;}
.y191{bottom:62.190667pt;}
.y4f{bottom:62.263868pt;}
.yac{bottom:62.537618pt;}
.yde{bottom:62.664000pt;}
.y74{bottom:62.882667pt;}
.y99{bottom:63.891683pt;}
.y78{bottom:64.110685pt;}
.y83{bottom:64.891891pt;}
.y4d{bottom:65.454161pt;}
.y39{bottom:66.102667pt;}
.y91{bottom:66.537347pt;}
.y180{bottom:66.622667pt;}
.y12e{bottom:66.986839pt;}
.y1ba{bottom:67.437333pt;}
.y10{bottom:67.662667pt;}
.y121{bottom:68.597222pt;}
.y48{bottom:68.644454pt;}
.y98{bottom:69.183011pt;}
.y66{bottom:69.538667pt;}
.y16c{bottom:69.853333pt;}
.y1dd{bottom:70.496000pt;}
.y90{bottom:71.797442pt;}
.y60{bottom:71.834748pt;}
.y12d{bottom:72.351066pt;}
.y82{bottom:72.599592pt;}
.y141{bottom:72.788000pt;}
.y1e8{bottom:73.008000pt;}
.y10d{bottom:73.232867pt;}
.y1f{bottom:73.419064pt;}
.yc5{bottom:73.898667pt;}
.y15a{bottom:74.360000pt;}
.y97{bottom:74.443106pt;}
.y1d0{bottom:74.725877pt;}
.y46{bottom:75.025041pt;}
.y1ac{bottom:75.061333pt;}
.ya7{bottom:76.172341pt;}
.y1a9{bottom:76.264000pt;}
.ye8{bottom:76.697333pt;}
.y8f{bottom:77.088770pt;}
.y120{bottom:77.635152pt;}
.y101{bottom:78.391224pt;}
.y10c{bottom:78.596949pt;}
.y17f{bottom:78.865333pt;}
.y4e{bottom:78.976659pt;}
.y81{bottom:79.036640pt;}
.y96{bottom:79.734434pt;}
.y190{bottom:80.256000pt;}
.y166{bottom:80.406667pt;}
.y14e{bottom:80.848000pt;}
.y183{bottom:81.044000pt;}
.y15e{bottom:81.068000pt;}
.yb9{bottom:81.294667pt;}
.ya6{bottom:81.307501pt;}
.y13c{bottom:81.524000pt;}
.y8e{bottom:82.380098pt;}
.y45{bottom:82.928272pt;}
.y1cf{bottom:82.974877pt;}
.y38{bottom:84.168000pt;}
.y135{bottom:84.580397pt;}
.ydd{bottom:84.714667pt;}
.y95{bottom:85.025762pt;}
.y1b9{bottom:85.502667pt;}
.y80{bottom:86.754997pt;}
.y47{bottom:86.879885pt;}
.ya5{bottom:87.192267pt;}
.y8d{bottom:87.629903pt;}
.y116{bottom:88.275937pt;}
.y12c{bottom:88.708713pt;}
.y139{bottom:89.048601pt;}
.y10b{bottom:89.523283pt;}
.ycf{bottom:90.328000pt;}
.y49{bottom:90.795245pt;}
.y1ce{bottom:91.223877pt;}
.yc4{bottom:91.964000pt;}
.ya4{bottom:92.369317pt;}
.y1dc{bottom:92.546667pt;}
.y8c{bottom:92.921231pt;}
.y43{bottom:92.930667pt;}
.y115{bottom:93.147887pt;}
.y7f{bottom:93.212989pt;}
.y4a{bottom:93.949285pt;}
.y12b{bottom:94.072940pt;}
.y10a{bottom:94.887511pt;}
.y1e7{bottom:95.058667pt;}
.y11f{bottom:96.148570pt;}
.y73{bottom:96.350667pt;}
.y44{bottom:97.103325pt;}
.y1ab{bottom:97.112000pt;}
.y23{bottom:98.145881pt;}
.ya3{bottom:98.212559pt;}
.y1a8{bottom:98.314667pt;}
.ye7{bottom:98.606667pt;}
.y14d{bottom:98.913333pt;}
.yb8{bottom:99.360000pt;}
.y1cd{bottom:99.472877pt;}
.y19c{bottom:99.592000pt;}
.y61{bottom:99.990951pt;}
.y37{bottom:102.093333pt;}
.y165{bottom:102.457333pt;}
.ya2{bottom:103.399531pt;}
.y100{bottom:103.490587pt;}
.y118{bottom:103.685726pt;}
.y42{bottom:103.732000pt;}
.y9b{bottom:104.462206pt;}
.y131{bottom:104.572473pt;}
.y110{bottom:104.972159pt;}
.y18f{bottom:105.438667pt;}
.y11d{bottom:105.892471pt;}
.y1b8{bottom:106.549333pt;}
.y138{bottom:106.562310pt;}
.yf{bottom:106.684000pt;}
.y15d{bottom:107.104000pt;}
.y132{bottom:107.471798pt;}
.y1cc{bottom:107.721877pt;}
.y17e{bottom:107.856000pt;}
.y119{bottom:108.376247pt;}
.yce{bottom:108.393333pt;}
.y6{bottom:108.850667pt;}
.y7e{bottom:108.941094pt;}
.ya1{bottom:109.243141pt;}
.ydc{bottom:109.970667pt;}
.y1db{bottom:110.612000pt;}
.y130{bottom:110.702930pt;}
.y11e{bottom:110.764421pt;}
.y10f{bottom:111.102616pt;}
.y105{bottom:111.545333pt;}
.y159{bottom:111.813333pt;}
.yc3{bottom:114.014667pt;}
.y1a2{bottom:114.745333pt;}
.y7d{bottom:115.076095pt;}
.y1cb{bottom:115.970877pt;}
.y12f{bottom:116.833387pt;}
.y1e6{bottom:117.109333pt;}
.y15{bottom:117.112000pt;}
.y17a{bottom:117.133333pt;}
.y10e{bottom:117.233073pt;}
.y72{bottom:117.548000pt;}
.y20{bottom:117.936861pt;}
.ya8{bottom:118.752833pt;}
.y1a4{bottom:118.988000pt;}
.y117{bottom:119.181565pt;}
.y14c{bottom:120.964000pt;}
.yb7{bottom:121.410667pt;}
.y19b{bottom:121.642667pt;}
.y8b{bottom:122.242170pt;}
.y137{bottom:122.520132pt;}
.y11a{bottom:123.010590pt;}
.y109{bottom:123.592381pt;}
.y164{bottom:123.726667pt;}
.y1ca{bottom:124.219877pt;}
.y36{bottom:124.322667pt;}
.y1b7{bottom:124.614667pt;}
.y17d{bottom:125.922667pt;}
.ycd{bottom:126.458667pt;}
.y11b{bottom:126.604957pt;}
.y5{bottom:126.916000pt;}
.y1e5{bottom:128.406667pt;}
.y41{bottom:128.438667pt;}
.y104{bottom:128.589949pt;}
.y1da{bottom:128.677333pt;}
.y108{bottom:128.956600pt;}
.y158{bottom:129.880000pt;}
.y8a{bottom:131.804041pt;}
.yc2{bottom:132.080000pt;}
.y12a{bottom:132.152470pt;}
.y1c9{bottom:132.468877pt;}
.y179{bottom:135.198667pt;}
.ye6{bottom:136.060000pt;}
.y187{bottom:136.796000pt;}
.y129{bottom:137.516680pt;}
.y136{bottom:137.796982pt;}
.yf5{bottom:138.121333pt;}
.y18e{bottom:138.122667pt;}
.y14b{bottom:139.030667pt;}
.yf2{bottom:139.096000pt;}
.y14{bottom:139.162667pt;}
.y1d2{bottom:139.353236pt;}
.yb6{bottom:139.476000pt;}
.y71{bottom:140.296000pt;}
.yef{bottom:140.330667pt;}
.y1c8{bottom:140.717877pt;}
.y89{bottom:140.991109pt;}
.y107{bottom:141.993794pt;}
.y1b6{bottom:143.210667pt;}
.y11c{bottom:143.267565pt;}
.y19a{bottom:143.693333pt;}
.y17c{bottom:143.988000pt;}
.y40{bottom:144.378667pt;}
.y4{bottom:144.981333pt;}
.ye{bottom:145.704000pt;}
.y106{bottom:147.358013pt;}
.ycc{bottom:148.509333pt;}
.y1c7{bottom:148.966877pt;}
.yc1{bottom:150.145333pt;}
.y1d9{bottom:150.728000pt;}
.y157{bottom:151.929333pt;}
.y123{bottom:153.881188pt;}
.y178{bottom:154.501333pt;}
.y112{bottom:155.946971pt;}
.y1c6{bottom:157.215877pt;}
.ye5{bottom:158.110667pt;}
.y70{bottom:158.361333pt;}
.y34{bottom:158.780000pt;}
.y128{bottom:159.304813pt;}
.y122{bottom:159.381126pt;}
.y18d{bottom:160.173333pt;}
.y14a{bottom:161.081333pt;}
.y13{bottom:161.213333pt;}
.y1b5{bottom:161.277333pt;}
.yb5{bottom:161.526667pt;}
.y17b{bottom:161.838667pt;}
.y111{bottom:162.077310pt;}
.y21{bottom:162.316667pt;}
.y3f{bottom:162.976000pt;}
.y1e4{bottom:163.953333pt;}
.y77{bottom:164.150289pt;}
.y127{bottom:164.669023pt;}
.y1c5{bottom:165.464877pt;}
.y199{bottom:165.744000pt;}
.ydb{bottom:168.052000pt;}
.yc0{bottom:168.210667pt;}
.y1d8{bottom:168.793333pt;}
.y126{bottom:170.193713pt;}
.ycb{bottom:170.560000pt;}
.y1a1{bottom:171.261333pt;}
.y33{bottom:171.398667pt;}
.y1c4{bottom:173.713877pt;}
.yee{bottom:174.998667pt;}
.y6f{bottom:176.426667pt;}
.y156{bottom:177.965333pt;}
.yb4{bottom:179.593333pt;}
.ye4{bottom:180.161333pt;}
.y163{bottom:180.282667pt;}
.y1c3{bottom:181.962877pt;}
.y18c{bottom:182.224000pt;}
.y3e{bottom:182.901333pt;}
.y1b4{bottom:183.061333pt;}
.y149{bottom:183.132000pt;}
.y12{bottom:183.264000pt;}
.y32{bottom:184.018667pt;}
.yd{bottom:184.725333pt;}
.y2c{bottom:185.433887pt;}
.y1e3{bottom:186.004000pt;}
.ybf{bottom:186.277333pt;}
.y198{bottom:187.794667pt;}
.yca{bottom:188.625333pt;}
.yfa{bottom:189.721333pt;}
.y1d7{bottom:190.070667pt;}
.y1c2{bottom:190.211877pt;}
.y2b{bottom:192.493083pt;}
.yed{bottom:196.196000pt;}
.y31{bottom:196.637333pt;}
.y6e{bottom:197.624000pt;}
.yb3{bottom:197.658667pt;}
.y162{bottom:198.348000pt;}
.y1c1{bottom:198.460877pt;}
.y2a{bottom:199.552278pt;}
.y3{bottom:199.804000pt;}
.y3d{bottom:200.985333pt;}
.y173{bottom:201.024000pt;}
.y1b3{bottom:201.658667pt;}
.yd5{bottom:202.776000pt;}
.y155{bottom:203.221333pt;}
.y1e2{bottom:204.069333pt;}
.y18b{bottom:204.274667pt;}
.yda{bottom:204.842667pt;}
.y11{bottom:205.314667pt;}
.ye3{bottom:205.417333pt;}
.y22{bottom:206.765468pt;}
.y148{bottom:207.838667pt;}
.ybe{bottom:208.328000pt;}
.y29{bottom:208.807493pt;}
.y30{bottom:209.257333pt;}
.y197{bottom:209.704000pt;}
.y177{bottom:210.093333pt;}
.yc9{bottom:210.676000pt;}
.y28{bottom:215.866688pt;}
.y161{bottom:216.413333pt;}
.y1d6{bottom:216.838667pt;}
.y18{bottom:218.252000pt;}
.y172{bottom:219.090667pt;}
.yb2{bottom:219.709333pt;}
.y6d{bottom:219.988000pt;}
.y1b2{bottom:220.256000pt;}
.y16b{bottom:220.342667pt;}
.y2f{bottom:221.876000pt;}
.yd9{bottom:222.908000pt;}
.y27{bottom:222.925884pt;}
.yc{bottom:223.746667pt;}
.yd4{bottom:224.826667pt;}
.y18a{bottom:226.325333pt;}
.ybd{bottom:226.393333pt;}
.y147{bottom:226.436000pt;}
.y1a0{bottom:227.805333pt;}
.y176{bottom:228.160000pt;}
.y1c0{bottom:228.682625pt;}
.yc8{bottom:228.741333pt;}
.y1e1{bottom:230.105333pt;}
.y26{bottom:232.181098pt;}
.yeb{bottom:233.284000pt;}
.y160{bottom:234.478667pt;}
.y1d5{bottom:234.904000pt;}
.y171{bottom:237.156000pt;}
.yb1{bottom:237.774667pt;}
.y6c{bottom:238.053333pt;}
.y3c{bottom:238.445333pt;}
.y154{bottom:240.209333pt;}
.y25{bottom:241.436312pt;}
.ye2{bottom:242.870667pt;}
.y196{bottom:243.678667pt;}
.ybc{bottom:244.458667pt;}
.yd8{bottom:244.958667pt;}
.y175{bottom:246.225333pt;}
.y146{bottom:246.361333pt;}
.yd3{bottom:246.877333pt;}
.y1e0{bottom:248.170667pt;}
.y189{bottom:248.376000pt;}
.yf9{bottom:248.708000pt;}
.y1b1{bottom:249.632000pt;}
.y2e{bottom:251.140000pt;}
.y1d4{bottom:252.969333pt;}
.yc7{bottom:253.997333pt;}
.y16a{bottom:255.024000pt;}
.y170{bottom:255.221333pt;}
.y24{bottom:255.688751pt;}
.y6b{bottom:256.120000pt;}
.y2{bottom:256.346667pt;}
.y17{bottom:258.973333pt;}
.yb0{bottom:259.684000pt;}
.y3b{bottom:260.496000pt;}
.y35{bottom:262.186667pt;}
.y153{bottom:262.260000pt;}
.ybb{bottom:262.524000pt;}
.yb{bottom:262.766667pt;}
.ye1{bottom:264.921333pt;}
.y195{bottom:265.729333pt;}
.yf8{bottom:266.773333pt;}
.yd7{bottom:267.009333pt;}
.y1d3{bottom:267.538667pt;}
.y1b0{bottom:267.697333pt;}
.y145{bottom:268.412000pt;}
.yd2{bottom:268.928000pt;}
.y188{bottom:270.426667pt;}
.y1df{bottom:271.230667pt;}
.yfe{bottom:272.245333pt;}
.y169{bottom:273.089333pt;}
.y140{bottom:273.678667pt;}
.y6a{bottom:274.185333pt;}
.y174{bottom:277.730667pt;}
.y16f{bottom:278.172000pt;}
.y15f{bottom:278.764000pt;}
.y1{bottom:279.194667pt;}
.y16{bottom:280.244000pt;}
.y3a{bottom:282.405333pt;}
.yba{bottom:284.434667pt;}
.yd6{bottom:284.933333pt;}
.y1a7{bottom:285.653333pt;}
.ye0{bottom:286.190667pt;}
.yfb{bottom:286.305333pt;}
.yd1{bottom:286.928000pt;}
.y152{bottom:287.165333pt;}
.y1af{bottom:288.968000pt;}
.y144{bottom:290.462667pt;}
.y186{bottom:290.913333pt;}
.y194{bottom:290.985333pt;}
.y69{bottom:291.885333pt;}
.y13f{bottom:294.948000pt;}
.yea{bottom:296.226667pt;}
.y19f{bottom:317.502667pt;}
.ya{bottom:322.445333pt;}
.h15{height:4.283694pt;}
.h1a{height:8.038323pt;}
.h2c{height:10.028729pt;}
.h2b{height:10.028731pt;}
.h20{height:12.746048pt;}
.h1e{height:12.831141pt;}
.h29{height:13.041423pt;}
.h2d{height:13.371584pt;}
.h21{height:13.922607pt;}
.h16{height:14.102547pt;}
.h27{height:14.156513pt;}
.h2a{height:14.904507pt;}
.h1b{height:14.984110pt;}
.h19{height:19.806890pt;}
.h37{height:20.197161pt;}
.h1c{height:21.415197pt;}
.h6{height:22.571418pt;}
.h25{height:23.177148pt;}
.h1f{height:23.385454pt;}
.h10{height:23.441023pt;}
.h24{height:25.072183pt;}
.h1d{height:25.691174pt;}
.h2f{height:25.751218pt;}
.h2e{height:26.279615pt;}
.h38{height:26.740508pt;}
.hc{height:28.129228pt;}
.he{height:31.281655pt;}
.h11{height:31.285299pt;}
.h5{height:31.341747pt;}
.hd{height:32.817433pt;}
.h18{height:34.791000pt;}
.h33{height:36.366095pt;}
.h7{height:36.478095pt;}
.hf{height:37.505638pt;}
.h12{height:37.618778pt;}
.h13{height:39.106526pt;}
.h22{height:40.610943pt;}
.h3{height:41.192762pt;}
.h30{height:42.298217pt;}
.h9{height:42.821854pt;}
.h31{height:47.648521pt;}
.h34{height:51.209764pt;}
.h36{height:53.481017pt;}
.h2{height:54.171251pt;}
.h8{height:56.313617pt;}
.h23{height:64.746796pt;}
.ha{height:64.862095pt;}
.h4{height:80.937417pt;}
.h32{height:93.596090pt;}
.h14{height:103.516587pt;}
.h26{height:145.843200pt;}
.h17{height:148.813088pt;}
.h39{height:171.139255pt;}
.h28{height:178.798038pt;}
.h35{height:261.889505pt;}
.hb{height:267.898932pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w4{width:222.206876pt;}
.w7{width:259.276800pt;}
.w5{width:264.555744pt;}
.w6{width:296.322767pt;}
.w8{width:370.371101pt;}
.w9{width:370.386598pt;}
.w2{width:370.421406pt;}
.w3{width:449.767254pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x57{left:4.027519pt;}
.x88{left:4.994711pt;}
.x27{left:7.872921pt;}
.x1d{left:9.492709pt;}
.x11{left:11.254104pt;}
.x2e{left:14.350655pt;}
.xa{left:16.121333pt;}
.x80{left:18.897333pt;}
.x2f{left:19.804091pt;}
.x31{left:21.613359pt;}
.x14{left:23.434667pt;}
.x34{left:24.836932pt;}
.x28{left:27.383729pt;}
.xd{left:28.725333pt;}
.x72{left:30.060622pt;}
.x5f{left:32.986143pt;}
.x92{left:34.016000pt;}
.x20{left:36.907876pt;}
.xb{left:38.466667pt;}
.x4a{left:41.004503pt;}
.x10{left:42.961045pt;}
.x8b{left:44.690253pt;}
.x51{left:46.174993pt;}
.x21{left:47.576835pt;}
.x73{left:49.351187pt;}
.x44{left:51.483840pt;}
.x4b{left:55.045022pt;}
.x13{left:57.244339pt;}
.x24{left:58.928377pt;}
.x23{left:60.774323pt;}
.x48{left:62.328968pt;}
.x39{left:63.697248pt;}
.x53{left:64.827899pt;}
.xc{left:66.886667pt;}
.x89{left:67.790431pt;}
.x56{left:68.730655pt;}
.x8a{left:69.986352pt;}
.x45{left:71.460560pt;}
.x52{left:72.809155pt;}
.x55{left:74.351763pt;}
.x38{left:75.613691pt;}
.xf{left:77.478667pt;}
.x6d{left:78.560380pt;}
.x4f{left:79.798826pt;}
.x29{left:81.594074pt;}
.x54{left:82.536095pt;}
.x42{left:84.133649pt;}
.x3b{left:85.305085pt;}
.x50{left:86.356856pt;}
.x37{left:87.292362pt;}
.x1c{left:89.957124pt;}
.x47{left:91.588382pt;}
.x4e{left:93.749421pt;}
.x26{left:94.905562pt;}
.x1a{left:95.977333pt;}
.x46{left:97.751449pt;}
.x4c{left:98.694319pt;}
.x43{left:99.826102pt;}
.x4d{left:101.417567pt;}
.x3c{left:103.451436pt;}
.x3a{left:104.780488pt;}
.x25{left:106.277638pt;}
.x8{left:107.545547pt;}
.x70{left:109.357419pt;}
.x3e{left:111.767752pt;}
.x49{left:112.760612pt;}
.x3f{left:115.270022pt;}
.x7{left:117.166667pt;}
.x41{left:118.198329pt;}
.x40{left:119.852387pt;}
.x87{left:121.843145pt;}
.x58{left:123.835722pt;}
.x3d{left:124.760182pt;}
.x9b{left:125.766667pt;}
.x32{left:126.685715pt;}
.x86{left:128.665723pt;}
.x33{left:129.589664pt;}
.x30{left:131.368060pt;}
.x2d{left:133.125355pt;}
.x6b{left:134.566709pt;}
.x61{left:135.917145pt;}
.x91{left:137.092000pt;}
.x12{left:138.225645pt;}
.x60{left:139.345776pt;}
.x69{left:141.042460pt;}
.x6c{left:143.741634pt;}
.x5b{left:144.735769pt;}
.x5c{left:146.542346pt;}
.x5{left:149.809333pt;}
.x66{left:150.966952pt;}
.x62{left:152.276462pt;}
.x7d{left:154.205333pt;}
.x5e{left:156.935157pt;}
.x5a{left:157.916263pt;}
.x67{left:158.910822pt;}
.x64{left:159.817155pt;}
.x63{left:162.482058pt;}
.x6a{left:164.450360pt;}
.x85{left:165.698671pt;}
.x68{left:166.669318pt;}
.x2{left:169.381333pt;}
.x82{left:170.849505pt;}
.x5d{left:171.780755pt;}
.x83{left:174.567693pt;}
.x65{left:175.768622pt;}
.x84{left:176.717352pt;}
.x2a{left:180.954123pt;}
.x59{left:183.019289pt;}
.x2c{left:185.492304pt;}
.x2b{left:187.152169pt;}
.x1e{left:193.243861pt;}
.x1f{left:194.160816pt;}
.x35{left:207.118833pt;}
.x22{left:208.831237pt;}
.x36{left:211.206255pt;}
.x74{left:215.054667pt;}
.x6f{left:218.746439pt;}
.x7e{left:222.992000pt;}
.xe{left:225.752000pt;}
.x1{left:230.994667pt;}
.x9e{left:235.444000pt;}
.x98{left:237.601333pt;}
.x75{left:244.145333pt;}
.x3{left:247.729333pt;}
.x15{left:248.764000pt;}
.x6{left:250.500000pt;}
.x9c{left:253.882667pt;}
.x16{left:258.217333pt;}
.x8f{left:263.614064pt;}
.x8e{left:265.120189pt;}
.x4{left:269.649333pt;}
.x9a{left:271.278667pt;}
.x8d{left:273.943502pt;}
.x90{left:284.818189pt;}
.x96{left:288.502667pt;}
.x6e{left:305.198667pt;}
.x79{left:312.628000pt;}
.x71{left:314.961333pt;}
.x9{left:316.334667pt;}
.x97{left:317.593333pt;}
.x81{left:318.945333pt;}
.x93{left:322.014667pt;}
.x7a{left:323.780000pt;}
.x1b{left:335.102667pt;}
.x9d{left:339.497333pt;}
.x8c{left:343.505413pt;}
.x19{left:347.817333pt;}
.x7b{left:352.870667pt;}
.x7c{left:381.402667pt;}
.x17{left:390.801333pt;}
.x95{left:392.674667pt;}
.x78{left:394.740000pt;}
.x76{left:409.889333pt;}
.x94{left:411.194667pt;}
.x7f{left:413.857333pt;}
.x77{left:438.980000pt;}
.x18{left:462.802667pt;}
.x99{left:534.754667pt;}
}




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