
    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_8b53b6c6dd84f8fd0b7950cb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.060547;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_71830b6713be793e7c9e8cea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_da1fe7ae3611b1bf3625d11e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6077c1f9d6204f5cc7e08537.woff')format("woff");}.ff4{font-family:ff4;line-height:1.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5e226d2fe7fe8c97fec2be9c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.049316;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_8e0077890a97288c80c846dc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5882376e21a8ede4cf151a83.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_36dc8ec97c5e7d9e7b991668.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58a29cb3060e235d40e4b4c5.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_9cb1744cc1659a78386ce4e8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_d359268c42feb5eadcb6f2bb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.710938;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_a273e286eb736e2a045562c0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls58{letter-spacing:-6.867000px;}
.ls49{letter-spacing:-5.670000px;}
.ls5c{letter-spacing:-5.418000px;}
.ls9{letter-spacing:-4.956000px;}
.ls8{letter-spacing:-4.788000px;}
.ls2{letter-spacing:-4.752000px;}
.ls6{letter-spacing:-4.536000px;}
.ls3e{letter-spacing:-3.816000px;}
.ls4a{letter-spacing:-3.744000px;}
.ls24{letter-spacing:-2.664000px;}
.ls25{letter-spacing:-2.592000px;}
.ls1c{letter-spacing:-2.538000px;}
.ls64{letter-spacing:-2.496000px;}
.ls1b{letter-spacing:-2.430000px;}
.ls5{letter-spacing:-2.268000px;}
.ls5d{letter-spacing:-2.232000px;}
.ls74{letter-spacing:-2.160000px;}
.ls4b{letter-spacing:-2.106000px;}
.ls31{letter-spacing:-2.088000px;}
.ls4{letter-spacing:-1.944000px;}
.ls3{letter-spacing:-1.920000px;}
.ls2c{letter-spacing:-1.800000px;}
.ls27{letter-spacing:-1.728000px;}
.ls4e{letter-spacing:-1.656000px;}
.ls68{letter-spacing:-1.632000px;}
.ls46{letter-spacing:-1.620000px;}
.lsa{letter-spacing:-1.596000px;}
.ls2b{letter-spacing:-1.512000px;}
.ls54{letter-spacing:-1.500000px;}
.lsf{letter-spacing:-1.404000px;}
.ls2a{letter-spacing:-1.368000px;}
.ls13{letter-spacing:-1.296000px;}
.ls6b{letter-spacing:-1.248000px;}
.ls38{letter-spacing:-1.224000px;}
.ls5b{letter-spacing:-1.197000px;}
.ls7{letter-spacing:-1.176000px;}
.ls23{letter-spacing:-1.152000px;}
.ls4c{letter-spacing:-1.122000px;}
.ls21{letter-spacing:-1.080000px;}
.ls56{letter-spacing:-1.020000px;}
.ls29{letter-spacing:-1.008000px;}
.ls4d{letter-spacing:-0.972000px;}
.ls22{letter-spacing:-0.936000px;}
.ls47{letter-spacing:-0.924000px;}
.ls77{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.864000px;}
.ls44{letter-spacing:-0.792000px;}
.ls55{letter-spacing:-0.600000px;}
.ls48{letter-spacing:-0.594000px;}
.ls43{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.486000px;}
.ls19{letter-spacing:-0.480000px;}
.ls32{letter-spacing:-0.432000px;}
.ls51{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.300000px;}
.ls6a{letter-spacing:-0.288000px;}
.ls65{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.216000px;}
.ls57{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.003000px;}
.ls67{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.054000px;}
.ls78{letter-spacing:0.120000px;}
.ls69{letter-spacing:0.144000px;}
.ls62{letter-spacing:0.192000px;}
.ls36{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.543000px;}
.ls37{letter-spacing:0.648000px;}
.ls59{letter-spacing:0.733200px;}
.ls63{letter-spacing:0.816000px;}
.ls3b{letter-spacing:0.863400px;}
.ls3c{letter-spacing:0.864000px;}
.ls66{letter-spacing:0.960000px;}
.ls26{letter-spacing:1.008000px;}
.ls18{letter-spacing:1.080000px;}
.ls73{letter-spacing:1.260000px;}
.ls76{letter-spacing:1.296000px;}
.ls33{letter-spacing:1.341000px;}
.ls75{letter-spacing:1.350000px;}
.ls35{letter-spacing:1.907400px;}
.ls3a{letter-spacing:1.924800px;}
.lsd{letter-spacing:2.376000px;}
.ls30{letter-spacing:3.243000px;}
.ls40{letter-spacing:3.332400px;}
.ls3f{letter-spacing:3.333000px;}
.ls6e{letter-spacing:3.600000px;}
.ls17{letter-spacing:3.744000px;}
.ls71{letter-spacing:3.780000px;}
.ls53{letter-spacing:3.878400px;}
.ls52{letter-spacing:3.879000px;}
.ls41{letter-spacing:3.952200px;}
.ls50{letter-spacing:4.003200px;}
.ls5f{letter-spacing:4.080000px;}
.ls6d{letter-spacing:4.416000px;}
.ls42{letter-spacing:4.537200px;}
.ls6f{letter-spacing:4.560000px;}
.ls45{letter-spacing:4.608000px;}
.ls70{letter-spacing:4.704000px;}
.ls61{letter-spacing:4.752000px;}
.ls5a{letter-spacing:4.752600px;}
.ls60{letter-spacing:4.800000px;}
.ls6c{letter-spacing:4.896000px;}
.ls1e{letter-spacing:5.568000px;}
.ls14{letter-spacing:5.664000px;}
.ls20{letter-spacing:5.700000px;}
.ls2f{letter-spacing:5.865000px;}
.ls2e{letter-spacing:5.865600px;}
.ls5e{letter-spacing:5.880000px;}
.ls2d{letter-spacing:6.000000px;}
.ls3d{letter-spacing:6.615600px;}
.ls28{letter-spacing:6.840000px;}
.ls4f{letter-spacing:7.696800px;}
.ls34{letter-spacing:9.047400px;}
.lsb{letter-spacing:10.956000px;}
.lse{letter-spacing:10.962000px;}
.ls16{letter-spacing:12.474000px;}
.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;}
}
.ws3{word-spacing:-28.404000px;}
.ws4{word-spacing:-28.080000px;}
.ws10{word-spacing:-27.648000px;}
.wsa{word-spacing:-26.136000px;}
.ws5{word-spacing:-25.812000px;}
.ws2{word-spacing:-25.596000px;}
.ws6{word-spacing:-22.428000px;}
.ws9{word-spacing:-22.008000px;}
.ws6f{word-spacing:-21.240000px;}
.ws45{word-spacing:-20.880000px;}
.ws86{word-spacing:-20.640000px;}
.ws1f{word-spacing:-20.232000px;}
.ws72{word-spacing:-19.368000px;}
.ws3a{word-spacing:-19.296000px;}
.ws20{word-spacing:-19.152000px;}
.ws52{word-spacing:-19.008000px;}
.ws7{word-spacing:-18.816000px;}
.ws8{word-spacing:-18.648000px;}
.ws0{word-spacing:-18.546000px;}
.ws91{word-spacing:-18.120000px;}
.ws63{word-spacing:-16.860000px;}
.ws61{word-spacing:-16.704000px;}
.ws55{word-spacing:-16.698000px;}
.ws94{word-spacing:-16.524000px;}
.ws95{word-spacing:-16.470000px;}
.ws23{word-spacing:-16.272000px;}
.ws66{word-spacing:-16.260000px;}
.ws22{word-spacing:-16.056000px;}
.ws24{word-spacing:-15.984000px;}
.ws96{word-spacing:-15.960000px;}
.ws70{word-spacing:-15.696000px;}
.ws1{word-spacing:-15.228000px;}
.ws21{word-spacing:-15.192000px;}
.wsd{word-spacing:-15.174000px;}
.wsc{word-spacing:-15.066000px;}
.wse{word-spacing:-14.958000px;}
.ws53{word-spacing:-14.820000px;}
.ws1d{word-spacing:-14.688000px;}
.ws62{word-spacing:-14.460000px;}
.ws7d{word-spacing:-14.448000px;}
.ws7b{word-spacing:-14.304000px;}
.ws65{word-spacing:-14.220000px;}
.ws1e{word-spacing:-14.162400px;}
.ws51{word-spacing:-13.986000px;}
.wsf{word-spacing:-13.878000px;}
.ws64{word-spacing:-13.800000px;}
.wsb{word-spacing:-13.770000px;}
.ws56{word-spacing:-13.608000px;}
.ws92{word-spacing:-13.014000px;}
.ws93{word-spacing:-12.906000px;}
.ws1b{word-spacing:-12.744000px;}
.ws1c{word-spacing:-12.636000px;}
.ws54{word-spacing:-12.474000px;}
.ws79{word-spacing:-12.384000px;}
.ws7a{word-spacing:-12.336000px;}
.ws81{word-spacing:-12.048000px;}
.ws57{word-spacing:-11.988000px;}
.ws7f{word-spacing:-11.616000px;}
.ws7e{word-spacing:-11.568000px;}
.ws1a{word-spacing:-11.376000px;}
.ws7c{word-spacing:-10.992000px;}
.ws80{word-spacing:-10.608000px;}
.ws33{word-spacing:-6.840000px;}
.ws39{word-spacing:-6.000000px;}
.ws17{word-spacing:-5.664000px;}
.ws82{word-spacing:-4.944000px;}
.ws84{word-spacing:-4.848000px;}
.ws85{word-spacing:-4.608000px;}
.ws83{word-spacing:-4.464000px;}
.ws8e{word-spacing:-3.600000px;}
.ws78{word-spacing:-3.384000px;}
.ws2b{word-spacing:-2.952000px;}
.ws2e{word-spacing:-2.880000px;}
.ws77{word-spacing:-2.736000px;}
.ws5b{word-spacing:-2.592000px;}
.ws15{word-spacing:-2.376000px;}
.ws41{word-spacing:-2.232000px;}
.ws6d{word-spacing:-1.944000px;}
.ws4c{word-spacing:-1.728000px;}
.ws97{word-spacing:-1.260000px;}
.ws2f{word-spacing:-1.008000px;}
.ws4d{word-spacing:-0.936000px;}
.ws4b{word-spacing:-0.864000px;}
.ws8f{word-spacing:-0.816000px;}
.ws26{word-spacing:-0.768000px;}
.ws90{word-spacing:-0.624000px;}
.ws6b{word-spacing:-0.576000px;}
.ws13{word-spacing:-0.396000px;}
.ws47{word-spacing:-0.288000px;}
.ws88{word-spacing:-0.192000px;}
.ws8c{word-spacing:-0.144000px;}
.ws99{word-spacing:-0.120000px;}
.ws8a{word-spacing:-0.048000px;}
.ws11{word-spacing:0.000000px;}
.ws87{word-spacing:0.048000px;}
.ws18{word-spacing:0.060000px;}
.ws27{word-spacing:0.120000px;}
.ws6a{word-spacing:0.144000px;}
.ws89{word-spacing:0.240000px;}
.ws8d{word-spacing:0.288000px;}
.ws16{word-spacing:0.300000px;}
.ws98{word-spacing:0.360000px;}
.ws43{word-spacing:0.432000px;}
.ws46{word-spacing:0.504000px;}
.ws25{word-spacing:0.540000px;}
.ws4f{word-spacing:0.576000px;}
.ws68{word-spacing:0.600000px;}
.ws50{word-spacing:0.792000px;}
.ws14{word-spacing:0.864000px;}
.ws59{word-spacing:0.924000px;}
.ws3b{word-spacing:0.936000px;}
.ws69{word-spacing:1.008000px;}
.ws28{word-spacing:1.080000px;}
.ws73{word-spacing:1.122000px;}
.ws2c{word-spacing:1.152000px;}
.ws71{word-spacing:1.197000px;}
.ws49{word-spacing:1.224000px;}
.ws48{word-spacing:1.296000px;}
.ws36{word-spacing:1.368000px;}
.ws67{word-spacing:1.500000px;}
.ws5d{word-spacing:1.512000px;}
.ws58{word-spacing:1.620000px;}
.ws8b{word-spacing:1.632000px;}
.ws60{word-spacing:1.656000px;}
.ws3f{word-spacing:1.728000px;}
.ws76{word-spacing:1.800000px;}
.ws12{word-spacing:1.920000px;}
.ws3d{word-spacing:2.088000px;}
.ws75{word-spacing:2.232000px;}
.ws35{word-spacing:2.304000px;}
.ws3c{word-spacing:2.376000px;}
.ws5f{word-spacing:2.592000px;}
.ws2d{word-spacing:2.664000px;}
.ws4e{word-spacing:3.312000px;}
.ws3e{word-spacing:3.384000px;}
.ws5c{word-spacing:3.744000px;}
.ws4a{word-spacing:3.816000px;}
.ws44{word-spacing:4.176000px;}
.ws42{word-spacing:4.536000px;}
.ws30{word-spacing:4.896000px;}
.ws29{word-spacing:4.968000px;}
.ws31{word-spacing:5.184000px;}
.ws74{word-spacing:5.418000px;}
.ws5a{word-spacing:5.670000px;}
.ws37{word-spacing:5.832000px;}
.ws38{word-spacing:5.976000px;}
.ws40{word-spacing:6.768000px;}
.ws6c{word-spacing:6.867000px;}
.ws5e{word-spacing:6.984000px;}
.ws32{word-spacing:7.200000px;}
.ws6e{word-spacing:7.848000px;}
.ws34{word-spacing:8.712000px;}
.ws2a{word-spacing:12.240000px;}
.ws19{word-spacing:674.346000px;}
._18{margin-left:-867.331800px;}
._14{margin-left:-865.107600px;}
._0{margin-left:-862.784400px;}
._19{margin-left:-861.583200px;}
._17{margin-left:-860.401800px;}
._c{margin-left:-714.336000px;}
._11{margin-left:-12.600600px;}
._a{margin-left:-10.348200px;}
._10{margin-left:-8.574600px;}
._b{margin-left:-7.430400px;}
._1{margin-left:-5.367600px;}
._d{margin-left:-4.223400px;}
._9{margin-left:-2.947200px;}
._3{margin-left:-1.857600px;}
._2{width:1.188000px;}
._4{width:2.921400px;}
._8{width:4.237800px;}
._6{width:5.508000px;}
._7{width:6.631200px;}
._5{width:8.451000px;}
._12{width:9.730800px;}
._f{width:10.771200px;}
._e{width:11.995200px;}
._13{width:13.248000px;}
._15{width:16.590600px;}
._16{width:17.969400px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:55.524900px;}
.y1{bottom:72.000000px;}
.y6a{bottom:117.000000px;}
.y21{bottom:117.750000px;}
.y92{bottom:118.500000px;}
.y129{bottom:133.500000px;}
.y20{bottom:136.500000px;}
.y69{bottom:139.500000px;}
.y45{bottom:140.250000px;}
.y91{bottom:141.000000px;}
.yec{bottom:147.000000px;}
.y128{bottom:152.250000px;}
.ycd{bottom:154.500000px;}
.y1f{bottom:155.250000px;}
.y68{bottom:162.000000px;}
.y44{bottom:162.750000px;}
.y90{bottom:163.500000px;}
.yeb{bottom:165.000000px;}
.y127{bottom:171.000000px;}
.y1e{bottom:174.000000px;}
.ycc{bottom:181.500000px;}
.yea{bottom:183.000000px;}
.y67{bottom:184.500000px;}
.y43{bottom:185.250000px;}
.y8f{bottom:186.000000px;}
.y126{bottom:189.750000px;}
.y1d{bottom:192.750000px;}
.yb2{bottom:196.500000px;}
.ye9{bottom:201.000000px;}
.ycb{bottom:204.000000px;}
.y66{bottom:207.000000px;}
.y42{bottom:207.750000px;}
.y125{bottom:208.500000px;}
.y6d{bottom:213.000000px;}
.yb1{bottom:214.500000px;}
.ye8{bottom:219.000000px;}
.y8e{bottom:219.750000px;}
.y1c{bottom:220.500000px;}
.yca{bottom:226.500000px;}
.y124{bottom:227.250000px;}
.y65{bottom:229.500000px;}
.yb0{bottom:232.500000px;}
.y6c{bottom:235.500000px;}
.y41{bottom:236.250000px;}
.ye7{bottom:237.000000px;}
.y8d{bottom:237.750000px;}
.y106{bottom:238.500000px;}
.yc9{bottom:249.000000px;}
.yaf{bottom:250.500000px;}
.y64{bottom:252.000000px;}
.y8c{bottom:255.750000px;}
.y6b{bottom:258.000000px;}
.y40{bottom:258.750000px;}
.y123{bottom:259.500000px;}
.y105{bottom:261.000000px;}
.y1b{bottom:264.000000px;}
.ye6{bottom:266.250000px;}
.yae{bottom:268.500000px;}
.yc8{bottom:271.500000px;}
.y8b{bottom:273.750000px;}
.y63{bottom:274.500000px;}
.y1a{bottom:282.750000px;}
.y104{bottom:283.500000px;}
.ye5{bottom:288.750000px;}
.y122{bottom:289.500000px;}
.y8a{bottom:291.750000px;}
.yc7{bottom:294.000000px;}
.y3f{bottom:294.750000px;}
.y62{bottom:297.000000px;}
.yad{bottom:297.750000px;}
.y103{bottom:306.000000px;}
.y121{bottom:307.500000px;}
.y89{bottom:309.750000px;}
.y19{bottom:310.500000px;}
.ye4{bottom:311.250000px;}
.y3e{bottom:317.250000px;}
.y61{bottom:319.500000px;}
.yac{bottom:320.250000px;}
.y71{bottom:324.757050px;}
.y88{bottom:327.750000px;}
.y102{bottom:328.500000px;}
.y18{bottom:329.250000px;}
.ye3{bottom:333.750000px;}
.y3d{bottom:339.750000px;}
.y60{bottom:342.000000px;}
.yab{bottom:342.750000px;}
.y70{bottom:344.257050px;}
.yc6{bottom:345.750000px;}
.y17{bottom:348.000000px;}
.y101{bottom:351.000000px;}
.ye2{bottom:356.250000px;}
.y87{bottom:357.000000px;}
.y3c{bottom:362.250000px;}
.yc5{bottom:363.750000px;}
.y5f{bottom:364.500000px;}
.yaa{bottom:365.250000px;}
.y120{bottom:366.000000px;}
.y16{bottom:366.748500px;}
.y100{bottom:373.500000px;}
.ye1{bottom:378.750000px;}
.y86{bottom:379.500000px;}
.y11f{bottom:381.000000px;}
.yc4{bottom:381.750000px;}
.y3b{bottom:384.750000px;}
.y15{bottom:385.500000px;}
.y5e{bottom:387.000000px;}
.ya9{bottom:387.750000px;}
.yff{bottom:396.000000px;}
.yc3{bottom:399.750000px;}
.y85{bottom:402.000000px;}
.y14{bottom:404.250000px;}
.y3a{bottom:407.250000px;}
.y5d{bottom:409.500000px;}
.ya8{bottom:410.250000px;}
.y11e{bottom:411.000000px;}
.ye0{bottom:412.500000px;}
.yc2{bottom:417.750000px;}
.yfe{bottom:418.500000px;}
.y13{bottom:423.000000px;}
.y84{bottom:424.500000px;}
.y11d{bottom:426.000000px;}
.y39{bottom:429.750000px;}
.ydf{bottom:430.500000px;}
.y5c{bottom:432.000000px;}
.ya7{bottom:432.750000px;}
.yc1{bottom:435.750000px;}
.yfd{bottom:441.000000px;}
.y12{bottom:441.750000px;}
.y83{bottom:447.000000px;}
.yde{bottom:448.500000px;}
.y38{bottom:452.250000px;}
.yc0{bottom:453.750000px;}
.y5b{bottom:454.500000px;}
.ya6{bottom:455.250000px;}
.y11c{bottom:456.000000px;}
.y11{bottom:460.500000px;}
.yfc{bottom:463.500000px;}
.ydd{bottom:466.500000px;}
.y82{bottom:469.500000px;}
.y11b{bottom:471.000000px;}
.y37{bottom:474.750000px;}
.y5a{bottom:477.000000px;}
.y10{bottom:479.250000px;}
.ybf{bottom:483.000000px;}
.ydc{bottom:484.500000px;}
.yfb{bottom:486.000000px;}
.ya5{bottom:489.000000px;}
.y81{bottom:492.000000px;}
.y36{bottom:497.250000px;}
.yf{bottom:498.000000px;}
.y59{bottom:499.500000px;}
.y11a{bottom:501.000000px;}
.ydb{bottom:502.500000px;}
.ybe{bottom:505.500000px;}
.ya4{bottom:507.000000px;}
.yfa{bottom:508.500000px;}
.y119{bottom:516.000000px;}
.y35{bottom:519.750000px;}
.y58{bottom:522.000000px;}
.ya3{bottom:525.000000px;}
.y80{bottom:525.750000px;}
.ye{bottom:525.753000px;}
.ybd{bottom:528.000000px;}
.yf9{bottom:531.000000px;}
.yda{bottom:531.750000px;}
.y135{bottom:540.750000px;}
.y34{bottom:542.250000px;}
.ya2{bottom:543.000000px;}
.y7f{bottom:543.750000px;}
.y57{bottom:544.500000px;}
.y118{bottom:546.000000px;}
.ybc{bottom:550.500000px;}
.yf8{bottom:553.500000px;}
.yd9{bottom:554.250000px;}
.y134{bottom:559.500000px;}
.ya1{bottom:561.000000px;}
.y7e{bottom:561.750000px;}
.y33{bottom:564.750000px;}
.y56{bottom:567.000000px;}
.yd{bottom:569.250000px;}
.yf7{bottom:576.000000px;}
.yd8{bottom:576.750000px;}
.y133{bottom:578.250000px;}
.y7d{bottom:579.750000px;}
.ybb{bottom:584.250000px;}
.y32{bottom:587.250000px;}
.y6f{bottom:588.007050px;}
.yc{bottom:588.750000px;}
.y55{bottom:589.500000px;}
.ya0{bottom:590.250000px;}
.y117{bottom:591.000000px;}
.y132{bottom:597.000000px;}
.yf6{bottom:598.500000px;}
.yd7{bottom:599.250000px;}
.yba{bottom:602.250000px;}
.y116{bottom:606.000000px;}
.y6e{bottom:607.507050px;}
.y7c{bottom:609.000000px;}
.y31{bottom:609.750000px;}
.yb{bottom:611.250000px;}
.y54{bottom:612.000000px;}
.y9f{bottom:612.750000px;}
.y131{bottom:615.750000px;}
.yb9{bottom:620.250000px;}
.yf5{bottom:621.000000px;}
.yd6{bottom:621.750000px;}
.y7b{bottom:631.500000px;}
.y30{bottom:632.250000px;}
.y53{bottom:634.500000px;}
.y9e{bottom:635.250000px;}
.y115{bottom:636.000000px;}
.yb8{bottom:638.250000px;}
.ya{bottom:641.250000px;}
.yf4{bottom:643.500000px;}
.yd5{bottom:644.250000px;}
.y114{bottom:651.000000px;}
.y130{bottom:653.250000px;}
.y7a{bottom:654.000000px;}
.y2f{bottom:654.750000px;}
.yb7{bottom:656.250000px;}
.y52{bottom:657.000000px;}
.y9d{bottom:657.750000px;}
.yf3{bottom:666.000000px;}
.yd4{bottom:666.750000px;}
.yb6{bottom:674.250000px;}
.y79{bottom:676.500000px;}
.y2e{bottom:677.250000px;}
.y51{bottom:679.500000px;}
.y9c{bottom:680.250000px;}
.y113{bottom:681.000000px;}
.y12f{bottom:683.250000px;}
.yf2{bottom:688.500000px;}
.yd3{bottom:689.250000px;}
.yb5{bottom:692.250000px;}
.y112{bottom:696.000000px;}
.y78{bottom:699.000000px;}
.y2d{bottom:699.750000px;}
.y50{bottom:702.000000px;}
.y9b{bottom:702.750000px;}
.y9{bottom:705.750000px;}
.yf1{bottom:711.000000px;}
.y77{bottom:721.500000px;}
.y2c{bottom:722.250000px;}
.y4f{bottom:724.500000px;}
.y9a{bottom:725.250000px;}
.y111{bottom:726.000000px;}
.y8{bottom:729.750000px;}
.yf0{bottom:733.500000px;}
.yd2{bottom:734.250000px;}
.y110{bottom:741.000000px;}
.y12e{bottom:743.250000px;}
.y76{bottom:744.000000px;}
.y2b{bottom:744.750000px;}
.y4e{bottom:747.000000px;}
.y99{bottom:747.750000px;}
.y7{bottom:753.750000px;}
.y10f{bottom:756.000000px;}
.yd1{bottom:756.750000px;}
.yef{bottom:762.000000px;}
.y75{bottom:766.500000px;}
.y4d{bottom:769.500000px;}
.y10e{bottom:771.000000px;}
.y2a{bottom:773.250000px;}
.yd0{bottom:779.250000px;}
.y12d{bottom:780.750000px;}
.y10d{bottom:786.000000px;}
.y6{bottom:786.750000px;}
.y74{bottom:789.000000px;}
.y4c{bottom:792.000000px;}
.y12c{bottom:799.500000px;}
.y10c{bottom:801.000000px;}
.ycf{bottom:801.750000px;}
.y29{bottom:809.250000px;}
.yb4{bottom:811.500000px;}
.yee{bottom:812.250000px;}
.y4b{bottom:814.500000px;}
.y10b{bottom:816.000000px;}
.y5{bottom:816.750000px;}
.y12b{bottom:818.250000px;}
.y98{bottom:823.500000px;}
.yce{bottom:827.250000px;}
.y28{bottom:828.000000px;}
.yed{bottom:830.250000px;}
.y10a{bottom:831.000000px;}
.yb3{bottom:834.000000px;}
.y4a{bottom:837.000000px;}
.y97{bottom:841.500000px;}
.y73{bottom:843.000000px;}
.y4{bottom:846.750000px;}
.y109{bottom:853.500000px;}
.y27{bottom:855.750000px;}
.y49{bottom:859.500000px;}
.y72{bottom:865.500000px;}
.y26{bottom:874.500000px;}
.y3{bottom:876.750000px;}
.y96{bottom:877.500000px;}
.y48{bottom:882.000000px;}
.y25{bottom:893.248500px;}
.y12a{bottom:893.250000px;}
.y108{bottom:894.000000px;}
.y95{bottom:895.500000px;}
.y47{bottom:904.500000px;}
.y107{bottom:909.000000px;}
.y24{bottom:912.000000px;}
.y94{bottom:913.500000px;}
.y46{bottom:927.000000px;}
.y2{bottom:929.250000px;}
.y23{bottom:930.750000px;}
.y93{bottom:931.500000px;}
.hc{height:35.991211px;}
.h12{height:39.072000px;}
.h14{height:39.726562px;}
.h16{height:40.464000px;}
.h15{height:40.560000px;}
.h13{height:40.757812px;}
.h2{height:44.692383px;}
.h11{height:44.819824px;}
.h8{height:45.852539px;}
.h10{height:46.954102px;}
.hf{height:48.840000px;}
.ha{height:49.658203px;}
.h9{height:50.947266px;}
.hb{height:50.953266px;}
.h1{height:54.624023px;}
.h6{height:55.638000px;}
.h7{height:58.746094px;}
.he{height:59.589844px;}
.hd{height:61.136719px;}
.h4{height:79.453125px;}
.h5{height:81.515625px;}
.h3{height:99.316406px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x8{left:67.620000px;}
.xe{left:82.500000px;}
.x9{left:89.994000px;}
.x7{left:99.000000px;}
.x2{left:112.500000px;}
.x3{left:114.164850px;}
.xd{left:115.500000px;}
.xa{left:135.000000px;}
.x4{left:144.000000px;}
.xc{left:160.500000px;}
.x5{left:171.268800px;}
.xf{left:181.493850px;}
.x6{left:263.251650px;}
.x1{left:628.253250px;}
.xb{left:629.390100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls58{letter-spacing:-6.104000pt;}
.ls49{letter-spacing:-5.040000pt;}
.ls5c{letter-spacing:-4.816000pt;}
.ls9{letter-spacing:-4.405333pt;}
.ls8{letter-spacing:-4.256000pt;}
.ls2{letter-spacing:-4.224000pt;}
.ls6{letter-spacing:-4.032000pt;}
.ls3e{letter-spacing:-3.392000pt;}
.ls4a{letter-spacing:-3.328000pt;}
.ls24{letter-spacing:-2.368000pt;}
.ls25{letter-spacing:-2.304000pt;}
.ls1c{letter-spacing:-2.256000pt;}
.ls64{letter-spacing:-2.218667pt;}
.ls1b{letter-spacing:-2.160000pt;}
.ls5{letter-spacing:-2.016000pt;}
.ls5d{letter-spacing:-1.984000pt;}
.ls74{letter-spacing:-1.920000pt;}
.ls4b{letter-spacing:-1.872000pt;}
.ls31{letter-spacing:-1.856000pt;}
.ls4{letter-spacing:-1.728000pt;}
.ls3{letter-spacing:-1.706667pt;}
.ls2c{letter-spacing:-1.600000pt;}
.ls27{letter-spacing:-1.536000pt;}
.ls4e{letter-spacing:-1.472000pt;}
.ls68{letter-spacing:-1.450667pt;}
.ls46{letter-spacing:-1.440000pt;}
.lsa{letter-spacing:-1.418667pt;}
.ls2b{letter-spacing:-1.344000pt;}
.ls54{letter-spacing:-1.333333pt;}
.lsf{letter-spacing:-1.248000pt;}
.ls2a{letter-spacing:-1.216000pt;}
.ls13{letter-spacing:-1.152000pt;}
.ls6b{letter-spacing:-1.109333pt;}
.ls38{letter-spacing:-1.088000pt;}
.ls5b{letter-spacing:-1.064000pt;}
.ls7{letter-spacing:-1.045333pt;}
.ls23{letter-spacing:-1.024000pt;}
.ls4c{letter-spacing:-0.997333pt;}
.ls21{letter-spacing:-0.960000pt;}
.ls56{letter-spacing:-0.906667pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls4d{letter-spacing:-0.864000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls47{letter-spacing:-0.821333pt;}
.ls77{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.768000pt;}
.ls44{letter-spacing:-0.704000pt;}
.ls55{letter-spacing:-0.533333pt;}
.ls48{letter-spacing:-0.528000pt;}
.ls43{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.432000pt;}
.ls19{letter-spacing:-0.426667pt;}
.ls32{letter-spacing:-0.384000pt;}
.ls51{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls6a{letter-spacing:-0.256000pt;}
.ls65{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls57{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.002667pt;}
.ls67{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.048000pt;}
.ls78{letter-spacing:0.106667pt;}
.ls69{letter-spacing:0.128000pt;}
.ls62{letter-spacing:0.170667pt;}
.ls36{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.482667pt;}
.ls37{letter-spacing:0.576000pt;}
.ls59{letter-spacing:0.651733pt;}
.ls63{letter-spacing:0.725333pt;}
.ls3b{letter-spacing:0.767467pt;}
.ls3c{letter-spacing:0.768000pt;}
.ls66{letter-spacing:0.853333pt;}
.ls26{letter-spacing:0.896000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls73{letter-spacing:1.120000pt;}
.ls76{letter-spacing:1.152000pt;}
.ls33{letter-spacing:1.192000pt;}
.ls75{letter-spacing:1.200000pt;}
.ls35{letter-spacing:1.695467pt;}
.ls3a{letter-spacing:1.710933pt;}
.lsd{letter-spacing:2.112000pt;}
.ls30{letter-spacing:2.882667pt;}
.ls40{letter-spacing:2.962133pt;}
.ls3f{letter-spacing:2.962667pt;}
.ls6e{letter-spacing:3.200000pt;}
.ls17{letter-spacing:3.328000pt;}
.ls71{letter-spacing:3.360000pt;}
.ls53{letter-spacing:3.447467pt;}
.ls52{letter-spacing:3.448000pt;}
.ls41{letter-spacing:3.513067pt;}
.ls50{letter-spacing:3.558400pt;}
.ls5f{letter-spacing:3.626667pt;}
.ls6d{letter-spacing:3.925333pt;}
.ls42{letter-spacing:4.033067pt;}
.ls6f{letter-spacing:4.053333pt;}
.ls45{letter-spacing:4.096000pt;}
.ls70{letter-spacing:4.181333pt;}
.ls61{letter-spacing:4.224000pt;}
.ls5a{letter-spacing:4.224533pt;}
.ls60{letter-spacing:4.266667pt;}
.ls6c{letter-spacing:4.352000pt;}
.ls1e{letter-spacing:4.949333pt;}
.ls14{letter-spacing:5.034667pt;}
.ls20{letter-spacing:5.066667pt;}
.ls2f{letter-spacing:5.213333pt;}
.ls2e{letter-spacing:5.213867pt;}
.ls5e{letter-spacing:5.226667pt;}
.ls2d{letter-spacing:5.333333pt;}
.ls3d{letter-spacing:5.880533pt;}
.ls28{letter-spacing:6.080000pt;}
.ls4f{letter-spacing:6.841600pt;}
.ls34{letter-spacing:8.042133pt;}
.lsb{letter-spacing:9.738667pt;}
.lse{letter-spacing:9.744000pt;}
.ls16{letter-spacing:11.088000pt;}
.ws3{word-spacing:-25.248000pt;}
.ws4{word-spacing:-24.960000pt;}
.ws10{word-spacing:-24.576000pt;}
.wsa{word-spacing:-23.232000pt;}
.ws5{word-spacing:-22.944000pt;}
.ws2{word-spacing:-22.752000pt;}
.ws6{word-spacing:-19.936000pt;}
.ws9{word-spacing:-19.562667pt;}
.ws6f{word-spacing:-18.880000pt;}
.ws45{word-spacing:-18.560000pt;}
.ws86{word-spacing:-18.346667pt;}
.ws1f{word-spacing:-17.984000pt;}
.ws72{word-spacing:-17.216000pt;}
.ws3a{word-spacing:-17.152000pt;}
.ws20{word-spacing:-17.024000pt;}
.ws52{word-spacing:-16.896000pt;}
.ws7{word-spacing:-16.725333pt;}
.ws8{word-spacing:-16.576000pt;}
.ws0{word-spacing:-16.485333pt;}
.ws91{word-spacing:-16.106667pt;}
.ws63{word-spacing:-14.986667pt;}
.ws61{word-spacing:-14.848000pt;}
.ws55{word-spacing:-14.842667pt;}
.ws94{word-spacing:-14.688000pt;}
.ws95{word-spacing:-14.640000pt;}
.ws23{word-spacing:-14.464000pt;}
.ws66{word-spacing:-14.453333pt;}
.ws22{word-spacing:-14.272000pt;}
.ws24{word-spacing:-14.208000pt;}
.ws96{word-spacing:-14.186667pt;}
.ws70{word-spacing:-13.952000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws21{word-spacing:-13.504000pt;}
.wsd{word-spacing:-13.488000pt;}
.wsc{word-spacing:-13.392000pt;}
.wse{word-spacing:-13.296000pt;}
.ws53{word-spacing:-13.173333pt;}
.ws1d{word-spacing:-13.056000pt;}
.ws62{word-spacing:-12.853333pt;}
.ws7d{word-spacing:-12.842667pt;}
.ws7b{word-spacing:-12.714667pt;}
.ws65{word-spacing:-12.640000pt;}
.ws1e{word-spacing:-12.588800pt;}
.ws51{word-spacing:-12.432000pt;}
.wsf{word-spacing:-12.336000pt;}
.ws64{word-spacing:-12.266667pt;}
.wsb{word-spacing:-12.240000pt;}
.ws56{word-spacing:-12.096000pt;}
.ws92{word-spacing:-11.568000pt;}
.ws93{word-spacing:-11.472000pt;}
.ws1b{word-spacing:-11.328000pt;}
.ws1c{word-spacing:-11.232000pt;}
.ws54{word-spacing:-11.088000pt;}
.ws79{word-spacing:-11.008000pt;}
.ws7a{word-spacing:-10.965333pt;}
.ws81{word-spacing:-10.709333pt;}
.ws57{word-spacing:-10.656000pt;}
.ws7f{word-spacing:-10.325333pt;}
.ws7e{word-spacing:-10.282667pt;}
.ws1a{word-spacing:-10.112000pt;}
.ws7c{word-spacing:-9.770667pt;}
.ws80{word-spacing:-9.429333pt;}
.ws33{word-spacing:-6.080000pt;}
.ws39{word-spacing:-5.333333pt;}
.ws17{word-spacing:-5.034667pt;}
.ws82{word-spacing:-4.394667pt;}
.ws84{word-spacing:-4.309333pt;}
.ws85{word-spacing:-4.096000pt;}
.ws83{word-spacing:-3.968000pt;}
.ws8e{word-spacing:-3.200000pt;}
.ws78{word-spacing:-3.008000pt;}
.ws2b{word-spacing:-2.624000pt;}
.ws2e{word-spacing:-2.560000pt;}
.ws77{word-spacing:-2.432000pt;}
.ws5b{word-spacing:-2.304000pt;}
.ws15{word-spacing:-2.112000pt;}
.ws41{word-spacing:-1.984000pt;}
.ws6d{word-spacing:-1.728000pt;}
.ws4c{word-spacing:-1.536000pt;}
.ws97{word-spacing:-1.120000pt;}
.ws2f{word-spacing:-0.896000pt;}
.ws4d{word-spacing:-0.832000pt;}
.ws4b{word-spacing:-0.768000pt;}
.ws8f{word-spacing:-0.725333pt;}
.ws26{word-spacing:-0.682667pt;}
.ws90{word-spacing:-0.554667pt;}
.ws6b{word-spacing:-0.512000pt;}
.ws13{word-spacing:-0.352000pt;}
.ws47{word-spacing:-0.256000pt;}
.ws88{word-spacing:-0.170667pt;}
.ws8c{word-spacing:-0.128000pt;}
.ws99{word-spacing:-0.106667pt;}
.ws8a{word-spacing:-0.042667pt;}
.ws11{word-spacing:0.000000pt;}
.ws87{word-spacing:0.042667pt;}
.ws18{word-spacing:0.053333pt;}
.ws27{word-spacing:0.106667pt;}
.ws6a{word-spacing:0.128000pt;}
.ws89{word-spacing:0.213333pt;}
.ws8d{word-spacing:0.256000pt;}
.ws16{word-spacing:0.266667pt;}
.ws98{word-spacing:0.320000pt;}
.ws43{word-spacing:0.384000pt;}
.ws46{word-spacing:0.448000pt;}
.ws25{word-spacing:0.480000pt;}
.ws4f{word-spacing:0.512000pt;}
.ws68{word-spacing:0.533333pt;}
.ws50{word-spacing:0.704000pt;}
.ws14{word-spacing:0.768000pt;}
.ws59{word-spacing:0.821333pt;}
.ws3b{word-spacing:0.832000pt;}
.ws69{word-spacing:0.896000pt;}
.ws28{word-spacing:0.960000pt;}
.ws73{word-spacing:0.997333pt;}
.ws2c{word-spacing:1.024000pt;}
.ws71{word-spacing:1.064000pt;}
.ws49{word-spacing:1.088000pt;}
.ws48{word-spacing:1.152000pt;}
.ws36{word-spacing:1.216000pt;}
.ws67{word-spacing:1.333333pt;}
.ws5d{word-spacing:1.344000pt;}
.ws58{word-spacing:1.440000pt;}
.ws8b{word-spacing:1.450667pt;}
.ws60{word-spacing:1.472000pt;}
.ws3f{word-spacing:1.536000pt;}
.ws76{word-spacing:1.600000pt;}
.ws12{word-spacing:1.706667pt;}
.ws3d{word-spacing:1.856000pt;}
.ws75{word-spacing:1.984000pt;}
.ws35{word-spacing:2.048000pt;}
.ws3c{word-spacing:2.112000pt;}
.ws5f{word-spacing:2.304000pt;}
.ws2d{word-spacing:2.368000pt;}
.ws4e{word-spacing:2.944000pt;}
.ws3e{word-spacing:3.008000pt;}
.ws5c{word-spacing:3.328000pt;}
.ws4a{word-spacing:3.392000pt;}
.ws44{word-spacing:3.712000pt;}
.ws42{word-spacing:4.032000pt;}
.ws30{word-spacing:4.352000pt;}
.ws29{word-spacing:4.416000pt;}
.ws31{word-spacing:4.608000pt;}
.ws74{word-spacing:4.816000pt;}
.ws5a{word-spacing:5.040000pt;}
.ws37{word-spacing:5.184000pt;}
.ws38{word-spacing:5.312000pt;}
.ws40{word-spacing:6.016000pt;}
.ws6c{word-spacing:6.104000pt;}
.ws5e{word-spacing:6.208000pt;}
.ws32{word-spacing:6.400000pt;}
.ws6e{word-spacing:6.976000pt;}
.ws34{word-spacing:7.744000pt;}
.ws2a{word-spacing:10.880000pt;}
.ws19{word-spacing:599.418667pt;}
._18{margin-left:-770.961600pt;}
._14{margin-left:-768.984533pt;}
._0{margin-left:-766.919467pt;}
._19{margin-left:-765.851733pt;}
._17{margin-left:-764.801600pt;}
._c{margin-left:-634.965333pt;}
._11{margin-left:-11.200533pt;}
._a{margin-left:-9.198400pt;}
._10{margin-left:-7.621867pt;}
._b{margin-left:-6.604800pt;}
._1{margin-left:-4.771200pt;}
._d{margin-left:-3.754133pt;}
._9{margin-left:-2.619733pt;}
._3{margin-left:-1.651200pt;}
._2{width:1.056000pt;}
._4{width:2.596800pt;}
._8{width:3.766933pt;}
._6{width:4.896000pt;}
._7{width:5.894400pt;}
._5{width:7.512000pt;}
._12{width:8.649600pt;}
._f{width:9.574400pt;}
._e{width:10.662400pt;}
._13{width:11.776000pt;}
._15{width:14.747200pt;}
._16{width:15.972800pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:49.355467pt;}
.y1{bottom:64.000000pt;}
.y6a{bottom:104.000000pt;}
.y21{bottom:104.666667pt;}
.y92{bottom:105.333333pt;}
.y129{bottom:118.666667pt;}
.y20{bottom:121.333333pt;}
.y69{bottom:124.000000pt;}
.y45{bottom:124.666667pt;}
.y91{bottom:125.333333pt;}
.yec{bottom:130.666667pt;}
.y128{bottom:135.333333pt;}
.ycd{bottom:137.333333pt;}
.y1f{bottom:138.000000pt;}
.y68{bottom:144.000000pt;}
.y44{bottom:144.666667pt;}
.y90{bottom:145.333333pt;}
.yeb{bottom:146.666667pt;}
.y127{bottom:152.000000pt;}
.y1e{bottom:154.666667pt;}
.ycc{bottom:161.333333pt;}
.yea{bottom:162.666667pt;}
.y67{bottom:164.000000pt;}
.y43{bottom:164.666667pt;}
.y8f{bottom:165.333333pt;}
.y126{bottom:168.666667pt;}
.y1d{bottom:171.333333pt;}
.yb2{bottom:174.666667pt;}
.ye9{bottom:178.666667pt;}
.ycb{bottom:181.333333pt;}
.y66{bottom:184.000000pt;}
.y42{bottom:184.666667pt;}
.y125{bottom:185.333333pt;}
.y6d{bottom:189.333333pt;}
.yb1{bottom:190.666667pt;}
.ye8{bottom:194.666667pt;}
.y8e{bottom:195.333333pt;}
.y1c{bottom:196.000000pt;}
.yca{bottom:201.333333pt;}
.y124{bottom:202.000000pt;}
.y65{bottom:204.000000pt;}
.yb0{bottom:206.666667pt;}
.y6c{bottom:209.333333pt;}
.y41{bottom:210.000000pt;}
.ye7{bottom:210.666667pt;}
.y8d{bottom:211.333333pt;}
.y106{bottom:212.000000pt;}
.yc9{bottom:221.333333pt;}
.yaf{bottom:222.666667pt;}
.y64{bottom:224.000000pt;}
.y8c{bottom:227.333333pt;}
.y6b{bottom:229.333333pt;}
.y40{bottom:230.000000pt;}
.y123{bottom:230.666667pt;}
.y105{bottom:232.000000pt;}
.y1b{bottom:234.666667pt;}
.ye6{bottom:236.666667pt;}
.yae{bottom:238.666667pt;}
.yc8{bottom:241.333333pt;}
.y8b{bottom:243.333333pt;}
.y63{bottom:244.000000pt;}
.y1a{bottom:251.333333pt;}
.y104{bottom:252.000000pt;}
.ye5{bottom:256.666667pt;}
.y122{bottom:257.333333pt;}
.y8a{bottom:259.333333pt;}
.yc7{bottom:261.333333pt;}
.y3f{bottom:262.000000pt;}
.y62{bottom:264.000000pt;}
.yad{bottom:264.666667pt;}
.y103{bottom:272.000000pt;}
.y121{bottom:273.333333pt;}
.y89{bottom:275.333333pt;}
.y19{bottom:276.000000pt;}
.ye4{bottom:276.666667pt;}
.y3e{bottom:282.000000pt;}
.y61{bottom:284.000000pt;}
.yac{bottom:284.666667pt;}
.y71{bottom:288.672933pt;}
.y88{bottom:291.333333pt;}
.y102{bottom:292.000000pt;}
.y18{bottom:292.666667pt;}
.ye3{bottom:296.666667pt;}
.y3d{bottom:302.000000pt;}
.y60{bottom:304.000000pt;}
.yab{bottom:304.666667pt;}
.y70{bottom:306.006267pt;}
.yc6{bottom:307.333333pt;}
.y17{bottom:309.333333pt;}
.y101{bottom:312.000000pt;}
.ye2{bottom:316.666667pt;}
.y87{bottom:317.333333pt;}
.y3c{bottom:322.000000pt;}
.yc5{bottom:323.333333pt;}
.y5f{bottom:324.000000pt;}
.yaa{bottom:324.666667pt;}
.y120{bottom:325.333333pt;}
.y16{bottom:325.998667pt;}
.y100{bottom:332.000000pt;}
.ye1{bottom:336.666667pt;}
.y86{bottom:337.333333pt;}
.y11f{bottom:338.666667pt;}
.yc4{bottom:339.333333pt;}
.y3b{bottom:342.000000pt;}
.y15{bottom:342.666667pt;}
.y5e{bottom:344.000000pt;}
.ya9{bottom:344.666667pt;}
.yff{bottom:352.000000pt;}
.yc3{bottom:355.333333pt;}
.y85{bottom:357.333333pt;}
.y14{bottom:359.333333pt;}
.y3a{bottom:362.000000pt;}
.y5d{bottom:364.000000pt;}
.ya8{bottom:364.666667pt;}
.y11e{bottom:365.333333pt;}
.ye0{bottom:366.666667pt;}
.yc2{bottom:371.333333pt;}
.yfe{bottom:372.000000pt;}
.y13{bottom:376.000000pt;}
.y84{bottom:377.333333pt;}
.y11d{bottom:378.666667pt;}
.y39{bottom:382.000000pt;}
.ydf{bottom:382.666667pt;}
.y5c{bottom:384.000000pt;}
.ya7{bottom:384.666667pt;}
.yc1{bottom:387.333333pt;}
.yfd{bottom:392.000000pt;}
.y12{bottom:392.666667pt;}
.y83{bottom:397.333333pt;}
.yde{bottom:398.666667pt;}
.y38{bottom:402.000000pt;}
.yc0{bottom:403.333333pt;}
.y5b{bottom:404.000000pt;}
.ya6{bottom:404.666667pt;}
.y11c{bottom:405.333333pt;}
.y11{bottom:409.333333pt;}
.yfc{bottom:412.000000pt;}
.ydd{bottom:414.666667pt;}
.y82{bottom:417.333333pt;}
.y11b{bottom:418.666667pt;}
.y37{bottom:422.000000pt;}
.y5a{bottom:424.000000pt;}
.y10{bottom:426.000000pt;}
.ybf{bottom:429.333333pt;}
.ydc{bottom:430.666667pt;}
.yfb{bottom:432.000000pt;}
.ya5{bottom:434.666667pt;}
.y81{bottom:437.333333pt;}
.y36{bottom:442.000000pt;}
.yf{bottom:442.666667pt;}
.y59{bottom:444.000000pt;}
.y11a{bottom:445.333333pt;}
.ydb{bottom:446.666667pt;}
.ybe{bottom:449.333333pt;}
.ya4{bottom:450.666667pt;}
.yfa{bottom:452.000000pt;}
.y119{bottom:458.666667pt;}
.y35{bottom:462.000000pt;}
.y58{bottom:464.000000pt;}
.ya3{bottom:466.666667pt;}
.y80{bottom:467.333333pt;}
.ye{bottom:467.336000pt;}
.ybd{bottom:469.333333pt;}
.yf9{bottom:472.000000pt;}
.yda{bottom:472.666667pt;}
.y135{bottom:480.666667pt;}
.y34{bottom:482.000000pt;}
.ya2{bottom:482.666667pt;}
.y7f{bottom:483.333333pt;}
.y57{bottom:484.000000pt;}
.y118{bottom:485.333333pt;}
.ybc{bottom:489.333333pt;}
.yf8{bottom:492.000000pt;}
.yd9{bottom:492.666667pt;}
.y134{bottom:497.333333pt;}
.ya1{bottom:498.666667pt;}
.y7e{bottom:499.333333pt;}
.y33{bottom:502.000000pt;}
.y56{bottom:504.000000pt;}
.yd{bottom:506.000000pt;}
.yf7{bottom:512.000000pt;}
.yd8{bottom:512.666667pt;}
.y133{bottom:514.000000pt;}
.y7d{bottom:515.333333pt;}
.ybb{bottom:519.333333pt;}
.y32{bottom:522.000000pt;}
.y6f{bottom:522.672933pt;}
.yc{bottom:523.333333pt;}
.y55{bottom:524.000000pt;}
.ya0{bottom:524.666667pt;}
.y117{bottom:525.333333pt;}
.y132{bottom:530.666667pt;}
.yf6{bottom:532.000000pt;}
.yd7{bottom:532.666667pt;}
.yba{bottom:535.333333pt;}
.y116{bottom:538.666667pt;}
.y6e{bottom:540.006267pt;}
.y7c{bottom:541.333333pt;}
.y31{bottom:542.000000pt;}
.yb{bottom:543.333333pt;}
.y54{bottom:544.000000pt;}
.y9f{bottom:544.666667pt;}
.y131{bottom:547.333333pt;}
.yb9{bottom:551.333333pt;}
.yf5{bottom:552.000000pt;}
.yd6{bottom:552.666667pt;}
.y7b{bottom:561.333333pt;}
.y30{bottom:562.000000pt;}
.y53{bottom:564.000000pt;}
.y9e{bottom:564.666667pt;}
.y115{bottom:565.333333pt;}
.yb8{bottom:567.333333pt;}
.ya{bottom:570.000000pt;}
.yf4{bottom:572.000000pt;}
.yd5{bottom:572.666667pt;}
.y114{bottom:578.666667pt;}
.y130{bottom:580.666667pt;}
.y7a{bottom:581.333333pt;}
.y2f{bottom:582.000000pt;}
.yb7{bottom:583.333333pt;}
.y52{bottom:584.000000pt;}
.y9d{bottom:584.666667pt;}
.yf3{bottom:592.000000pt;}
.yd4{bottom:592.666667pt;}
.yb6{bottom:599.333333pt;}
.y79{bottom:601.333333pt;}
.y2e{bottom:602.000000pt;}
.y51{bottom:604.000000pt;}
.y9c{bottom:604.666667pt;}
.y113{bottom:605.333333pt;}
.y12f{bottom:607.333333pt;}
.yf2{bottom:612.000000pt;}
.yd3{bottom:612.666667pt;}
.yb5{bottom:615.333333pt;}
.y112{bottom:618.666667pt;}
.y78{bottom:621.333333pt;}
.y2d{bottom:622.000000pt;}
.y50{bottom:624.000000pt;}
.y9b{bottom:624.666667pt;}
.y9{bottom:627.333333pt;}
.yf1{bottom:632.000000pt;}
.y77{bottom:641.333333pt;}
.y2c{bottom:642.000000pt;}
.y4f{bottom:644.000000pt;}
.y9a{bottom:644.666667pt;}
.y111{bottom:645.333333pt;}
.y8{bottom:648.666667pt;}
.yf0{bottom:652.000000pt;}
.yd2{bottom:652.666667pt;}
.y110{bottom:658.666667pt;}
.y12e{bottom:660.666667pt;}
.y76{bottom:661.333333pt;}
.y2b{bottom:662.000000pt;}
.y4e{bottom:664.000000pt;}
.y99{bottom:664.666667pt;}
.y7{bottom:670.000000pt;}
.y10f{bottom:672.000000pt;}
.yd1{bottom:672.666667pt;}
.yef{bottom:677.333333pt;}
.y75{bottom:681.333333pt;}
.y4d{bottom:684.000000pt;}
.y10e{bottom:685.333333pt;}
.y2a{bottom:687.333333pt;}
.yd0{bottom:692.666667pt;}
.y12d{bottom:694.000000pt;}
.y10d{bottom:698.666667pt;}
.y6{bottom:699.333333pt;}
.y74{bottom:701.333333pt;}
.y4c{bottom:704.000000pt;}
.y12c{bottom:710.666667pt;}
.y10c{bottom:712.000000pt;}
.ycf{bottom:712.666667pt;}
.y29{bottom:719.333333pt;}
.yb4{bottom:721.333333pt;}
.yee{bottom:722.000000pt;}
.y4b{bottom:724.000000pt;}
.y10b{bottom:725.333333pt;}
.y5{bottom:726.000000pt;}
.y12b{bottom:727.333333pt;}
.y98{bottom:732.000000pt;}
.yce{bottom:735.333333pt;}
.y28{bottom:736.000000pt;}
.yed{bottom:738.000000pt;}
.y10a{bottom:738.666667pt;}
.yb3{bottom:741.333333pt;}
.y4a{bottom:744.000000pt;}
.y97{bottom:748.000000pt;}
.y73{bottom:749.333333pt;}
.y4{bottom:752.666667pt;}
.y109{bottom:758.666667pt;}
.y27{bottom:760.666667pt;}
.y49{bottom:764.000000pt;}
.y72{bottom:769.333333pt;}
.y26{bottom:777.333333pt;}
.y3{bottom:779.333333pt;}
.y96{bottom:780.000000pt;}
.y48{bottom:784.000000pt;}
.y25{bottom:793.998667pt;}
.y12a{bottom:794.000000pt;}
.y108{bottom:794.666667pt;}
.y95{bottom:796.000000pt;}
.y47{bottom:804.000000pt;}
.y107{bottom:808.000000pt;}
.y24{bottom:810.666667pt;}
.y94{bottom:812.000000pt;}
.y46{bottom:824.000000pt;}
.y2{bottom:826.000000pt;}
.y23{bottom:827.333333pt;}
.y93{bottom:828.000000pt;}
.hc{height:31.992188pt;}
.h12{height:34.730667pt;}
.h14{height:35.312500pt;}
.h16{height:35.968000pt;}
.h15{height:36.053333pt;}
.h13{height:36.229167pt;}
.h2{height:39.726562pt;}
.h11{height:39.839844pt;}
.h8{height:40.757812pt;}
.h10{height:41.736979pt;}
.hf{height:43.413333pt;}
.ha{height:44.140625pt;}
.h9{height:45.286458pt;}
.hb{height:45.291792pt;}
.h1{height:48.554688pt;}
.h6{height:49.456000pt;}
.h7{height:52.218750pt;}
.he{height:52.968750pt;}
.hd{height:54.343750pt;}
.h4{height:70.625000pt;}
.h5{height:72.458333pt;}
.h3{height:88.281250pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x8{left:60.106667pt;}
.xe{left:73.333333pt;}
.x9{left:79.994667pt;}
.x7{left:88.000000pt;}
.x2{left:100.000000pt;}
.x3{left:101.479867pt;}
.xd{left:102.666667pt;}
.xa{left:120.000000pt;}
.x4{left:128.000000pt;}
.xc{left:142.666667pt;}
.x5{left:152.238933pt;}
.xf{left:161.327867pt;}
.x6{left:234.001467pt;}
.x1{left:558.447333pt;}
.xb{left:559.457867pt;}
}




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