
    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_015356483bdeeb4b9ac8217b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.136719;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_22a94a574208d118d573a765.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_54df245a671f41b36385f357.woff')format("woff");}.ff3{font-family:ff3;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-0.541080px;}
.lse{letter-spacing:-0.480960px;}
.ls21{letter-spacing:-0.443604px;}
.ls24{letter-spacing:-0.420840px;}
.ls23{letter-spacing:-0.360720px;}
.ls1e{letter-spacing:-0.300600px;}
.ls50{letter-spacing:-0.253488px;}
.ls3a{letter-spacing:-0.240480px;}
.ls5{letter-spacing:-0.216000px;}
.ls51{letter-spacing:-0.190116px;}
.lsb{letter-spacing:-0.180360px;}
.ls7{letter-spacing:-0.144000px;}
.ls4a{letter-spacing:-0.126744px;}
.lsd{letter-spacing:-0.120240px;}
.ls2{letter-spacing:-0.096120px;}
.ls6{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.063372px;}
.lsc{letter-spacing:-0.060120px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.060120px;}
.ls54{letter-spacing:0.063372px;}
.ls4e{letter-spacing:0.095760px;}
.ls0{letter-spacing:0.096120px;}
.ls9{letter-spacing:0.108000px;}
.ls55{letter-spacing:0.114120px;}
.ls18{letter-spacing:0.120240px;}
.ls53{letter-spacing:0.126252px;}
.ls4f{letter-spacing:0.138276px;}
.ls3{letter-spacing:0.144000px;}
.ls43{letter-spacing:0.150300px;}
.ls52{letter-spacing:0.162324px;}
.ls4{letter-spacing:0.167760px;}
.ls8{letter-spacing:0.180360px;}
.ls11{letter-spacing:0.186372px;}
.ls1f{letter-spacing:0.190116px;}
.ls12{letter-spacing:0.240480px;}
.ls22{letter-spacing:0.360720px;}
.ls37{letter-spacing:0.523044px;}
.ls1a{letter-spacing:0.541080px;}
.ls39{letter-spacing:0.607212px;}
.ls17{letter-spacing:0.901800px;}
.ls3f{letter-spacing:0.949896px;}
.ls48{letter-spacing:1.208412px;}
.ls1d{letter-spacing:1.262520px;}
.ls4b{letter-spacing:1.310616px;}
.ls4c{letter-spacing:1.334664px;}
.ls25{letter-spacing:1.623240px;}
.ls27{letter-spacing:1.671336px;}
.ls29{letter-spacing:1.983960px;}
.ls28{letter-spacing:1.995984px;}
.ls2e{letter-spacing:2.008008px;}
.ls46{letter-spacing:2.014020px;}
.ls34{letter-spacing:2.332656px;}
.ls13{letter-spacing:2.344680px;}
.ls14{letter-spacing:2.705400px;}
.ls3c{letter-spacing:2.735460px;}
.ls3d{letter-spacing:2.843676px;}
.ls36{letter-spacing:3.066120px;}
.ls42{letter-spacing:3.102192px;}
.ls41{letter-spacing:3.120228px;}
.ls1c{letter-spacing:3.426840px;}
.ls40{letter-spacing:3.438864px;}
.lsa{letter-spacing:3.787560px;}
.ls10{letter-spacing:4.148280px;}
.ls30{letter-spacing:4.509000px;}
.ls49{letter-spacing:4.569120px;}
.ls26{letter-spacing:4.827636px;}
.ls45{letter-spacing:4.869720px;}
.ls3b{letter-spacing:5.242464px;}
.ls32{letter-spacing:5.591160px;}
.ls35{letter-spacing:5.951880px;}
.ls38{letter-spacing:6.312600px;}
.ls33{letter-spacing:6.324624px;}
.ls19{letter-spacing:6.613200px;}
.lsf{letter-spacing:6.673320px;}
.ls44{letter-spacing:7.034040px;}
.ls16{letter-spacing:8.098164px;}
.ls15{letter-spacing:8.116200px;}
.ls3e{letter-spacing:8.476920px;}
.ls2d{letter-spacing:8.837640px;}
.ls2f{letter-spacing:9.919800px;}
.ls47{letter-spacing:10.641240px;}
.ls2a{letter-spacing:10.983924px;}
.ls2b{letter-spacing:10.995948px;}
.ls2c{letter-spacing:15.330600px;}
.ls4d{letter-spacing:849.090240px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(60,60,60),0 0.015em rgb(60,60,60),0.015em 0 rgb(60,60,60),0 -0.015em  rgb(60,60,60);}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 rgb(196,193,0),0 0.015em rgb(196,193,0),0.015em 0 rgb(196,193,0),0 -0.015em  rgb(196,193,0);}
.sc1{text-shadow:-0.015em 0 rgb(137,139,169),0 0.015em rgb(137,139,169),0.015em 0 rgb(137,139,169),0 -0.015em  rgb(137,139,169);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(60,60,60);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(196,193,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(137,139,169);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa6{word-spacing:-59.819400px;}
.wsa5{word-spacing:-59.699160px;}
.wsb0{word-spacing:-26.247600px;}
.wsb1{word-spacing:-26.133480px;}
.ws2e{word-spacing:-24.840000px;}
.ws0{word-spacing:-23.933880px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.wsa3{word-spacing:-16.344000px;}
.ws2f{word-spacing:-15.906383px;}
.wsab{word-spacing:-15.716267px;}
.wsae{word-spacing:-15.652895px;}
.wsac{word-spacing:-15.526151px;}
.wsa4{word-spacing:-15.462779px;}
.ws15{word-spacing:-15.090120px;}
.ws32{word-spacing:-15.030000px;}
.ws30{word-spacing:-14.969880px;}
.ws11{word-spacing:-14.909760px;}
.ws13{word-spacing:-14.849640px;}
.ws12{word-spacing:-14.789520px;}
.ws10{word-spacing:-14.729400px;}
.ws82{word-spacing:-14.669280px;}
.ws5c{word-spacing:-14.609160px;}
.ws81{word-spacing:-14.549040px;}
.ws31{word-spacing:-14.488920px;}
.ws14{word-spacing:-14.428800px;}
.ws3{word-spacing:-5.184000px;}
.ws87{word-spacing:-4.268520px;}
.ws85{word-spacing:-3.907800px;}
.wsa1{word-spacing:-3.727440px;}
.ws86{word-spacing:-3.667320px;}
.ws2c{word-spacing:-3.547080px;}
.ws2b{word-spacing:-3.306600px;}
.ws37{word-spacing:-3.186360px;}
.ws38{word-spacing:-3.066120px;}
.ws7f{word-spacing:-3.006000px;}
.ws36{word-spacing:-2.945880px;}
.ws7d{word-spacing:-2.825640px;}
.ws7e{word-spacing:-2.705400px;}
.ws7c{word-spacing:-2.645280px;}
.ws80{word-spacing:-2.585160px;}
.ws39{word-spacing:-2.525040px;}
.ws17{word-spacing:-2.464920px;}
.ws8d{word-spacing:-2.344680px;}
.ws75{word-spacing:-2.284560px;}
.ws16{word-spacing:-2.224440px;}
.ws96{word-spacing:-2.164320px;}
.ws44{word-spacing:-2.104200px;}
.ws52{word-spacing:-1.983960px;}
.ws76{word-spacing:-1.863720px;}
.ws56{word-spacing:-1.743480px;}
.ws70{word-spacing:-1.563120px;}
.ws55{word-spacing:-1.503000px;}
.ws19{word-spacing:-1.382760px;}
.ws51{word-spacing:-1.262520px;}
.ws50{word-spacing:-1.142280px;}
.ws5e{word-spacing:-1.082160px;}
.wsd{word-spacing:-1.022040px;}
.ws8e{word-spacing:-0.901800px;}
.ws62{word-spacing:-0.841680px;}
.ws26{word-spacing:-0.781560px;}
.wsa9{word-spacing:-0.697092px;}
.ws1c{word-spacing:-0.661320px;}
.ws5a{word-spacing:-0.541080px;}
.ws5f{word-spacing:-0.480960px;}
.ws1b{word-spacing:-0.420840px;}
.ws4f{word-spacing:-0.360720px;}
.ws9{word-spacing:-0.335520px;}
.wsa8{word-spacing:-0.316860px;}
.wsf{word-spacing:-0.300600px;}
.wsaa{word-spacing:-0.190116px;}
.ws35{word-spacing:-0.180360px;}
.ws5{word-spacing:-0.167760px;}
.wsad{word-spacing:-0.126744px;}
.wsa0{word-spacing:-0.120240px;}
.wsa2{word-spacing:-0.095760px;}
.wsa7{word-spacing:-0.063372px;}
.ws3f{word-spacing:-0.060120px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:0.060120px;}
.ws47{word-spacing:0.063372px;}
.wsb2{word-spacing:0.083880px;}
.ws2{word-spacing:0.096120px;}
.ws59{word-spacing:0.120240px;}
.ws9a{word-spacing:0.126744px;}
.wsaf{word-spacing:0.144000px;}
.wsc{word-spacing:0.167760px;}
.ws27{word-spacing:0.180360px;}
.wsb{word-spacing:0.216000px;}
.wsa{word-spacing:0.288000px;}
.ws42{word-spacing:0.300600px;}
.ws58{word-spacing:0.360720px;}
.ws45{word-spacing:0.420840px;}
.ws57{word-spacing:0.541080px;}
.ws8f{word-spacing:0.661320px;}
.ws5b{word-spacing:0.781560px;}
.ws88{word-spacing:0.901800px;}
.ws1a{word-spacing:1.022040px;}
.ws20{word-spacing:1.142280px;}
.ws78{word-spacing:1.262520px;}
.ws84{word-spacing:1.382760px;}
.ws21{word-spacing:1.503000px;}
.ws5d{word-spacing:1.743480px;}
.ws24{word-spacing:1.863720px;}
.ws65{word-spacing:1.983960px;}
.ws22{word-spacing:2.104200px;}
.ws91{word-spacing:2.164320px;}
.ws77{word-spacing:2.224440px;}
.ws49{word-spacing:2.344680px;}
.ws46{word-spacing:2.344766px;}
.ws66{word-spacing:2.404800px;}
.ws67{word-spacing:2.464920px;}
.ws23{word-spacing:2.585160px;}
.ws83{word-spacing:2.705400px;}
.ws48{word-spacing:2.765520px;}
.ws43{word-spacing:2.825640px;}
.ws93{word-spacing:2.885760px;}
.ws3b{word-spacing:2.945880px;}
.ws3a{word-spacing:3.066120px;}
.ws95{word-spacing:3.126240px;}
.ws3c{word-spacing:3.186360px;}
.ws4c{word-spacing:3.306600px;}
.ws71{word-spacing:3.426840px;}
.ws97{word-spacing:3.485462px;}
.ws28{word-spacing:3.547080px;}
.ws72{word-spacing:3.607200px;}
.wse{word-spacing:3.667320px;}
.ws8a{word-spacing:3.847680px;}
.ws29{word-spacing:3.907800px;}
.ws41{word-spacing:4.028040px;}
.ws4d{word-spacing:4.119183px;}
.ws99{word-spacing:4.208400px;}
.ws40{word-spacing:4.268520px;}
.ws1e{word-spacing:4.388760px;}
.ws3d{word-spacing:4.509000px;}
.ws3e{word-spacing:4.629240px;}
.ws60{word-spacing:4.749480px;}
.ws9b{word-spacing:4.989960px;}
.ws61{word-spacing:5.110200px;}
.ws92{word-spacing:5.350680px;}
.ws18{word-spacing:5.470920px;}
.ws89{word-spacing:5.711400px;}
.ws33{word-spacing:5.831640px;}
.ws90{word-spacing:5.951880px;}
.ws64{word-spacing:6.012000px;}
.ws63{word-spacing:6.072120px;}
.ws8c{word-spacing:6.192360px;}
.ws8b{word-spacing:6.312600px;}
.ws34{word-spacing:6.432840px;}
.ws1d{word-spacing:6.553080px;}
.ws4{word-spacing:6.768000px;}
.ws53{word-spacing:6.793560px;}
.ws25{word-spacing:6.913800px;}
.ws9f{word-spacing:7.034040px;}
.ws98{word-spacing:7.094160px;}
.ws7a{word-spacing:7.154280px;}
.ws54{word-spacing:7.214400px;}
.ws79{word-spacing:7.274520px;}
.ws9c{word-spacing:7.635240px;}
.ws2a{word-spacing:7.995960px;}
.ws73{word-spacing:8.236440px;}
.ws4e{word-spacing:8.428482px;}
.ws74{word-spacing:8.476920px;}
.ws94{word-spacing:8.597160px;}
.ws6e{word-spacing:8.717400px;}
.ws6f{word-spacing:8.957880px;}
.ws7b{word-spacing:9.799560px;}
.ws9e{word-spacing:10.280520px;}
.ws4a{word-spacing:10.521000px;}
.ws9d{word-spacing:10.761480px;}
.ws2d{word-spacing:10.881720px;}
.ws69{word-spacing:11.001960px;}
.ws4b{word-spacing:11.090108px;}
.ws68{word-spacing:11.122200px;}
.ws6a{word-spacing:11.242440px;}
.ws6b{word-spacing:15.150240px;}
.ws6c{word-spacing:15.751440px;}
.ws6d{word-spacing:15.871680px;}
._c{margin-left:-4.419360px;}
._3{margin-left:-3.395880px;}
._5{margin-left:-2.278800px;}
._0{margin-left:-1.057320px;}
._1{width:1.377000px;}
._6{width:3.242520px;}
._4{width:5.095440px;}
._7{width:6.963120px;}
._a{width:8.541720px;}
._b{width:9.979920px;}
._8{width:11.681316px;}
._9{width:16.292520px;}
._d{width:778.401000px;}
._2{width:846.144000px;}
._e{width:849.074760px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc3{color:rgb(196,193,0);}
.fc1{color:rgb(137,139,169);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(60,60,60);}
.fs1{font-size:47.880000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fsb{font-size:63.372044px;}
.fs9{font-size:65.880000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs8{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs2{font-size:108.000000px;}
.fsd{font-size:114.120000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:162.000000px;}
.fs7{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y218{bottom:28.710000px;}
.y33{bottom:28.713690px;}
.y2{bottom:35.640000px;}
.y32{bottom:44.550000px;}
.y31{bottom:107.730000px;}
.yd9{bottom:109.361160px;}
.y18e{bottom:110.430000px;}
.y18d{bottom:110.435490px;}
.y70{bottom:111.960000px;}
.y113{bottom:124.311960px;}
.y1d8{bottom:125.015490px;}
.yf1{bottom:125.297280px;}
.y30{bottom:129.150000px;}
.yd8{bottom:129.155670px;}
.ya7{bottom:129.203640px;}
.y18c{bottom:130.230000px;}
.y18b{bottom:130.246650px;}
.y6f{bottom:140.815260px;}
.y112{bottom:144.106470px;}
.y1d7{bottom:144.810000px;}
.y1d6{bottom:144.815490px;}
.y205{bottom:144.821160px;}
.yf0{bottom:145.091790px;}
.yd7{bottom:148.860000px;}
.ya6{bottom:148.998150px;}
.y18a{bottom:150.041160px;}
.y2f{bottom:155.288610px;}
.y140{bottom:156.857400px;}
.y6e{bottom:160.609770px;}
.y111{bottom:163.900980px;}
.y1d5{bottom:164.610000px;}
.y204{bottom:164.615670px;}
.y1d4{bottom:164.621160px;}
.yef{bottom:164.886300px;}
.ya5{bottom:168.702480px;}
.y189{bottom:169.835670px;}
.y2e{bottom:175.083120px;}
.y13f{bottom:176.561730px;}
.y6d{bottom:180.404280px;}
.y110{bottom:183.695490px;}
.y203{bottom:184.320000px;}
.y1d3{bottom:184.325490px;}
.yee{bottom:184.590630px;}
.yd6{bottom:186.390000px;}
.ya4{bottom:188.496990px;}
.y188{bottom:189.540000px;}
.y187{bottom:189.550980px;}
.y2d{bottom:194.877630px;}
.y13e{bottom:196.356240px;}
.y6c{bottom:200.108610px;}
.y10f{bottom:203.490000px;}
.y10e{bottom:203.517630px;}
.y1d2{bottom:204.120000px;}
.y1d1{bottom:204.125490px;}
.yed{bottom:204.385140px;}
.ya3{bottom:208.291500px;}
.y186{bottom:209.345490px;}
.y2c{bottom:214.581960px;}
.y13d{bottom:216.150750px;}
.yd5{bottom:216.338670px;}
.y6b{bottom:219.903120px;}
.y10d{bottom:223.221960px;}
.y1d0{bottom:223.920000px;}
.y202{bottom:223.925490px;}
.y1cf{bottom:223.930980px;}
.yec{bottom:224.179650px;}
.ya2{bottom:228.086010px;}
.y185{bottom:229.140000px;}
.y184{bottom:229.145490px;}
.y2b{bottom:234.376470px;}
.y13c{bottom:235.945260px;}
.yd4{bottom:236.133180px;}
.y6a{bottom:239.697630px;}
.y10c{bottom:243.016470px;}
.y201{bottom:243.720000px;}
.y1ce{bottom:243.725490px;}
.yeb{bottom:243.974160px;}
.ya1{bottom:247.880520px;}
.y183{bottom:248.940000px;}
.y182{bottom:248.945490px;}
.y2a{bottom:254.170980px;}
.y13b{bottom:255.739770px;}
.yd3{bottom:255.927690px;}
.y69{bottom:259.492140px;}
.y10b{bottom:262.810980px;}
.y1cd{bottom:263.520000px;}
.y1cc{bottom:263.525670px;}
.y200{bottom:263.531160px;}
.yea{bottom:263.768670px;}
.ya0{bottom:267.584850px;}
.y181{bottom:268.740000px;}
.y180{bottom:268.745670px;}
.y29{bottom:273.965490px;}
.y13a{bottom:275.444100px;}
.yd2{bottom:275.632020px;}
.y68{bottom:279.286650px;}
.y10a{bottom:282.605490px;}
.y1cb{bottom:283.230000px;}
.y1ff{bottom:283.235490px;}
.y1ca{bottom:283.240980px;}
.ye9{bottom:283.473000px;}
.y9f{bottom:287.379360px;}
.y17f{bottom:288.450000px;}
.y17e{bottom:288.466470px;}
.y28{bottom:293.760000px;}
.y139{bottom:295.238610px;}
.yd1{bottom:295.426530px;}
.y67{bottom:298.990980px;}
.y109{bottom:302.400000px;}
.y108{bottom:302.510520px;}
.y1fe{bottom:303.030000px;}
.y1c9{bottom:303.035490px;}
.y1fd{bottom:303.040980px;}
.ye8{bottom:303.267510px;}
.y9e{bottom:307.173870px;}
.y17d{bottom:308.260980px;}
.y138{bottom:315.033120px;}
.y27{bottom:315.180000px;}
.yd0{bottom:315.221040px;}
.y66{bottom:318.785490px;}
.y107{bottom:322.305030px;}
.y1c8{bottom:322.830000px;}
.y1fc{bottom:322.835490px;}
.y1c7{bottom:322.846470px;}
.ye7{bottom:323.062020px;}
.y9d{bottom:326.968380px;}
.y17c{bottom:328.055490px;}
.y137{bottom:334.827630px;}
.ycf{bottom:335.015550px;}
.y65{bottom:338.580000px;}
.y26{bottom:341.190000px;}
.y106{bottom:342.009360px;}
.y1fb{bottom:342.630000px;}
.y1c6{bottom:342.640980px;}
.y1fa{bottom:342.646650px;}
.ye6{bottom:342.856530px;}
.y9c{bottom:346.762890px;}
.y17b{bottom:347.850000px;}
.y17a{bottom:347.861160px;}
.y136{bottom:354.622140px;}
.yce{bottom:354.810060px;}
.y105{bottom:361.803870px;}
.y1c5{bottom:362.435490px;}
.y1f9{bottom:362.441160px;}
.ye5{bottom:362.651040px;}
.y9b{bottom:366.467220px;}
.y179{bottom:367.655670px;}
.y25{bottom:368.190000px;}
.y135{bottom:374.326470px;}
.ycd{bottom:374.514390px;}
.y64{bottom:375.300000px;}
.y104{bottom:381.598380px;}
.y1c4{bottom:382.230000px;}
.y1c3{bottom:382.235670px;}
.ye4{bottom:382.445550px;}
.y9a{bottom:386.261730px;}
.y178{bottom:387.360000px;}
.y177{bottom:387.365490px;}
.y134{bottom:394.120980px;}
.ycc{bottom:394.308900px;}
.y63{bottom:400.500000px;}
.y103{bottom:401.392890px;}
.y1c2{bottom:401.940000px;}
.y1c1{bottom:401.945490px;}
.ye3{bottom:402.149880px;}
.y99{bottom:406.056240px;}
.y176{bottom:407.160000px;}
.y175{bottom:407.170980px;}
.y133{bottom:413.915490px;}
.ycb{bottom:414.103410px;}
.y24{bottom:419.940000px;}
.y102{bottom:421.187400px;}
.y1c0{bottom:421.740000px;}
.y1bf{bottom:421.750980px;}
.y1f8{bottom:421.756470px;}
.ye2{bottom:421.944390px;}
.y98{bottom:425.850750px;}
.y174{bottom:426.965490px;}
.y132{bottom:433.710000px;}
.yca{bottom:433.897920px;}
.y101{bottom:440.891730px;}
.y1be{bottom:441.545490px;}
.y1f7{bottom:441.550980px;}
.ye1{bottom:441.738900px;}
.y62{bottom:442.530000px;}
.y97{bottom:445.645260px;}
.y173{bottom:446.760000px;}
.y172{bottom:446.771160px;}
.yc9{bottom:453.692430px;}
.y100{bottom:460.686240px;}
.y1bd{bottom:461.340000px;}
.y1bc{bottom:461.345490px;}
.ye0{bottom:461.533410px;}
.y23{bottom:464.220000px;}
.y96{bottom:465.439770px;}
.y171{bottom:466.565670px;}
.y131{bottom:471.150000px;}
.y61{bottom:471.330000px;}
.yc8{bottom:473.396760px;}
.yff{bottom:480.480750px;}
.y1bb{bottom:481.140000px;}
.y1f6{bottom:481.145670px;}
.ydf{bottom:481.327920px;}
.y95{bottom:485.144100px;}
.y170{bottom:486.270000px;}
.y16f{bottom:486.280980px;}
.yc7{bottom:493.191270px;}
.y60{bottom:500.185260px;}
.yfe{bottom:500.275260px;}
.y1f5{bottom:500.850000px;}
.y1f4{bottom:500.855490px;}
.y1ba{bottom:500.860980px;}
.y130{bottom:501.004620px;}
.yde{bottom:501.032250px;}
.y94{bottom:504.938610px;}
.y16e{bottom:506.075490px;}
.y217{bottom:507.870000px;}
.y22{bottom:508.050000px;}
.yc6{bottom:512.985780px;}
.y5f{bottom:519.889590px;}
.yfd{bottom:520.069770px;}
.y1f3{bottom:520.650000px;}
.y1b9{bottom:520.655490px;}
.y12f{bottom:520.799130px;}
.ydd{bottom:520.826760px;}
.y93{bottom:524.733120px;}
.y16d{bottom:525.870000px;}
.y16c{bottom:525.875490px;}
.y216{bottom:527.692140px;}
.yc5{bottom:532.780290px;}
.y21{bottom:534.960000px;}
.y5e{bottom:539.684100px;}
.yfc{bottom:539.774100px;}
.y1b8{bottom:540.450000px;}
.y1f2{bottom:540.455490px;}
.y1b7{bottom:540.466650px;}
.y12e{bottom:540.593640px;}
.ydc{bottom:540.621270px;}
.y92{bottom:544.527630px;}
.y16b{bottom:545.670000px;}
.y16a{bottom:545.680980px;}
.y215{bottom:547.486650px;}
.yc4{bottom:552.574800px;}
.y5d{bottom:559.478610px;}
.yfb{bottom:559.568610px;}
.y1f1{bottom:560.250000px;}
.y1f0{bottom:560.255490px;}
.y1b6{bottom:560.261160px;}
.y12d{bottom:560.388150px;}
.ydb{bottom:560.415780px;}
.y91{bottom:564.322140px;}
.y169{bottom:565.475490px;}
.y214{bottom:567.281160px;}
.y20{bottom:567.450000px;}
.yc3{bottom:572.279130px;}
.y5c{bottom:579.273120px;}
.yfa{bottom:579.363120px;}
.y1ef{bottom:580.050000px;}
.y1b5{bottom:580.055670px;}
.y12c{bottom:580.182660px;}
.yda{bottom:580.210290px;}
.y90{bottom:584.026470px;}
.y168{bottom:585.270000px;}
.y167{bottom:585.281160px;}
.y213{bottom:586.985490px;}
.yc2{bottom:592.073640px;}
.y5b{bottom:599.067630px;}
.yf9{bottom:599.157630px;}
.y1b4{bottom:599.760000px;}
.y1b3{bottom:599.770980px;}
.y12b{bottom:599.886990px;}
.y1f{bottom:599.914620px;}
.y8f{bottom:603.820980px;}
.y166{bottom:604.985490px;}
.y212{bottom:606.780000px;}
.yc1{bottom:611.868150px;}
.y5a{bottom:618.771960px;}
.yf8{bottom:618.952140px;}
.y1b2{bottom:619.565490px;}
.y12a{bottom:619.681500px;}
.y1e{bottom:619.709130px;}
.y8e{bottom:623.615490px;}
.y165{bottom:624.780000px;}
.y164{bottom:624.796470px;}
.yc0{bottom:631.662660px;}
.y59{bottom:638.566470px;}
.yf7{bottom:638.656470px;}
.y1b1{bottom:639.360000px;}
.y1b0{bottom:639.365490px;}
.y129{bottom:639.476010px;}
.y1d{bottom:639.503640px;}
.y211{bottom:639.810000px;}
.y8d{bottom:643.410000px;}
.y8c{bottom:643.415490px;}
.y163{bottom:644.590980px;}
.ybf{bottom:651.457170px;}
.y58{bottom:658.360980px;}
.yf6{bottom:658.450980px;}
.y1af{bottom:659.160000px;}
.y1ae{bottom:659.176650px;}
.y128{bottom:659.270520px;}
.y1c{bottom:659.298150px;}
.y8b{bottom:663.210000px;}
.y8a{bottom:663.221160px;}
.y162{bottom:664.385490px;}
.ybe{bottom:671.251680px;}
.y57{bottom:678.155490px;}
.yf5{bottom:678.245490px;}
.y1ad{bottom:678.971160px;}
.y210{bottom:678.976650px;}
.y127{bottom:679.065030px;}
.y1b{bottom:679.092660px;}
.y89{bottom:682.925490px;}
.y161{bottom:684.180000px;}
.y160{bottom:684.196650px;}
.ybd{bottom:690.956010px;}
.y56{bottom:697.950000px;}
.yf4{bottom:698.040000px;}
.y1ac{bottom:698.675490px;}
.y20f{bottom:698.680980px;}
.y126{bottom:698.769360px;}
.y1a{bottom:698.796990px;}
.y88{bottom:702.720000px;}
.y87{bottom:702.730980px;}
.y15f{bottom:703.900980px;}
.ybc{bottom:710.750520px;}
.y1ab{bottom:718.470000px;}
.y1aa{bottom:718.475490px;}
.y1ee{bottom:718.480980px;}
.y125{bottom:718.563870px;}
.y19{bottom:718.591500px;}
.y86{bottom:722.525490px;}
.y15e{bottom:723.695490px;}
.ybb{bottom:730.545030px;}
.y55{bottom:734.580000px;}
.yf3{bottom:735.480000px;}
.y1a9{bottom:738.270000px;}
.y1a8{bottom:738.275490px;}
.y20e{bottom:738.286650px;}
.y124{bottom:738.358380px;}
.y18{bottom:738.386010px;}
.y85{bottom:742.320000px;}
.y84{bottom:742.375260px;}
.y15d{bottom:743.490000px;}
.y15c{bottom:743.500980px;}
.yba{bottom:750.339540px;}
.y1a7{bottom:758.070000px;}
.y1ed{bottom:758.075490px;}
.y20d{bottom:758.081160px;}
.y1a6{bottom:758.086650px;}
.y123{bottom:758.152890px;}
.y17{bottom:758.180520px;}
.y54{bottom:759.870000px;}
.y83{bottom:762.169770px;}
.y15b{bottom:763.295490px;}
.yf2{bottom:767.880000px;}
.yb9{bottom:770.134050px;}
.y1ec{bottom:777.870000px;}
.y20c{bottom:777.875670px;}
.y1a5{bottom:777.881160px;}
.y122{bottom:777.947400px;}
.y16{bottom:777.975030px;}
.y82{bottom:781.874100px;}
.y15a{bottom:783.090000px;}
.y43{bottom:787.590000px;}
.yb8{bottom:789.838380px;}
.y20b{bottom:797.580000px;}
.y1a4{bottom:797.585490px;}
.y20a{bottom:797.590980px;}
.y121{bottom:797.651730px;}
.y15{bottom:797.679360px;}
.y81{bottom:801.668610px;}
.y53{bottom:801.900000px;}
.y159{bottom:802.816470px;}
.yb7{bottom:809.632890px;}
.y42{bottom:810.551160px;}
.y1a3{bottom:817.380000px;}
.y1a2{bottom:817.385490px;}
.y1eb{bottom:817.396470px;}
.y120{bottom:817.446240px;}
.y14{bottom:817.473870px;}
.y80{bottom:821.463120px;}
.y158{bottom:822.610980px;}
.yb6{bottom:829.427400px;}
.y41{bottom:830.345670px;}
.y52{bottom:830.610000px;}
.y1a1{bottom:837.180000px;}
.y1a0{bottom:837.190980px;}
.y209{bottom:837.196470px;}
.y11f{bottom:837.240750px;}
.y13{bottom:837.268380px;}
.y7f{bottom:841.257630px;}
.y157{bottom:842.405490px;}
.yb5{bottom:849.221910px;}
.y40{bottom:850.050000px;}
.y19f{bottom:856.985490px;}
.y208{bottom:856.990980px;}
.y11e{bottom:857.035260px;}
.y12{bottom:857.062890px;}
.y51{bottom:859.454100px;}
.y7e{bottom:861.052140px;}
.y156{bottom:862.200000px;}
.y155{bottom:862.211160px;}
.yb4{bottom:869.016420px;}
.y3f{bottom:871.020000px;}
.y19e{bottom:876.780000px;}
.y1ea{bottom:876.785490px;}
.y19d{bottom:876.813120px;}
.y11d{bottom:876.829770px;}
.y11{bottom:876.857400px;}
.y50{bottom:879.248610px;}
.y7d{bottom:880.756470px;}
.y154{bottom:882.005670px;}
.yb3{bottom:888.720750px;}
.y141{bottom:895.140000px;}
.y3e{bottom:895.860000px;}
.y1e9{bottom:896.580000px;}
.y1e8{bottom:896.585670px;}
.y19c{bottom:896.607630px;}
.y11c{bottom:896.624280px;}
.y10{bottom:896.651910px;}
.y4f{bottom:899.043120px;}
.y7c{bottom:900.550980px;}
.y153{bottom:901.710000px;}
.y152{bottom:901.720980px;}
.yb2{bottom:908.515260px;}
.y1e7{bottom:916.290000px;}
.y1e6{bottom:916.300980px;}
.y19b{bottom:916.311960px;}
.y11b{bottom:916.328610px;}
.yf{bottom:916.356240px;}
.y4e{bottom:918.837630px;}
.y3d{bottom:919.620000px;}
.y7b{bottom:920.345490px;}
.y151{bottom:921.515490px;}
.yb1{bottom:928.309770px;}
.y1e5{bottom:936.095490px;}
.y19a{bottom:936.106470px;}
.y11a{bottom:936.123120px;}
.ye{bottom:936.150750px;}
.y4d{bottom:938.541960px;}
.y7a{bottom:940.140000px;}
.y150{bottom:941.310000px;}
.y14f{bottom:941.320980px;}
.y3c{bottom:943.380000px;}
.yb0{bottom:948.104280px;}
.y1e4{bottom:955.890000px;}
.y1e3{bottom:955.895490px;}
.y199{bottom:955.900980px;}
.y207{bottom:955.906650px;}
.y119{bottom:955.917630px;}
.yd{bottom:955.945260px;}
.y4c{bottom:958.336470px;}
.y14e{bottom:961.115490px;}
.y3b{bottom:967.140000px;}
.yaf{bottom:967.898790px;}
.y1e2{bottom:975.690000px;}
.y198{bottom:975.695490px;}
.y1e1{bottom:975.701160px;}
.y118{bottom:975.712140px;}
.yc{bottom:975.739770px;}
.y79{bottom:977.580000px;}
.y4b{bottom:978.130980px;}
.y14d{bottom:980.910000px;}
.y14c{bottom:980.915670px;}
.yae{bottom:987.603120px;}
.y3a{bottom:990.000000px;}
.y197{bottom:995.490000px;}
.y1e0{bottom:995.495670px;}
.y196{bottom:995.501160px;}
.y117{bottom:995.506650px;}
.yb{bottom:995.534280px;}
.y4a{bottom:997.925490px;}
.y14b{bottom:1000.620000px;}
.y14a{bottom:1000.625490px;}
.y78{bottom:1007.307630px;}
.yad{bottom:1007.397630px;}
.y39{bottom:1010.610000px;}
.y1df{bottom:1015.200000px;}
.y195{bottom:1015.205490px;}
.y116{bottom:1015.210980px;}
.ya{bottom:1015.238610px;}
.y49{bottom:1017.720000px;}
.y149{bottom:1020.420000px;}
.y148{bottom:1020.425490px;}
.y77{bottom:1027.102140px;}
.yac{bottom:1027.192140px;}
.y21d{bottom:1033.295490px;}
.y38{bottom:1034.370000px;}
.y194{bottom:1035.000000px;}
.y115{bottom:1035.005490px;}
.y1de{bottom:1035.010980px;}
.y9{bottom:1035.033120px;}
.y48{bottom:1038.240000px;}
.y147{bottom:1040.220000px;}
.y76{bottom:1046.896650px;}
.yab{bottom:1046.986650px;}
.y21c{bottom:1053.090000px;}
.y114{bottom:1054.800000px;}
.y1dd{bottom:1054.805490px;}
.y193{bottom:1054.810980px;}
.y206{bottom:1054.816650px;}
.y8{bottom:1054.827630px;}
.y37{bottom:1058.130000px;}
.y146{bottom:1060.036650px;}
.y47{bottom:1062.000000px;}
.y75{bottom:1066.691160px;}
.yaa{bottom:1066.781160px;}
.y21b{bottom:1074.510000px;}
.y1dc{bottom:1074.600000px;}
.y192{bottom:1074.605490px;}
.y1db{bottom:1074.611160px;}
.y7{bottom:1074.622140px;}
.y145{bottom:1079.831160px;}
.y36{bottom:1081.800000px;}
.y46{bottom:1085.760000px;}
.ya9{bottom:1086.485490px;}
.y74{bottom:1086.485670px;}
.y191{bottom:1094.400000px;}
.y190{bottom:1094.405670px;}
.y6{bottom:1094.416650px;}
.y144{bottom:1099.625670px;}
.y35{bottom:1105.560000px;}
.y73{bottom:1106.190000px;}
.ya8{bottom:1106.280000px;}
.y21a{bottom:1108.170000px;}
.y45{bottom:1111.410000px;}
.y18f{bottom:1114.110000px;}
.y1da{bottom:1114.115490px;}
.y5{bottom:1114.120980px;}
.y143{bottom:1119.330000px;}
.y72{bottom:1126.800000px;}
.y34{bottom:1129.680000px;}
.y1d9{bottom:1133.910000px;}
.y4{bottom:1133.915490px;}
.y219{bottom:1142.370000px;}
.y44{bottom:1143.810000px;}
.y71{bottom:1150.560000px;}
.y142{bottom:1152.360000px;}
.y3{bottom:1153.710000px;}
.y1{bottom:1194.030000px;}
.h3{height:43.438008px;}
.h2{height:54.542461px;}
.hf{height:54.738281px;}
.he{height:57.492802px;}
.ha{height:63.770098px;}
.hc{height:65.275672px;}
.hb{height:65.320312px;}
.h6{height:70.872539px;}
.h9{height:76.098164px;}
.hd{height:82.107422px;}
.h10{height:86.760176px;}
.h5{height:87.202617px;}
.h4{height:97.980469px;}
.h7{height:123.161133px;}
.h8{height:136.845703px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x1{left:93.510000px;}
.x10{left:136.089990px;}
.x44{left:163.800000px;}
.x6b{left:169.650000px;}
.x7a{left:193.680000px;}
.x61{left:199.620000px;}
.x8{left:202.050000px;}
.x3d{left:206.010000px;}
.x80{left:211.410000px;}
.x6f{left:212.850000px;}
.x6d{left:216.090000px;}
.x2b{left:221.940000px;}
.x29{left:223.830000px;}
.x3{left:225.810000px;}
.x5a{left:227.070000px;}
.x1f{left:228.240000px;}
.x2a{left:235.890000px;}
.x13{left:237.330000px;}
.x5f{left:239.310000px;}
.x3b{left:244.350000px;}
.x21{left:246.510000px;}
.x75{left:249.750000px;}
.x4e{left:250.830000px;}
.x18{left:252.630000px;}
.x33{left:257.580000px;}
.x27{left:263.520000px;}
.x30{left:265.230000px;}
.x37{left:267.840000px;}
.x59{left:274.410000px;}
.x7c{left:275.760000px;}
.x26{left:289.710000px;}
.x52{left:291.870000px;}
.x2e{left:300.690000px;}
.x81{left:302.220000px;}
.x1a{left:308.340000px;}
.x66{left:309.510000px;}
.x40{left:314.910000px;}
.x4d{left:325.980000px;}
.x69{left:331.110000px;}
.x43{left:337.140000px;}
.x7b{left:340.830000px;}
.x62{left:342.630000px;}
.x45{left:344.880000px;}
.x60{left:353.520000px;}
.x46{left:354.870000px;}
.x35{left:362.160000px;}
.x14{left:365.310000px;}
.x7d{left:382.770000px;}
.x5c{left:384.030000px;}
.x74{left:385.560000px;}
.x72{left:388.890000px;}
.x34{left:390.060000px;}
.x5{left:402.300000px;}
.x65{left:407.790000px;}
.x76{left:409.140000px;}
.x7e{left:418.950000px;}
.x77{left:421.560000px;}
.x6a{left:424.980000px;}
.x31{left:432.450000px;}
.x20{left:434.160000px;}
.x51{left:435.330000px;}
.x67{left:437.490000px;}
.xf{left:439.470000px;}
.x2{left:442.800000px;}
.x53{left:445.230000px;}
.x63{left:458.190000px;}
.x79{left:466.020000px;}
.x2d{left:468.270000px;}
.x11{left:471.870000px;}
.x57{left:484.650000px;}
.x41{left:485.730000px;}
.x82{left:489.960000px;}
.x12{left:493.290000px;}
.x15{left:494.820000px;}
.x1d{left:498.510000px;}
.x3e{left:502.920000px;}
.x5b{left:509.580000px;}
.x5e{left:510.750000px;}
.x68{left:512.640000px;}
.x2c{left:518.940000px;}
.x25{left:520.110000px;}
.x7f{left:525.060000px;}
.x49{left:539.190000px;}
.x3a{left:544.410000px;}
.x28{left:549.540000px;}
.x4a{left:551.520000px;}
.x73{left:554.940000px;}
.x9{left:559.170000px;}
.x47{left:564.030000px;}
.x1c{left:568.620000px;}
.x3f{left:574.650000px;}
.x22{left:582.300000px;}
.x78{left:587.610000px;}
.xb{left:590.940000px;}
.x3c{left:592.470000px;}
.x6c{left:599.850000px;}
.x4f{left:605.070000px;}
.x54{left:608.580000px;}
.x64{left:610.650000px;}
.x39{left:613.170000px;}
.x4{left:620.820000px;}
.xa{left:622.890000px;}
.x19{left:628.200000px;}
.x42{left:632.610000px;}
.x6e{left:640.260000px;}
.xd{left:641.340000px;}
.x4c{left:642.690000px;}
.x48{left:645.030000px;}
.x16{left:646.830000px;}
.x83{left:651.870000px;}
.x36{left:655.020000px;}
.x23{left:661.230000px;}
.x2f{left:676.710000px;}
.x38{left:687.150000px;}
.x5d{left:704.880000px;}
.x70{left:711.000000px;}
.x7{left:714.420000px;}
.xe{left:718.920000px;}
.xc{left:724.050000px;}
.x1b{left:725.220000px;}
.x58{left:727.830000px;}
.x32{left:729.450000px;}
.x24{left:736.290000px;}
.x71{left:742.050000px;}
.x56{left:754.740000px;}
.x55{left:773.010000px;}
.x17{left:776.250000px;}
.x50{left:778.590000px;}
.x1e{left:784.620000px;}
.x4b{left:794.250000px;}
.x6{left:798.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-0.480960pt;}
.lse{letter-spacing:-0.427520pt;}
.ls21{letter-spacing:-0.394315pt;}
.ls24{letter-spacing:-0.374080pt;}
.ls23{letter-spacing:-0.320640pt;}
.ls1e{letter-spacing:-0.267200pt;}
.ls50{letter-spacing:-0.225323pt;}
.ls3a{letter-spacing:-0.213760pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls51{letter-spacing:-0.168992pt;}
.lsb{letter-spacing:-0.160320pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls4a{letter-spacing:-0.112661pt;}
.lsd{letter-spacing:-0.106880pt;}
.ls2{letter-spacing:-0.085440pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.056331pt;}
.lsc{letter-spacing:-0.053440pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.053440pt;}
.ls54{letter-spacing:0.056331pt;}
.ls4e{letter-spacing:0.085120pt;}
.ls0{letter-spacing:0.085440pt;}
.ls9{letter-spacing:0.096000pt;}
.ls55{letter-spacing:0.101440pt;}
.ls18{letter-spacing:0.106880pt;}
.ls53{letter-spacing:0.112224pt;}
.ls4f{letter-spacing:0.122912pt;}
.ls3{letter-spacing:0.128000pt;}
.ls43{letter-spacing:0.133600pt;}
.ls52{letter-spacing:0.144288pt;}
.ls4{letter-spacing:0.149120pt;}
.ls8{letter-spacing:0.160320pt;}
.ls11{letter-spacing:0.165664pt;}
.ls1f{letter-spacing:0.168992pt;}
.ls12{letter-spacing:0.213760pt;}
.ls22{letter-spacing:0.320640pt;}
.ls37{letter-spacing:0.464928pt;}
.ls1a{letter-spacing:0.480960pt;}
.ls39{letter-spacing:0.539744pt;}
.ls17{letter-spacing:0.801600pt;}
.ls3f{letter-spacing:0.844352pt;}
.ls48{letter-spacing:1.074144pt;}
.ls1d{letter-spacing:1.122240pt;}
.ls4b{letter-spacing:1.164992pt;}
.ls4c{letter-spacing:1.186368pt;}
.ls25{letter-spacing:1.442880pt;}
.ls27{letter-spacing:1.485632pt;}
.ls29{letter-spacing:1.763520pt;}
.ls28{letter-spacing:1.774208pt;}
.ls2e{letter-spacing:1.784896pt;}
.ls46{letter-spacing:1.790240pt;}
.ls34{letter-spacing:2.073472pt;}
.ls13{letter-spacing:2.084160pt;}
.ls14{letter-spacing:2.404800pt;}
.ls3c{letter-spacing:2.431520pt;}
.ls3d{letter-spacing:2.527712pt;}
.ls36{letter-spacing:2.725440pt;}
.ls42{letter-spacing:2.757504pt;}
.ls41{letter-spacing:2.773536pt;}
.ls1c{letter-spacing:3.046080pt;}
.ls40{letter-spacing:3.056768pt;}
.lsa{letter-spacing:3.366720pt;}
.ls10{letter-spacing:3.687360pt;}
.ls30{letter-spacing:4.008000pt;}
.ls49{letter-spacing:4.061440pt;}
.ls26{letter-spacing:4.291232pt;}
.ls45{letter-spacing:4.328640pt;}
.ls3b{letter-spacing:4.659968pt;}
.ls32{letter-spacing:4.969920pt;}
.ls35{letter-spacing:5.290560pt;}
.ls38{letter-spacing:5.611200pt;}
.ls33{letter-spacing:5.621888pt;}
.ls19{letter-spacing:5.878400pt;}
.lsf{letter-spacing:5.931840pt;}
.ls44{letter-spacing:6.252480pt;}
.ls16{letter-spacing:7.198368pt;}
.ls15{letter-spacing:7.214400pt;}
.ls3e{letter-spacing:7.535040pt;}
.ls2d{letter-spacing:7.855680pt;}
.ls2f{letter-spacing:8.817600pt;}
.ls47{letter-spacing:9.458880pt;}
.ls2a{letter-spacing:9.763488pt;}
.ls2b{letter-spacing:9.774176pt;}
.ls2c{letter-spacing:13.627200pt;}
.ls4d{letter-spacing:754.746880pt;}
.wsa6{word-spacing:-53.172800pt;}
.wsa5{word-spacing:-53.065920pt;}
.wsb0{word-spacing:-23.331200pt;}
.wsb1{word-spacing:-23.229760pt;}
.ws2e{word-spacing:-22.080000pt;}
.ws0{word-spacing:-21.274560pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.wsa3{word-spacing:-14.528000pt;}
.ws2f{word-spacing:-14.139007pt;}
.wsab{word-spacing:-13.970015pt;}
.wsae{word-spacing:-13.913684pt;}
.wsac{word-spacing:-13.801023pt;}
.wsa4{word-spacing:-13.744692pt;}
.ws15{word-spacing:-13.413440pt;}
.ws32{word-spacing:-13.360000pt;}
.ws30{word-spacing:-13.306560pt;}
.ws11{word-spacing:-13.253120pt;}
.ws13{word-spacing:-13.199680pt;}
.ws12{word-spacing:-13.146240pt;}
.ws10{word-spacing:-13.092800pt;}
.ws82{word-spacing:-13.039360pt;}
.ws5c{word-spacing:-12.985920pt;}
.ws81{word-spacing:-12.932480pt;}
.ws31{word-spacing:-12.879040pt;}
.ws14{word-spacing:-12.825600pt;}
.ws3{word-spacing:-4.608000pt;}
.ws87{word-spacing:-3.794240pt;}
.ws85{word-spacing:-3.473600pt;}
.wsa1{word-spacing:-3.313280pt;}
.ws86{word-spacing:-3.259840pt;}
.ws2c{word-spacing:-3.152960pt;}
.ws2b{word-spacing:-2.939200pt;}
.ws37{word-spacing:-2.832320pt;}
.ws38{word-spacing:-2.725440pt;}
.ws7f{word-spacing:-2.672000pt;}
.ws36{word-spacing:-2.618560pt;}
.ws7d{word-spacing:-2.511680pt;}
.ws7e{word-spacing:-2.404800pt;}
.ws7c{word-spacing:-2.351360pt;}
.ws80{word-spacing:-2.297920pt;}
.ws39{word-spacing:-2.244480pt;}
.ws17{word-spacing:-2.191040pt;}
.ws8d{word-spacing:-2.084160pt;}
.ws75{word-spacing:-2.030720pt;}
.ws16{word-spacing:-1.977280pt;}
.ws96{word-spacing:-1.923840pt;}
.ws44{word-spacing:-1.870400pt;}
.ws52{word-spacing:-1.763520pt;}
.ws76{word-spacing:-1.656640pt;}
.ws56{word-spacing:-1.549760pt;}
.ws70{word-spacing:-1.389440pt;}
.ws55{word-spacing:-1.336000pt;}
.ws19{word-spacing:-1.229120pt;}
.ws51{word-spacing:-1.122240pt;}
.ws50{word-spacing:-1.015360pt;}
.ws5e{word-spacing:-0.961920pt;}
.wsd{word-spacing:-0.908480pt;}
.ws8e{word-spacing:-0.801600pt;}
.ws62{word-spacing:-0.748160pt;}
.ws26{word-spacing:-0.694720pt;}
.wsa9{word-spacing:-0.619638pt;}
.ws1c{word-spacing:-0.587840pt;}
.ws5a{word-spacing:-0.480960pt;}
.ws5f{word-spacing:-0.427520pt;}
.ws1b{word-spacing:-0.374080pt;}
.ws4f{word-spacing:-0.320640pt;}
.ws9{word-spacing:-0.298240pt;}
.wsa8{word-spacing:-0.281654pt;}
.wsf{word-spacing:-0.267200pt;}
.wsaa{word-spacing:-0.168992pt;}
.ws35{word-spacing:-0.160320pt;}
.ws5{word-spacing:-0.149120pt;}
.wsad{word-spacing:-0.112661pt;}
.wsa0{word-spacing:-0.106880pt;}
.wsa2{word-spacing:-0.085120pt;}
.wsa7{word-spacing:-0.056331pt;}
.ws3f{word-spacing:-0.053440pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.053440pt;}
.ws47{word-spacing:0.056331pt;}
.wsb2{word-spacing:0.074560pt;}
.ws2{word-spacing:0.085440pt;}
.ws59{word-spacing:0.106880pt;}
.ws9a{word-spacing:0.112661pt;}
.wsaf{word-spacing:0.128000pt;}
.wsc{word-spacing:0.149120pt;}
.ws27{word-spacing:0.160320pt;}
.wsb{word-spacing:0.192000pt;}
.wsa{word-spacing:0.256000pt;}
.ws42{word-spacing:0.267200pt;}
.ws58{word-spacing:0.320640pt;}
.ws45{word-spacing:0.374080pt;}
.ws57{word-spacing:0.480960pt;}
.ws8f{word-spacing:0.587840pt;}
.ws5b{word-spacing:0.694720pt;}
.ws88{word-spacing:0.801600pt;}
.ws1a{word-spacing:0.908480pt;}
.ws20{word-spacing:1.015360pt;}
.ws78{word-spacing:1.122240pt;}
.ws84{word-spacing:1.229120pt;}
.ws21{word-spacing:1.336000pt;}
.ws5d{word-spacing:1.549760pt;}
.ws24{word-spacing:1.656640pt;}
.ws65{word-spacing:1.763520pt;}
.ws22{word-spacing:1.870400pt;}
.ws91{word-spacing:1.923840pt;}
.ws77{word-spacing:1.977280pt;}
.ws49{word-spacing:2.084160pt;}
.ws46{word-spacing:2.084236pt;}
.ws66{word-spacing:2.137600pt;}
.ws67{word-spacing:2.191040pt;}
.ws23{word-spacing:2.297920pt;}
.ws83{word-spacing:2.404800pt;}
.ws48{word-spacing:2.458240pt;}
.ws43{word-spacing:2.511680pt;}
.ws93{word-spacing:2.565120pt;}
.ws3b{word-spacing:2.618560pt;}
.ws3a{word-spacing:2.725440pt;}
.ws95{word-spacing:2.778880pt;}
.ws3c{word-spacing:2.832320pt;}
.ws4c{word-spacing:2.939200pt;}
.ws71{word-spacing:3.046080pt;}
.ws97{word-spacing:3.098189pt;}
.ws28{word-spacing:3.152960pt;}
.ws72{word-spacing:3.206400pt;}
.wse{word-spacing:3.259840pt;}
.ws8a{word-spacing:3.420160pt;}
.ws29{word-spacing:3.473600pt;}
.ws41{word-spacing:3.580480pt;}
.ws4d{word-spacing:3.661496pt;}
.ws99{word-spacing:3.740800pt;}
.ws40{word-spacing:3.794240pt;}
.ws1e{word-spacing:3.901120pt;}
.ws3d{word-spacing:4.008000pt;}
.ws3e{word-spacing:4.114880pt;}
.ws60{word-spacing:4.221760pt;}
.ws9b{word-spacing:4.435520pt;}
.ws61{word-spacing:4.542400pt;}
.ws92{word-spacing:4.756160pt;}
.ws18{word-spacing:4.863040pt;}
.ws89{word-spacing:5.076800pt;}
.ws33{word-spacing:5.183680pt;}
.ws90{word-spacing:5.290560pt;}
.ws64{word-spacing:5.344000pt;}
.ws63{word-spacing:5.397440pt;}
.ws8c{word-spacing:5.504320pt;}
.ws8b{word-spacing:5.611200pt;}
.ws34{word-spacing:5.718080pt;}
.ws1d{word-spacing:5.824960pt;}
.ws4{word-spacing:6.016000pt;}
.ws53{word-spacing:6.038720pt;}
.ws25{word-spacing:6.145600pt;}
.ws9f{word-spacing:6.252480pt;}
.ws98{word-spacing:6.305920pt;}
.ws7a{word-spacing:6.359360pt;}
.ws54{word-spacing:6.412800pt;}
.ws79{word-spacing:6.466240pt;}
.ws9c{word-spacing:6.786880pt;}
.ws2a{word-spacing:7.107520pt;}
.ws73{word-spacing:7.321280pt;}
.ws4e{word-spacing:7.491984pt;}
.ws74{word-spacing:7.535040pt;}
.ws94{word-spacing:7.641920pt;}
.ws6e{word-spacing:7.748800pt;}
.ws6f{word-spacing:7.962560pt;}
.ws7b{word-spacing:8.710720pt;}
.ws9e{word-spacing:9.138240pt;}
.ws4a{word-spacing:9.352000pt;}
.ws9d{word-spacing:9.565760pt;}
.ws2d{word-spacing:9.672640pt;}
.ws69{word-spacing:9.779520pt;}
.ws4b{word-spacing:9.857874pt;}
.ws68{word-spacing:9.886400pt;}
.ws6a{word-spacing:9.993280pt;}
.ws6b{word-spacing:13.466880pt;}
.ws6c{word-spacing:14.001280pt;}
.ws6d{word-spacing:14.108160pt;}
._c{margin-left:-3.928320pt;}
._3{margin-left:-3.018560pt;}
._5{margin-left:-2.025600pt;}
._0{margin-left:-0.939840pt;}
._1{width:1.224000pt;}
._6{width:2.882240pt;}
._4{width:4.529280pt;}
._7{width:6.189440pt;}
._a{width:7.592640pt;}
._b{width:8.871040pt;}
._8{width:10.383392pt;}
._9{width:14.482240pt;}
._d{width:691.912000pt;}
._2{width:752.128000pt;}
._e{width:754.733120pt;}
.fs1{font-size:42.560000pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fsb{font-size:56.330706pt;}
.fs9{font-size:58.560000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs8{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs2{font-size:96.000000pt;}
.fsd{font-size:101.440000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:144.000000pt;}
.fs7{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y218{bottom:25.520000pt;}
.y33{bottom:25.523280pt;}
.y2{bottom:31.680000pt;}
.y32{bottom:39.600000pt;}
.y31{bottom:95.760000pt;}
.yd9{bottom:97.209920pt;}
.y18e{bottom:98.160000pt;}
.y18d{bottom:98.164880pt;}
.y70{bottom:99.520000pt;}
.y113{bottom:110.499520pt;}
.y1d8{bottom:111.124880pt;}
.yf1{bottom:111.375360pt;}
.y30{bottom:114.800000pt;}
.yd8{bottom:114.805040pt;}
.ya7{bottom:114.847680pt;}
.y18c{bottom:115.760000pt;}
.y18b{bottom:115.774800pt;}
.y6f{bottom:125.169120pt;}
.y112{bottom:128.094640pt;}
.y1d7{bottom:128.720000pt;}
.y1d6{bottom:128.724880pt;}
.y205{bottom:128.729920pt;}
.yf0{bottom:128.970480pt;}
.yd7{bottom:132.320000pt;}
.ya6{bottom:132.442800pt;}
.y18a{bottom:133.369920pt;}
.y2f{bottom:138.034320pt;}
.y140{bottom:139.428800pt;}
.y6e{bottom:142.764240pt;}
.y111{bottom:145.689760pt;}
.y1d5{bottom:146.320000pt;}
.y204{bottom:146.325040pt;}
.y1d4{bottom:146.329920pt;}
.yef{bottom:146.565600pt;}
.ya5{bottom:149.957760pt;}
.y189{bottom:150.965040pt;}
.y2e{bottom:155.629440pt;}
.y13f{bottom:156.943760pt;}
.y6d{bottom:160.359360pt;}
.y110{bottom:163.284880pt;}
.y203{bottom:163.840000pt;}
.y1d3{bottom:163.844880pt;}
.yee{bottom:164.080560pt;}
.yd6{bottom:165.680000pt;}
.ya4{bottom:167.552880pt;}
.y188{bottom:168.480000pt;}
.y187{bottom:168.489760pt;}
.y2d{bottom:173.224560pt;}
.y13e{bottom:174.538880pt;}
.y6c{bottom:177.874320pt;}
.y10f{bottom:180.880000pt;}
.y10e{bottom:180.904560pt;}
.y1d2{bottom:181.440000pt;}
.y1d1{bottom:181.444880pt;}
.yed{bottom:181.675680pt;}
.ya3{bottom:185.148000pt;}
.y186{bottom:186.084880pt;}
.y2c{bottom:190.739520pt;}
.y13d{bottom:192.134000pt;}
.yd5{bottom:192.301040pt;}
.y6b{bottom:195.469440pt;}
.y10d{bottom:198.419520pt;}
.y1d0{bottom:199.040000pt;}
.y202{bottom:199.044880pt;}
.y1cf{bottom:199.049760pt;}
.yec{bottom:199.270800pt;}
.ya2{bottom:202.743120pt;}
.y185{bottom:203.680000pt;}
.y184{bottom:203.684880pt;}
.y2b{bottom:208.334640pt;}
.y13c{bottom:209.729120pt;}
.yd4{bottom:209.896160pt;}
.y6a{bottom:213.064560pt;}
.y10c{bottom:216.014640pt;}
.y201{bottom:216.640000pt;}
.y1ce{bottom:216.644880pt;}
.yeb{bottom:216.865920pt;}
.ya1{bottom:220.338240pt;}
.y183{bottom:221.280000pt;}
.y182{bottom:221.284880pt;}
.y2a{bottom:225.929760pt;}
.y13b{bottom:227.324240pt;}
.yd3{bottom:227.491280pt;}
.y69{bottom:230.659680pt;}
.y10b{bottom:233.609760pt;}
.y1cd{bottom:234.240000pt;}
.y1cc{bottom:234.245040pt;}
.y200{bottom:234.249920pt;}
.yea{bottom:234.461040pt;}
.ya0{bottom:237.853200pt;}
.y181{bottom:238.880000pt;}
.y180{bottom:238.885040pt;}
.y29{bottom:243.524880pt;}
.y13a{bottom:244.839200pt;}
.yd2{bottom:245.006240pt;}
.y68{bottom:248.254800pt;}
.y10a{bottom:251.204880pt;}
.y1cb{bottom:251.760000pt;}
.y1ff{bottom:251.764880pt;}
.y1ca{bottom:251.769760pt;}
.ye9{bottom:251.976000pt;}
.y9f{bottom:255.448320pt;}
.y17f{bottom:256.400000pt;}
.y17e{bottom:256.414640pt;}
.y28{bottom:261.120000pt;}
.y139{bottom:262.434320pt;}
.yd1{bottom:262.601360pt;}
.y67{bottom:265.769760pt;}
.y109{bottom:268.800000pt;}
.y108{bottom:268.898240pt;}
.y1fe{bottom:269.360000pt;}
.y1c9{bottom:269.364880pt;}
.y1fd{bottom:269.369760pt;}
.ye8{bottom:269.571120pt;}
.y9e{bottom:273.043440pt;}
.y17d{bottom:274.009760pt;}
.y138{bottom:280.029440pt;}
.y27{bottom:280.160000pt;}
.yd0{bottom:280.196480pt;}
.y66{bottom:283.364880pt;}
.y107{bottom:286.493360pt;}
.y1c8{bottom:286.960000pt;}
.y1fc{bottom:286.964880pt;}
.y1c7{bottom:286.974640pt;}
.ye7{bottom:287.166240pt;}
.y9d{bottom:290.638560pt;}
.y17c{bottom:291.604880pt;}
.y137{bottom:297.624560pt;}
.ycf{bottom:297.791600pt;}
.y65{bottom:300.960000pt;}
.y26{bottom:303.280000pt;}
.y106{bottom:304.008320pt;}
.y1fb{bottom:304.560000pt;}
.y1c6{bottom:304.569760pt;}
.y1fa{bottom:304.574800pt;}
.ye6{bottom:304.761360pt;}
.y9c{bottom:308.233680pt;}
.y17b{bottom:309.200000pt;}
.y17a{bottom:309.209920pt;}
.y136{bottom:315.219680pt;}
.yce{bottom:315.386720pt;}
.y105{bottom:321.603440pt;}
.y1c5{bottom:322.164880pt;}
.y1f9{bottom:322.169920pt;}
.ye5{bottom:322.356480pt;}
.y9b{bottom:325.748640pt;}
.y179{bottom:326.805040pt;}
.y25{bottom:327.280000pt;}
.y135{bottom:332.734640pt;}
.ycd{bottom:332.901680pt;}
.y64{bottom:333.600000pt;}
.y104{bottom:339.198560pt;}
.y1c4{bottom:339.760000pt;}
.y1c3{bottom:339.765040pt;}
.ye4{bottom:339.951600pt;}
.y9a{bottom:343.343760pt;}
.y178{bottom:344.320000pt;}
.y177{bottom:344.324880pt;}
.y134{bottom:350.329760pt;}
.ycc{bottom:350.496800pt;}
.y63{bottom:356.000000pt;}
.y103{bottom:356.793680pt;}
.y1c2{bottom:357.280000pt;}
.y1c1{bottom:357.284880pt;}
.ye3{bottom:357.466560pt;}
.y99{bottom:360.938880pt;}
.y176{bottom:361.920000pt;}
.y175{bottom:361.929760pt;}
.y133{bottom:367.924880pt;}
.ycb{bottom:368.091920pt;}
.y24{bottom:373.280000pt;}
.y102{bottom:374.388800pt;}
.y1c0{bottom:374.880000pt;}
.y1bf{bottom:374.889760pt;}
.y1f8{bottom:374.894640pt;}
.ye2{bottom:375.061680pt;}
.y98{bottom:378.534000pt;}
.y174{bottom:379.524880pt;}
.y132{bottom:385.520000pt;}
.yca{bottom:385.687040pt;}
.y101{bottom:391.903760pt;}
.y1be{bottom:392.484880pt;}
.y1f7{bottom:392.489760pt;}
.ye1{bottom:392.656800pt;}
.y62{bottom:393.360000pt;}
.y97{bottom:396.129120pt;}
.y173{bottom:397.120000pt;}
.y172{bottom:397.129920pt;}
.yc9{bottom:403.282160pt;}
.y100{bottom:409.498880pt;}
.y1bd{bottom:410.080000pt;}
.y1bc{bottom:410.084880pt;}
.ye0{bottom:410.251920pt;}
.y23{bottom:412.640000pt;}
.y96{bottom:413.724240pt;}
.y171{bottom:414.725040pt;}
.y131{bottom:418.800000pt;}
.y61{bottom:418.960000pt;}
.yc8{bottom:420.797120pt;}
.yff{bottom:427.094000pt;}
.y1bb{bottom:427.680000pt;}
.y1f6{bottom:427.685040pt;}
.ydf{bottom:427.847040pt;}
.y95{bottom:431.239200pt;}
.y170{bottom:432.240000pt;}
.y16f{bottom:432.249760pt;}
.yc7{bottom:438.392240pt;}
.y60{bottom:444.609120pt;}
.yfe{bottom:444.689120pt;}
.y1f5{bottom:445.200000pt;}
.y1f4{bottom:445.204880pt;}
.y1ba{bottom:445.209760pt;}
.y130{bottom:445.337440pt;}
.yde{bottom:445.362000pt;}
.y94{bottom:448.834320pt;}
.y16e{bottom:449.844880pt;}
.y217{bottom:451.440000pt;}
.y22{bottom:451.600000pt;}
.yc6{bottom:455.987360pt;}
.y5f{bottom:462.124080pt;}
.yfd{bottom:462.284240pt;}
.y1f3{bottom:462.800000pt;}
.y1b9{bottom:462.804880pt;}
.y12f{bottom:462.932560pt;}
.ydd{bottom:462.957120pt;}
.y93{bottom:466.429440pt;}
.y16d{bottom:467.440000pt;}
.y16c{bottom:467.444880pt;}
.y216{bottom:469.059680pt;}
.yc5{bottom:473.582480pt;}
.y21{bottom:475.520000pt;}
.y5e{bottom:479.719200pt;}
.yfc{bottom:479.799200pt;}
.y1b8{bottom:480.400000pt;}
.y1f2{bottom:480.404880pt;}
.y1b7{bottom:480.414800pt;}
.y12e{bottom:480.527680pt;}
.ydc{bottom:480.552240pt;}
.y92{bottom:484.024560pt;}
.y16b{bottom:485.040000pt;}
.y16a{bottom:485.049760pt;}
.y215{bottom:486.654800pt;}
.yc4{bottom:491.177600pt;}
.y5d{bottom:497.314320pt;}
.yfb{bottom:497.394320pt;}
.y1f1{bottom:498.000000pt;}
.y1f0{bottom:498.004880pt;}
.y1b6{bottom:498.009920pt;}
.y12d{bottom:498.122800pt;}
.ydb{bottom:498.147360pt;}
.y91{bottom:501.619680pt;}
.y169{bottom:502.644880pt;}
.y214{bottom:504.249920pt;}
.y20{bottom:504.400000pt;}
.yc3{bottom:508.692560pt;}
.y5c{bottom:514.909440pt;}
.yfa{bottom:514.989440pt;}
.y1ef{bottom:515.600000pt;}
.y1b5{bottom:515.605040pt;}
.y12c{bottom:515.717920pt;}
.yda{bottom:515.742480pt;}
.y90{bottom:519.134640pt;}
.y168{bottom:520.240000pt;}
.y167{bottom:520.249920pt;}
.y213{bottom:521.764880pt;}
.yc2{bottom:526.287680pt;}
.y5b{bottom:532.504560pt;}
.yf9{bottom:532.584560pt;}
.y1b4{bottom:533.120000pt;}
.y1b3{bottom:533.129760pt;}
.y12b{bottom:533.232880pt;}
.y1f{bottom:533.257440pt;}
.y8f{bottom:536.729760pt;}
.y166{bottom:537.764880pt;}
.y212{bottom:539.360000pt;}
.yc1{bottom:543.882800pt;}
.y5a{bottom:550.019520pt;}
.yf8{bottom:550.179680pt;}
.y1b2{bottom:550.724880pt;}
.y12a{bottom:550.828000pt;}
.y1e{bottom:550.852560pt;}
.y8e{bottom:554.324880pt;}
.y165{bottom:555.360000pt;}
.y164{bottom:555.374640pt;}
.yc0{bottom:561.477920pt;}
.y59{bottom:567.614640pt;}
.yf7{bottom:567.694640pt;}
.y1b1{bottom:568.320000pt;}
.y1b0{bottom:568.324880pt;}
.y129{bottom:568.423120pt;}
.y1d{bottom:568.447680pt;}
.y211{bottom:568.720000pt;}
.y8d{bottom:571.920000pt;}
.y8c{bottom:571.924880pt;}
.y163{bottom:572.969760pt;}
.ybf{bottom:579.073040pt;}
.y58{bottom:585.209760pt;}
.yf6{bottom:585.289760pt;}
.y1af{bottom:585.920000pt;}
.y1ae{bottom:585.934800pt;}
.y128{bottom:586.018240pt;}
.y1c{bottom:586.042800pt;}
.y8b{bottom:589.520000pt;}
.y8a{bottom:589.529920pt;}
.y162{bottom:590.564880pt;}
.ybe{bottom:596.668160pt;}
.y57{bottom:602.804880pt;}
.yf5{bottom:602.884880pt;}
.y1ad{bottom:603.529920pt;}
.y210{bottom:603.534800pt;}
.y127{bottom:603.613360pt;}
.y1b{bottom:603.637920pt;}
.y89{bottom:607.044880pt;}
.y161{bottom:608.160000pt;}
.y160{bottom:608.174800pt;}
.ybd{bottom:614.183120pt;}
.y56{bottom:620.400000pt;}
.yf4{bottom:620.480000pt;}
.y1ac{bottom:621.044880pt;}
.y20f{bottom:621.049760pt;}
.y126{bottom:621.128320pt;}
.y1a{bottom:621.152880pt;}
.y88{bottom:624.640000pt;}
.y87{bottom:624.649760pt;}
.y15f{bottom:625.689760pt;}
.ybc{bottom:631.778240pt;}
.y1ab{bottom:638.640000pt;}
.y1aa{bottom:638.644880pt;}
.y1ee{bottom:638.649760pt;}
.y125{bottom:638.723440pt;}
.y19{bottom:638.748000pt;}
.y86{bottom:642.244880pt;}
.y15e{bottom:643.284880pt;}
.ybb{bottom:649.373360pt;}
.y55{bottom:652.960000pt;}
.yf3{bottom:653.760000pt;}
.y1a9{bottom:656.240000pt;}
.y1a8{bottom:656.244880pt;}
.y20e{bottom:656.254800pt;}
.y124{bottom:656.318560pt;}
.y18{bottom:656.343120pt;}
.y85{bottom:659.840000pt;}
.y84{bottom:659.889120pt;}
.y15d{bottom:660.880000pt;}
.y15c{bottom:660.889760pt;}
.yba{bottom:666.968480pt;}
.y1a7{bottom:673.840000pt;}
.y1ed{bottom:673.844880pt;}
.y20d{bottom:673.849920pt;}
.y1a6{bottom:673.854800pt;}
.y123{bottom:673.913680pt;}
.y17{bottom:673.938240pt;}
.y54{bottom:675.440000pt;}
.y83{bottom:677.484240pt;}
.y15b{bottom:678.484880pt;}
.yf2{bottom:682.560000pt;}
.yb9{bottom:684.563600pt;}
.y1ec{bottom:691.440000pt;}
.y20c{bottom:691.445040pt;}
.y1a5{bottom:691.449920pt;}
.y122{bottom:691.508800pt;}
.y16{bottom:691.533360pt;}
.y82{bottom:694.999200pt;}
.y15a{bottom:696.080000pt;}
.y43{bottom:700.080000pt;}
.yb8{bottom:702.078560pt;}
.y20b{bottom:708.960000pt;}
.y1a4{bottom:708.964880pt;}
.y20a{bottom:708.969760pt;}
.y121{bottom:709.023760pt;}
.y15{bottom:709.048320pt;}
.y81{bottom:712.594320pt;}
.y53{bottom:712.800000pt;}
.y159{bottom:713.614640pt;}
.yb7{bottom:719.673680pt;}
.y42{bottom:720.489920pt;}
.y1a3{bottom:726.560000pt;}
.y1a2{bottom:726.564880pt;}
.y1eb{bottom:726.574640pt;}
.y120{bottom:726.618880pt;}
.y14{bottom:726.643440pt;}
.y80{bottom:730.189440pt;}
.y158{bottom:731.209760pt;}
.yb6{bottom:737.268800pt;}
.y41{bottom:738.085040pt;}
.y52{bottom:738.320000pt;}
.y1a1{bottom:744.160000pt;}
.y1a0{bottom:744.169760pt;}
.y209{bottom:744.174640pt;}
.y11f{bottom:744.214000pt;}
.y13{bottom:744.238560pt;}
.y7f{bottom:747.784560pt;}
.y157{bottom:748.804880pt;}
.yb5{bottom:754.863920pt;}
.y40{bottom:755.600000pt;}
.y19f{bottom:761.764880pt;}
.y208{bottom:761.769760pt;}
.y11e{bottom:761.809120pt;}
.y12{bottom:761.833680pt;}
.y51{bottom:763.959200pt;}
.y7e{bottom:765.379680pt;}
.y156{bottom:766.400000pt;}
.y155{bottom:766.409920pt;}
.yb4{bottom:772.459040pt;}
.y3f{bottom:774.240000pt;}
.y19e{bottom:779.360000pt;}
.y1ea{bottom:779.364880pt;}
.y19d{bottom:779.389440pt;}
.y11d{bottom:779.404240pt;}
.y11{bottom:779.428800pt;}
.y50{bottom:781.554320pt;}
.y7d{bottom:782.894640pt;}
.y154{bottom:784.005040pt;}
.yb3{bottom:789.974000pt;}
.y141{bottom:795.680000pt;}
.y3e{bottom:796.320000pt;}
.y1e9{bottom:796.960000pt;}
.y1e8{bottom:796.965040pt;}
.y19c{bottom:796.984560pt;}
.y11c{bottom:796.999360pt;}
.y10{bottom:797.023920pt;}
.y4f{bottom:799.149440pt;}
.y7c{bottom:800.489760pt;}
.y153{bottom:801.520000pt;}
.y152{bottom:801.529760pt;}
.yb2{bottom:807.569120pt;}
.y1e7{bottom:814.480000pt;}
.y1e6{bottom:814.489760pt;}
.y19b{bottom:814.499520pt;}
.y11b{bottom:814.514320pt;}
.yf{bottom:814.538880pt;}
.y4e{bottom:816.744560pt;}
.y3d{bottom:817.440000pt;}
.y7b{bottom:818.084880pt;}
.y151{bottom:819.124880pt;}
.yb1{bottom:825.164240pt;}
.y1e5{bottom:832.084880pt;}
.y19a{bottom:832.094640pt;}
.y11a{bottom:832.109440pt;}
.ye{bottom:832.134000pt;}
.y4d{bottom:834.259520pt;}
.y7a{bottom:835.680000pt;}
.y150{bottom:836.720000pt;}
.y14f{bottom:836.729760pt;}
.y3c{bottom:838.560000pt;}
.yb0{bottom:842.759360pt;}
.y1e4{bottom:849.680000pt;}
.y1e3{bottom:849.684880pt;}
.y199{bottom:849.689760pt;}
.y207{bottom:849.694800pt;}
.y119{bottom:849.704560pt;}
.yd{bottom:849.729120pt;}
.y4c{bottom:851.854640pt;}
.y14e{bottom:854.324880pt;}
.y3b{bottom:859.680000pt;}
.yaf{bottom:860.354480pt;}
.y1e2{bottom:867.280000pt;}
.y198{bottom:867.284880pt;}
.y1e1{bottom:867.289920pt;}
.y118{bottom:867.299680pt;}
.yc{bottom:867.324240pt;}
.y79{bottom:868.960000pt;}
.y4b{bottom:869.449760pt;}
.y14d{bottom:871.920000pt;}
.y14c{bottom:871.925040pt;}
.yae{bottom:877.869440pt;}
.y3a{bottom:880.000000pt;}
.y197{bottom:884.880000pt;}
.y1e0{bottom:884.885040pt;}
.y196{bottom:884.889920pt;}
.y117{bottom:884.894800pt;}
.yb{bottom:884.919360pt;}
.y4a{bottom:887.044880pt;}
.y14b{bottom:889.440000pt;}
.y14a{bottom:889.444880pt;}
.y78{bottom:895.384560pt;}
.yad{bottom:895.464560pt;}
.y39{bottom:898.320000pt;}
.y1df{bottom:902.400000pt;}
.y195{bottom:902.404880pt;}
.y116{bottom:902.409760pt;}
.ya{bottom:902.434320pt;}
.y49{bottom:904.640000pt;}
.y149{bottom:907.040000pt;}
.y148{bottom:907.044880pt;}
.y77{bottom:912.979680pt;}
.yac{bottom:913.059680pt;}
.y21d{bottom:918.484880pt;}
.y38{bottom:919.440000pt;}
.y194{bottom:920.000000pt;}
.y115{bottom:920.004880pt;}
.y1de{bottom:920.009760pt;}
.y9{bottom:920.029440pt;}
.y48{bottom:922.880000pt;}
.y147{bottom:924.640000pt;}
.y76{bottom:930.574800pt;}
.yab{bottom:930.654800pt;}
.y21c{bottom:936.080000pt;}
.y114{bottom:937.600000pt;}
.y1dd{bottom:937.604880pt;}
.y193{bottom:937.609760pt;}
.y206{bottom:937.614800pt;}
.y8{bottom:937.624560pt;}
.y37{bottom:940.560000pt;}
.y146{bottom:942.254800pt;}
.y47{bottom:944.000000pt;}
.y75{bottom:948.169920pt;}
.yaa{bottom:948.249920pt;}
.y21b{bottom:955.120000pt;}
.y1dc{bottom:955.200000pt;}
.y192{bottom:955.204880pt;}
.y1db{bottom:955.209920pt;}
.y7{bottom:955.219680pt;}
.y145{bottom:959.849920pt;}
.y36{bottom:961.600000pt;}
.y46{bottom:965.120000pt;}
.ya9{bottom:965.764880pt;}
.y74{bottom:965.765040pt;}
.y191{bottom:972.800000pt;}
.y190{bottom:972.805040pt;}
.y6{bottom:972.814800pt;}
.y144{bottom:977.445040pt;}
.y35{bottom:982.720000pt;}
.y73{bottom:983.280000pt;}
.ya8{bottom:983.360000pt;}
.y21a{bottom:985.040000pt;}
.y45{bottom:987.920000pt;}
.y18f{bottom:990.320000pt;}
.y1da{bottom:990.324880pt;}
.y5{bottom:990.329760pt;}
.y143{bottom:994.960000pt;}
.y72{bottom:1001.600000pt;}
.y34{bottom:1004.160000pt;}
.y1d9{bottom:1007.920000pt;}
.y4{bottom:1007.924880pt;}
.y219{bottom:1015.440000pt;}
.y44{bottom:1016.720000pt;}
.y71{bottom:1022.720000pt;}
.y142{bottom:1024.320000pt;}
.y3{bottom:1025.520000pt;}
.y1{bottom:1061.360000pt;}
.h3{height:38.611562pt;}
.h2{height:48.482187pt;}
.hf{height:48.656250pt;}
.he{height:51.104713pt;}
.ha{height:56.684531pt;}
.hc{height:58.022820pt;}
.hb{height:58.062500pt;}
.h6{height:62.997813pt;}
.h9{height:67.642812pt;}
.hd{height:72.984375pt;}
.h10{height:77.120156pt;}
.h5{height:77.513438pt;}
.h4{height:87.093750pt;}
.h7{height:109.476562pt;}
.h8{height:121.640625pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x1{left:83.120000pt;}
.x10{left:120.968880pt;}
.x44{left:145.600000pt;}
.x6b{left:150.800000pt;}
.x7a{left:172.160000pt;}
.x61{left:177.440000pt;}
.x8{left:179.600000pt;}
.x3d{left:183.120000pt;}
.x80{left:187.920000pt;}
.x6f{left:189.200000pt;}
.x6d{left:192.080000pt;}
.x2b{left:197.280000pt;}
.x29{left:198.960000pt;}
.x3{left:200.720000pt;}
.x5a{left:201.840000pt;}
.x1f{left:202.880000pt;}
.x2a{left:209.680000pt;}
.x13{left:210.960000pt;}
.x5f{left:212.720000pt;}
.x3b{left:217.200000pt;}
.x21{left:219.120000pt;}
.x75{left:222.000000pt;}
.x4e{left:222.960000pt;}
.x18{left:224.560000pt;}
.x33{left:228.960000pt;}
.x27{left:234.240000pt;}
.x30{left:235.760000pt;}
.x37{left:238.080000pt;}
.x59{left:243.920000pt;}
.x7c{left:245.120000pt;}
.x26{left:257.520000pt;}
.x52{left:259.440000pt;}
.x2e{left:267.280000pt;}
.x81{left:268.640000pt;}
.x1a{left:274.080000pt;}
.x66{left:275.120000pt;}
.x40{left:279.920000pt;}
.x4d{left:289.760000pt;}
.x69{left:294.320000pt;}
.x43{left:299.680000pt;}
.x7b{left:302.960000pt;}
.x62{left:304.560000pt;}
.x45{left:306.560000pt;}
.x60{left:314.240000pt;}
.x46{left:315.440000pt;}
.x35{left:321.920000pt;}
.x14{left:324.720000pt;}
.x7d{left:340.240000pt;}
.x5c{left:341.360000pt;}
.x74{left:342.720000pt;}
.x72{left:345.680000pt;}
.x34{left:346.720000pt;}
.x5{left:357.600000pt;}
.x65{left:362.480000pt;}
.x76{left:363.680000pt;}
.x7e{left:372.400000pt;}
.x77{left:374.720000pt;}
.x6a{left:377.760000pt;}
.x31{left:384.400000pt;}
.x20{left:385.920000pt;}
.x51{left:386.960000pt;}
.x67{left:388.880000pt;}
.xf{left:390.640000pt;}
.x2{left:393.600000pt;}
.x53{left:395.760000pt;}
.x63{left:407.280000pt;}
.x79{left:414.240000pt;}
.x2d{left:416.240000pt;}
.x11{left:419.440000pt;}
.x57{left:430.800000pt;}
.x41{left:431.760000pt;}
.x82{left:435.520000pt;}
.x12{left:438.480000pt;}
.x15{left:439.840000pt;}
.x1d{left:443.120000pt;}
.x3e{left:447.040000pt;}
.x5b{left:452.960000pt;}
.x5e{left:454.000000pt;}
.x68{left:455.680000pt;}
.x2c{left:461.280000pt;}
.x25{left:462.320000pt;}
.x7f{left:466.720000pt;}
.x49{left:479.280000pt;}
.x3a{left:483.920000pt;}
.x28{left:488.480000pt;}
.x4a{left:490.240000pt;}
.x73{left:493.280000pt;}
.x9{left:497.040000pt;}
.x47{left:501.360000pt;}
.x1c{left:505.440000pt;}
.x3f{left:510.800000pt;}
.x22{left:517.600000pt;}
.x78{left:522.320000pt;}
.xb{left:525.280000pt;}
.x3c{left:526.640000pt;}
.x6c{left:533.200000pt;}
.x4f{left:537.840000pt;}
.x54{left:540.960000pt;}
.x64{left:542.800000pt;}
.x39{left:545.040000pt;}
.x4{left:551.840000pt;}
.xa{left:553.680000pt;}
.x19{left:558.400000pt;}
.x42{left:562.320000pt;}
.x6e{left:569.120000pt;}
.xd{left:570.080000pt;}
.x4c{left:571.280000pt;}
.x48{left:573.360000pt;}
.x16{left:574.960000pt;}
.x83{left:579.440000pt;}
.x36{left:582.240000pt;}
.x23{left:587.760000pt;}
.x2f{left:601.520000pt;}
.x38{left:610.800000pt;}
.x5d{left:626.560000pt;}
.x70{left:632.000000pt;}
.x7{left:635.040000pt;}
.xe{left:639.040000pt;}
.xc{left:643.600000pt;}
.x1b{left:644.640000pt;}
.x58{left:646.960000pt;}
.x32{left:648.400000pt;}
.x24{left:654.480000pt;}
.x71{left:659.600000pt;}
.x56{left:670.880000pt;}
.x55{left:687.120000pt;}
.x17{left:690.000000pt;}
.x50{left:692.080000pt;}
.x1e{left:697.440000pt;}
.x4b{left:706.000000pt;}
.x6{left:710.160000pt;}
}




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