
    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_aa5c2321fab2e6bd7a390579.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8ba58a0d0508907b444e83f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_230c7f8e9db1b2140cb42357.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_2674c9e792476ca422591e99.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2394dd69e53b49ca100c9bb3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_0be1b736d00b175160066da8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_f3b529213f9879ffebacd9d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_40d386450c15e419c1f2f4e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_cd2c1a71340f5142a1dc7abb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050000;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_1e24215f82b4cabd83bb9885.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_aadc1cf04e3a919eb1274752.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8c33caf0dcd276c7aea36997.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_aa86d0051552dcb8d6a34d08.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,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;}
.ls50{letter-spacing:-2.261952px;}
.ls54{letter-spacing:-2.219616px;}
.ls42{letter-spacing:-2.201472px;}
.ls40{letter-spacing:-2.183328px;}
.ls38{letter-spacing:-2.134944px;}
.ls3e{letter-spacing:-2.122848px;}
.ls41{letter-spacing:-2.104704px;}
.ls39{letter-spacing:-2.056320px;}
.ls3a{letter-spacing:-2.038176px;}
.ls43{letter-spacing:-2.020032px;}
.ls3f{letter-spacing:-1.977696px;}
.ls3b{letter-spacing:-1.959552px;}
.ls3d{letter-spacing:-1.941408px;}
.ls49{letter-spacing:-1.923264px;}
.ls3c{letter-spacing:-1.917216px;}
.ls1a{letter-spacing:-1.663200px;}
.ls1c{letter-spacing:-1.602720px;}
.ls1b{letter-spacing:-1.475712px;}
.ls19{letter-spacing:-1.451520px;}
.ls1d{letter-spacing:-1.360800px;}
.lse{letter-spacing:-1.209600px;}
.lsd{letter-spacing:-1.202400px;}
.lsc{letter-spacing:-1.188000px;}
.ls9{letter-spacing:-0.399168px;}
.lsa{letter-spacing:-0.338688px;}
.lsb{letter-spacing:-0.241920px;}
.ls20{letter-spacing:-0.221760px;}
.ls7{letter-spacing:-0.178848px;}
.ls21{letter-spacing:-0.177408px;}
.ls1{letter-spacing:-0.145728px;}
.ls6{letter-spacing:-0.132480px;}
.ls5{letter-spacing:-0.066240px;}
.ls2{letter-spacing:-0.059616px;}
.ls3{letter-spacing:-0.052992px;}
.ls8{letter-spacing:-0.021600px;}
.ls4{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.063360px;}
.ls53{letter-spacing:0.092160px;}
.ls1e{letter-spacing:0.202752px;}
.ls4b{letter-spacing:0.632160px;}
.ls34{letter-spacing:1.101600px;}
.ls25{letter-spacing:1.766880px;}
.ls27{letter-spacing:2.100528px;}
.ls2d{letter-spacing:2.654352px;}
.ls4a{letter-spacing:3.237120px;}
.ls5a{letter-spacing:3.699360px;}
.ls29{letter-spacing:3.739680px;}
.ls4c{letter-spacing:3.823200px;}
.ls35{letter-spacing:3.921120px;}
.ls24{letter-spacing:3.996000px;}
.lsf{letter-spacing:4.109760px;}
.ls59{letter-spacing:4.366080px;}
.ls12{letter-spacing:4.453200px;}
.ls13{letter-spacing:4.453920px;}
.ls16{letter-spacing:4.498560px;}
.ls4d{letter-spacing:4.907520px;}
.ls30{letter-spacing:4.980384px;}
.ls57{letter-spacing:5.411520px;}
.ls5e{letter-spacing:6.285600px;}
.ls44{letter-spacing:6.454080px;}
.ls14{letter-spacing:7.486848px;}
.ls15{letter-spacing:7.489440px;}
.ls17{letter-spacing:7.570368px;}
.ls18{letter-spacing:7.571520px;}
.ls36{letter-spacing:7.655040px;}
.ls10{letter-spacing:7.895664px;}
.ls11{letter-spacing:7.896960px;}
.ls32{letter-spacing:11.036160px;}
.ls2f{letter-spacing:11.468160px;}
.ls2b{letter-spacing:11.718720px;}
.ls2a{letter-spacing:13.432464px;}
.ls61{letter-spacing:13.495680px;}
.ls2c{letter-spacing:15.921360px;}
.ls58{letter-spacing:15.937920px;}
.ls26{letter-spacing:15.956640px;}
.ls1f{letter-spacing:16.084800px;}
.ls28{letter-spacing:16.463520px;}
.ls48{letter-spacing:16.493760px;}
.ls5d{letter-spacing:17.052480px;}
.ls23{letter-spacing:17.408160px;}
.ls31{letter-spacing:17.951040px;}
.ls5c{letter-spacing:19.922400px;}
.ls45{letter-spacing:20.897280px;}
.ls4f{letter-spacing:21.924000px;}
.ls55{letter-spacing:22.548960px;}
.ls0{letter-spacing:22.914576px;}
.ls2e{letter-spacing:23.474880px;}
.ls51{letter-spacing:26.881920px;}
.ls5f{letter-spacing:34.660800px;}
.ls22{letter-spacing:36.105552px;}
.ls52{letter-spacing:59.732640px;}
.ls47{letter-spacing:61.358112px;}
.ls33{letter-spacing:62.951040px;}
.ls5b{letter-spacing:63.070560px;}
.ls60{letter-spacing:83.211984px;}
.ls46{letter-spacing:116.503200px;}
.ls56{letter-spacing:185.945760px;}
.ls37{letter-spacing:222.120720px;}
.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;}
}
.ws0{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.813440px;}
.wsb{word-spacing:-16.812000px;}
.ws5{word-spacing:-16.797600px;}
.wsc{word-spacing:-16.790400px;}
.ws7{word-spacing:-15.361920px;}
.wsa{word-spacing:-15.337728px;}
.ws9{word-spacing:-15.150240px;}
.ws3{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.878080px;}
.ws12{word-spacing:-13.178592px;}
.ws13{word-spacing:-13.160448px;}
.wsf{word-spacing:-13.142304px;}
.ws11{word-spacing:-13.099968px;}
.wsd{word-spacing:-13.081824px;}
.ws16{word-spacing:-13.063680px;}
.ws15{word-spacing:-13.015296px;}
.wse{word-spacing:-12.997152px;}
.ws14{word-spacing:-12.985056px;}
.ws10{word-spacing:-12.936672px;}
.ws17{word-spacing:-12.918528px;}
.ws1{word-spacing:-0.050400px;}
.ws6{word-spacing:0.000000px;}
._23{margin-left:-2.334960px;}
._0{margin-left:-1.009872px;}
._1{width:1.028160px;}
._a{width:2.376000px;}
._11{width:3.504672px;}
._e{width:4.608000px;}
._16{width:5.688000px;}
._f{width:7.056000px;}
._7{width:8.136000px;}
._4{width:9.648000px;}
._12{width:10.728000px;}
._13{width:11.736000px;}
._19{width:12.888000px;}
._3{width:14.040000px;}
._2{width:15.802704px;}
._28{width:17.055360px;}
._15{width:18.144000px;}
._6{width:19.800000px;}
._17{width:21.224736px;}
._14{width:22.255632px;}
._10{width:24.112368px;}
._18{width:25.920000px;}
._1c{width:27.576000px;}
._b{width:28.872000px;}
._1f{width:30.600000px;}
._d{width:31.608000px;}
._9{width:32.616000px;}
._c{width:34.039152px;}
._20{width:35.280000px;}
._5{width:36.360000px;}
._1b{width:37.800000px;}
._1e{width:39.096000px;}
._21{width:41.256000px;}
._22{width:42.397920px;}
._1d{width:44.064000px;}
._1a{width:45.720000px;}
._3f{width:47.900160px;}
._2c{width:49.412160px;}
._43{width:50.621760px;}
._34{width:52.799040px;}
._8{width:57.600000px;}
._41{width:58.922352px;}
._3c{width:61.931520px;}
._33{width:63.866880px;}
._29{width:65.741760px;}
._27{width:67.087296px;}
._26{width:68.221440px;}
._3e{width:70.141680px;}
._3d{width:72.696960px;}
._42{width:84.792960px;}
._25{width:87.163776px;}
._24{width:88.240320px;}
._2f{width:91.856304px;}
._2e{width:94.288320px;}
._2d{width:95.316480px;}
._3b{width:115.516800px;}
._32{width:117.814464px;}
._31{width:119.397456px;}
._39{width:128.096640px;}
._35{width:140.434560px;}
._2a{width:157.671360px;}
._37{width:169.442208px;}
._36{width:170.674560px;}
._38{width:172.972800px;}
._40{width:188.153280px;}
._2b{width:224.259840px;}
._3a{width:878.422752px;}
._30{width:986.489280px;}
.fc2{color:rgb(28,30,41);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.y1c6{bottom:84.600000px;}
.ye4{bottom:85.320000px;}
.yba{bottom:87.480000px;}
.y12f{bottom:92.880000px;}
.y169{bottom:95.760000px;}
.y97{bottom:96.120000px;}
.y14a{bottom:99.000000px;}
.yfa{bottom:99.360000px;}
.y35{bottom:100.440000px;}
.y67{bottom:101.160000px;}
.y1c5{bottom:101.880000px;}
.ye3{bottom:105.840000px;}
.yb9{bottom:108.000000px;}
.y128{bottom:113.400000px;}
.y168{bottom:116.280000px;}
.y96{bottom:116.640000px;}
.y189{bottom:117.720000px;}
.y1c4{bottom:119.160000px;}
.y149{bottom:119.880000px;}
.yf9{bottom:120.240000px;}
.y34{bottom:120.960000px;}
.y66{bottom:121.680000px;}
.yb8{bottom:128.880000px;}
.y127{bottom:134.280000px;}
.y188{bottom:135.000000px;}
.y1c3{bottom:136.440000px;}
.y167{bottom:137.160000px;}
.y95{bottom:137.520000px;}
.ye2{bottom:138.240000px;}
.y148{bottom:140.400000px;}
.yf8{bottom:140.760000px;}
.y33{bottom:141.840000px;}
.y65{bottom:142.560000px;}
.yb7{bottom:149.400000px;}
.y187{bottom:152.280000px;}
.y1c2{bottom:153.720000px;}
.y126{bottom:154.800000px;}
.ye1{bottom:157.680000px;}
.y94{bottom:158.040000px;}
.y147{bottom:161.280000px;}
.yf7{bottom:161.640000px;}
.y32{bottom:162.360000px;}
.y64{bottom:163.080000px;}
.y186{bottom:169.560000px;}
.yb6{bottom:170.280000px;}
.y1c1{bottom:171.000000px;}
.ye0{bottom:173.160000px;}
.y125{bottom:175.680000px;}
.y166{bottom:178.560000px;}
.y93{bottom:178.920000px;}
.y146{bottom:181.800000px;}
.yf6{bottom:182.160000px;}
.y31{bottom:183.240000px;}
.y185{bottom:186.840000px;}
.y1c0{bottom:188.280000px;}
.yb5{bottom:190.800000px;}
.ydf{bottom:194.040000px;}
.y63{bottom:195.480000px;}
.y124{bottom:196.200000px;}
.y165{bottom:199.080000px;}
.y92{bottom:199.440000px;}
.y145{bottom:202.680000px;}
.yf5{bottom:203.040000px;}
.y30{bottom:203.760000px;}
.y184{bottom:204.120000px;}
.y1bf{bottom:205.560000px;}
.yb4{bottom:211.680000px;}
.yde{bottom:214.560000px;}
.y62{bottom:216.720000px;}
.y123{bottom:217.080000px;}
.y164{bottom:219.960000px;}
.y91{bottom:220.320000px;}
.y183{bottom:221.040000px;}
.y1be{bottom:222.840000px;}
.y144{bottom:223.200000px;}
.yf4{bottom:223.560000px;}
.y2f{bottom:224.640000px;}
.yb3{bottom:232.200000px;}
.ydd{bottom:235.440000px;}
.y61{bottom:237.240000px;}
.y122{bottom:237.600000px;}
.y182{bottom:238.320000px;}
.y1bd{bottom:240.120000px;}
.y163{bottom:240.480000px;}
.y90{bottom:240.840000px;}
.y143{bottom:244.080000px;}
.yf3{bottom:244.440000px;}
.y2e{bottom:245.160000px;}
.yb2{bottom:253.080000px;}
.y181{bottom:255.600000px;}
.ydc{bottom:255.960000px;}
.y1bc{bottom:257.040000px;}
.y60{bottom:258.120000px;}
.y121{bottom:258.480000px;}
.y162{bottom:261.360000px;}
.y8f{bottom:261.720000px;}
.y142{bottom:264.600000px;}
.yf2{bottom:264.960000px;}
.y2d{bottom:266.040000px;}
.y180{bottom:272.880000px;}
.yb1{bottom:273.600000px;}
.y1bb{bottom:274.320000px;}
.ydb{bottom:276.840000px;}
.y5f{bottom:278.640000px;}
.y120{bottom:279.000000px;}
.y161{bottom:281.880000px;}
.y8e{bottom:282.240000px;}
.yf1{bottom:285.840000px;}
.y2c{bottom:286.560000px;}
.y17f{bottom:290.160000px;}
.y1ba{bottom:291.600000px;}
.yb0{bottom:294.480000px;}
.y141{bottom:297.000000px;}
.yda{bottom:297.360000px;}
.y5e{bottom:299.520000px;}
.y11f{bottom:299.880000px;}
.y160{bottom:302.760000px;}
.y8d{bottom:303.120000px;}
.yf0{bottom:306.360000px;}
.y2b{bottom:307.440000px;}
.y1b9{bottom:308.880000px;}
.y12e{bottom:311.400000px;}
.yaf{bottom:315.000000px;}
.y140{bottom:317.880000px;}
.yd9{bottom:318.240000px;}
.y5d{bottom:320.040000px;}
.y15f{bottom:323.280000px;}
.y8c{bottom:323.640000px;}
.y17e{bottom:324.720000px;}
.y1b8{bottom:326.160000px;}
.yef{bottom:327.240000px;}
.y2a{bottom:327.960000px;}
.y11e{bottom:332.280000px;}
.y12d{bottom:332.640000px;}
.yae{bottom:335.880000px;}
.yd8{bottom:338.760000px;}
.y17d{bottom:342.000000px;}
.y1b7{bottom:343.440000px;}
.y15e{bottom:344.160000px;}
.y8b{bottom:344.520000px;}
.yee{bottom:347.760000px;}
.y29{bottom:348.840000px;}
.y5c{bottom:352.440000px;}
.y11d{bottom:353.160000px;}
.y16b{bottom:355.680000px;}
.yad{bottom:356.400000px;}
.y13f{bottom:359.280000px;}
.yd7{bottom:359.640000px;}
.y1b6{bottom:360.720000px;}
.y15d{bottom:364.680000px;}
.yed{bottom:368.640000px;}
.y28{bottom:369.360000px;}
.y5b{bottom:373.320000px;}
.y11c{bottom:374.040000px;}
.y16a{bottom:376.560000px;}
.y8a{bottom:376.920000px;}
.yac{bottom:377.280000px;}
.y1b5{bottom:378.000000px;}
.yd6{bottom:380.160000px;}
.yec{bottom:389.160000px;}
.y27{bottom:390.240000px;}
.y17c{bottom:393.840000px;}
.y5a{bottom:394.200000px;}
.y11b{bottom:394.560000px;}
.y1b4{bottom:395.280000px;}
.y15c{bottom:397.080000px;}
.y89{bottom:397.800000px;}
.y13e{bottom:400.680000px;}
.yd5{bottom:401.040000px;}
.yeb{bottom:410.040000px;}
.y26{bottom:410.760000px;}
.y17b{bottom:411.120000px;}
.y1b3{bottom:412.560000px;}
.y59{bottom:414.720000px;}
.y11a{bottom:415.440000px;}
.y15b{bottom:418.320000px;}
.y88{bottom:418.680000px;}
.yd4{bottom:421.560000px;}
.y17a{bottom:428.040000px;}
.y1b2{bottom:429.840000px;}
.yea{bottom:430.560000px;}
.y25{bottom:431.640000px;}
.y58{bottom:435.600000px;}
.y119{bottom:435.960000px;}
.y15a{bottom:438.840000px;}
.y87{bottom:439.200000px;}
.y13d{bottom:442.080000px;}
.yd3{bottom:442.440000px;}
.y179{bottom:445.320000px;}
.y1b1{bottom:447.120000px;}
.ye9{bottom:451.440000px;}
.y24{bottom:452.160000px;}
.y57{bottom:456.120000px;}
.y118{bottom:456.840000px;}
.y159{bottom:459.720000px;}
.y86{bottom:460.080000px;}
.y178{bottom:462.600000px;}
.yd2{bottom:462.960000px;}
.y1b0{bottom:464.040000px;}
.ye8{bottom:471.960000px;}
.y23{bottom:473.040000px;}
.y56{bottom:477.000000px;}
.y117{bottom:477.360000px;}
.y177{bottom:479.880000px;}
.y158{bottom:480.240000px;}
.y85{bottom:480.600000px;}
.y1af{bottom:481.320000px;}
.y13c{bottom:483.480000px;}
.yd1{bottom:483.840000px;}
.ye7{bottom:492.840000px;}
.y22{bottom:493.560000px;}
.y176{bottom:497.160000px;}
.y55{bottom:497.520000px;}
.y116{bottom:498.240000px;}
.y1ae{bottom:498.600000px;}
.y157{bottom:501.120000px;}
.y84{bottom:501.480000px;}
.yd0{bottom:504.360000px;}
.ye6{bottom:513.360000px;}
.y21{bottom:514.440000px;}
.y1ad{bottom:515.880000px;}
.y54{bottom:518.400000px;}
.y115{bottom:518.760000px;}
.y156{bottom:521.640000px;}
.y83{bottom:522.000000px;}
.y13b{bottom:524.880000px;}
.ycf{bottom:525.240000px;}
.y12c{bottom:530.280000px;}
.y175{bottom:531.720000px;}
.y1ac{bottom:533.160000px;}
.yab{bottom:533.880000px;}
.ye5{bottom:534.240000px;}
.y20{bottom:534.960000px;}
.y53{bottom:538.920000px;}
.y114{bottom:539.640000px;}
.y155{bottom:542.520000px;}
.y82{bottom:542.880000px;}
.yce{bottom:545.760000px;}
.y174{bottom:549.000000px;}
.y1ab{bottom:550.440000px;}
.y12b{bottom:551.520000px;}
.yaa{bottom:554.760000px;}
.y52{bottom:559.800000px;}
.y113{bottom:560.160000px;}
.y154{bottom:563.040000px;}
.y81{bottom:563.400000px;}
.y13a{bottom:566.280000px;}
.ycd{bottom:566.640000px;}
.y1f{bottom:567.360000px;}
.y1aa{bottom:567.720000px;}
.y12a{bottom:572.040000px;}
.ya9{bottom:575.640000px;}
.y173{bottom:583.560000px;}
.y153{bottom:583.920000px;}
.y80{bottom:584.280000px;}
.y1a9{bottom:585.000000px;}
.ycc{bottom:587.160000px;}
.y1e{bottom:588.240000px;}
.y51{bottom:592.200000px;}
.y112{bottom:592.560000px;}
.y129{bottom:592.920000px;}
.ya8{bottom:596.160000px;}
.y172{bottom:600.840000px;}
.y1a8{bottom:602.280000px;}
.y152{bottom:604.440000px;}
.y7f{bottom:604.800000px;}
.ycb{bottom:608.040000px;}
.y50{bottom:613.080000px;}
.y111{bottom:613.440000px;}
.ya7{bottom:617.040000px;}
.y171{bottom:617.760000px;}
.y1d{bottom:618.120000px;}
.y139{bottom:619.560000px;}
.y151{bottom:625.320000px;}
.y7e{bottom:625.680000px;}
.yca{bottom:628.560000px;}
.y4f{bottom:633.960000px;}
.y110{bottom:634.320000px;}
.y170{bottom:635.040000px;}
.y1a7{bottom:636.840000px;}
.ybb{bottom:637.200000px;}
.ya6{bottom:637.560000px;}
.y1c{bottom:639.360000px;}
.y138{bottom:639.720000px;}
.y150{bottom:645.840000px;}
.y7d{bottom:646.200000px;}
.yc9{bottom:649.440000px;}
.y16f{bottom:652.320000px;}
.y1a6{bottom:653.760000px;}
.y4e{bottom:654.480000px;}
.y10f{bottom:654.840000px;}
.y137{bottom:658.080000px;}
.ya5{bottom:658.440000px;}
.y14f{bottom:666.720000px;}
.y7c{bottom:667.080000px;}
.y1b{bottom:668.520000px;}
.y16e{bottom:669.600000px;}
.yc8{bottom:669.960000px;}
.y1a5{bottom:671.040000px;}
.y4d{bottom:675.360000px;}
.y10e{bottom:675.720000px;}
.y136{bottom:678.600000px;}
.ya4{bottom:678.960000px;}
.y14e{bottom:687.240000px;}
.y7b{bottom:687.600000px;}
.y1a4{bottom:688.320000px;}
.y1a{bottom:689.760000px;}
.yc7{bottom:690.840000px;}
.y10d{bottom:696.240000px;}
.y135{bottom:699.480000px;}
.ya3{bottom:699.840000px;}
.y1a3{bottom:705.600000px;}
.y4c{bottom:707.760000px;}
.y14d{bottom:708.120000px;}
.y7a{bottom:708.480000px;}
.y19{bottom:710.280000px;}
.yc6{bottom:711.360000px;}
.y10c{bottom:717.120000px;}
.y16d{bottom:719.640000px;}
.y134{bottom:720.000000px;}
.ya2{bottom:720.360000px;}
.y1a2{bottom:722.880000px;}
.y4b{bottom:728.640000px;}
.y79{bottom:729.000000px;}
.y18{bottom:731.160000px;}
.yc5{bottom:732.240000px;}
.y10b{bottom:737.640000px;}
.y1a1{bottom:740.160000px;}
.y133{bottom:740.880000px;}
.ya1{bottom:741.240000px;}
.y4a{bottom:749.520000px;}
.y78{bottom:749.880000px;}
.y17{bottom:751.680000px;}
.yc4{bottom:752.760000px;}
.y1a0{bottom:757.440000px;}
.y10a{bottom:758.520000px;}
.y132{bottom:761.400000px;}
.ya0{bottom:761.760000px;}
.y49{bottom:770.040000px;}
.y77{bottom:770.400000px;}
.y16{bottom:772.560000px;}
.yc3{bottom:773.640000px;}
.y19f{bottom:774.720000px;}
.y109{bottom:779.040000px;}
.y9f{bottom:782.280000px;}
.y48{bottom:790.920000px;}
.y76{bottom:791.280000px;}
.y19e{bottom:792.000000px;}
.y15{bottom:793.080000px;}
.yc2{bottom:794.160000px;}
.y108{bottom:799.920000px;}
.y9e{bottom:803.160000px;}
.y19d{bottom:809.280000px;}
.y47{bottom:811.440000px;}
.y75{bottom:811.800000px;}
.y14{bottom:813.960000px;}
.y131{bottom:814.680000px;}
.yc1{bottom:815.040000px;}
.y107{bottom:820.440000px;}
.y9d{bottom:823.680000px;}
.y19c{bottom:826.560000px;}
.y46{bottom:832.320000px;}
.y74{bottom:832.680000px;}
.y13{bottom:834.480000px;}
.y130{bottom:834.840000px;}
.yc0{bottom:835.560000px;}
.y106{bottom:841.320000px;}
.y19b{bottom:843.480000px;}
.y14c{bottom:843.840000px;}
.y9c{bottom:844.560000px;}
.y45{bottom:852.840000px;}
.y73{bottom:853.200000px;}
.y12{bottom:855.360000px;}
.ybf{bottom:856.440000px;}
.y19a{bottom:860.760000px;}
.y16c{bottom:861.840000px;}
.y14b{bottom:864.720000px;}
.y9b{bottom:865.080000px;}
.y44{bottom:873.720000px;}
.y72{bottom:874.080000px;}
.y11{bottom:875.880000px;}
.ybe{bottom:876.960000px;}
.y199{bottom:878.040000px;}
.y9a{bottom:885.960000px;}
.y43{bottom:894.240000px;}
.y71{bottom:894.600000px;}
.y198{bottom:895.320000px;}
.y10{bottom:896.760000px;}
.y99{bottom:906.480000px;}
.ybd{bottom:909.360000px;}
.y197{bottom:912.600000px;}
.y42{bottom:915.120000px;}
.y105{bottom:915.480000px;}
.yf{bottom:915.840000px;}
.y70{bottom:927.000000px;}
.y98{bottom:927.360000px;}
.ybc{bottom:929.520000px;}
.y196{bottom:929.880000px;}
.ye{bottom:930.600000px;}
.y41{bottom:935.640000px;}
.y104{bottom:936.000000px;}
.y195{bottom:947.160000px;}
.yd{bottom:947.880000px;}
.y40{bottom:956.160000px;}
.y103{bottom:956.880000px;}
.y194{bottom:964.440000px;}
.y6f{bottom:968.760000px;}
.yc{bottom:974.520000px;}
.y3f{bottom:977.040000px;}
.y102{bottom:977.400000px;}
.y193{bottom:981.720000px;}
.y6e{bottom:989.280000px;}
.yb{bottom:994.680000px;}
.y3e{bottom:997.560000px;}
.y101{bottom:998.280000px;}
.y192{bottom:999.000000px;}
.y6d{bottom:1010.160000px;}
.y191{bottom:1016.280000px;}
.y100{bottom:1018.800000px;}
.ya{bottom:1023.840000px;}
.y3d{bottom:1029.960000px;}
.y6c{bottom:1030.680000px;}
.y190{bottom:1033.560000px;}
.yff{bottom:1039.680000px;}
.y18f{bottom:1050.480000px;}
.y3c{bottom:1050.840000px;}
.y6b{bottom:1051.560000px;}
.y9{bottom:1054.800000px;}
.yfe{bottom:1060.200000px;}
.y18e{bottom:1067.760000px;}
.y3b{bottom:1072.080000px;}
.yfd{bottom:1081.080000px;}
.y18d{bottom:1085.040000px;}
.y8{bottom:1086.120000px;}
.y3a{bottom:1092.960000px;}
.yfc{bottom:1101.600000px;}
.y18c{bottom:1102.320000px;}
.y39{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.y18b{bottom:1119.600000px;}
.yfb{bottom:1134.000000px;}
.y38{bottom:1134.360000px;}
.y18a{bottom:1136.880000px;}
.y3{bottom:1146.600000px;}
.y6a{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y37{bottom:1171.800000px;}
.y1{bottom:1190.880000px;}
.y69{bottom:1191.240000px;}
.y68{bottom:1191.600000px;}
.y36{bottom:1192.320000px;}
.h5{height:24.000000px;}
.ha{height:31.672266px;}
.h7{height:40.310156px;}
.h9{height:41.993438px;}
.h3{height:44.149219px;}
.hc{height:46.448640px;}
.hd{height:48.660480px;}
.h8{height:48.796875px;}
.he{height:49.042969px;}
.hb{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.hf{height:53.067656px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:127.439928px;}
.x4{left:154.439928px;}
.xc{left:169.965072px;}
.xf{left:181.439928px;}
.x7{left:188.867808px;}
.x2{left:233.702280px;}
.x1{left:242.852076px;}
.xa{left:272.194704px;}
.x8{left:273.282336px;}
.xb{left:299.913192px;}
.x9{left:338.881716px;}
.x3{left:446.152320px;}
.xe{left:534.392985px;}
.xd{left:578.268000px;}
.x5{left:735.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls50{letter-spacing:-2.010624pt;}
.ls54{letter-spacing:-1.972992pt;}
.ls42{letter-spacing:-1.956864pt;}
.ls40{letter-spacing:-1.940736pt;}
.ls38{letter-spacing:-1.897728pt;}
.ls3e{letter-spacing:-1.886976pt;}
.ls41{letter-spacing:-1.870848pt;}
.ls39{letter-spacing:-1.827840pt;}
.ls3a{letter-spacing:-1.811712pt;}
.ls43{letter-spacing:-1.795584pt;}
.ls3f{letter-spacing:-1.757952pt;}
.ls3b{letter-spacing:-1.741824pt;}
.ls3d{letter-spacing:-1.725696pt;}
.ls49{letter-spacing:-1.709568pt;}
.ls3c{letter-spacing:-1.704192pt;}
.ls1a{letter-spacing:-1.478400pt;}
.ls1c{letter-spacing:-1.424640pt;}
.ls1b{letter-spacing:-1.311744pt;}
.ls19{letter-spacing:-1.290240pt;}
.ls1d{letter-spacing:-1.209600pt;}
.lse{letter-spacing:-1.075200pt;}
.lsd{letter-spacing:-1.068800pt;}
.lsc{letter-spacing:-1.056000pt;}
.ls9{letter-spacing:-0.354816pt;}
.lsa{letter-spacing:-0.301056pt;}
.lsb{letter-spacing:-0.215040pt;}
.ls20{letter-spacing:-0.197120pt;}
.ls7{letter-spacing:-0.158976pt;}
.ls21{letter-spacing:-0.157696pt;}
.ls1{letter-spacing:-0.129536pt;}
.ls6{letter-spacing:-0.117760pt;}
.ls5{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:-0.052992pt;}
.ls3{letter-spacing:-0.047104pt;}
.ls8{letter-spacing:-0.019200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.056320pt;}
.ls53{letter-spacing:0.081920pt;}
.ls1e{letter-spacing:0.180224pt;}
.ls4b{letter-spacing:0.561920pt;}
.ls34{letter-spacing:0.979200pt;}
.ls25{letter-spacing:1.570560pt;}
.ls27{letter-spacing:1.867136pt;}
.ls2d{letter-spacing:2.359424pt;}
.ls4a{letter-spacing:2.877440pt;}
.ls5a{letter-spacing:3.288320pt;}
.ls29{letter-spacing:3.324160pt;}
.ls4c{letter-spacing:3.398400pt;}
.ls35{letter-spacing:3.485440pt;}
.ls24{letter-spacing:3.552000pt;}
.lsf{letter-spacing:3.653120pt;}
.ls59{letter-spacing:3.880960pt;}
.ls12{letter-spacing:3.958400pt;}
.ls13{letter-spacing:3.959040pt;}
.ls16{letter-spacing:3.998720pt;}
.ls4d{letter-spacing:4.362240pt;}
.ls30{letter-spacing:4.427008pt;}
.ls57{letter-spacing:4.810240pt;}
.ls5e{letter-spacing:5.587200pt;}
.ls44{letter-spacing:5.736960pt;}
.ls14{letter-spacing:6.654976pt;}
.ls15{letter-spacing:6.657280pt;}
.ls17{letter-spacing:6.729216pt;}
.ls18{letter-spacing:6.730240pt;}
.ls36{letter-spacing:6.804480pt;}
.ls10{letter-spacing:7.018368pt;}
.ls11{letter-spacing:7.019520pt;}
.ls32{letter-spacing:9.809920pt;}
.ls2f{letter-spacing:10.193920pt;}
.ls2b{letter-spacing:10.416640pt;}
.ls2a{letter-spacing:11.939968pt;}
.ls61{letter-spacing:11.996160pt;}
.ls2c{letter-spacing:14.152320pt;}
.ls58{letter-spacing:14.167040pt;}
.ls26{letter-spacing:14.183680pt;}
.ls1f{letter-spacing:14.297600pt;}
.ls28{letter-spacing:14.634240pt;}
.ls48{letter-spacing:14.661120pt;}
.ls5d{letter-spacing:15.157760pt;}
.ls23{letter-spacing:15.473920pt;}
.ls31{letter-spacing:15.956480pt;}
.ls5c{letter-spacing:17.708800pt;}
.ls45{letter-spacing:18.575360pt;}
.ls4f{letter-spacing:19.488000pt;}
.ls55{letter-spacing:20.043520pt;}
.ls0{letter-spacing:20.368512pt;}
.ls2e{letter-spacing:20.866560pt;}
.ls51{letter-spacing:23.895040pt;}
.ls5f{letter-spacing:30.809600pt;}
.ls22{letter-spacing:32.093824pt;}
.ls52{letter-spacing:53.095680pt;}
.ls47{letter-spacing:54.540544pt;}
.ls33{letter-spacing:55.956480pt;}
.ls5b{letter-spacing:56.062720pt;}
.ls60{letter-spacing:73.966208pt;}
.ls46{letter-spacing:103.558400pt;}
.ls56{letter-spacing:165.285120pt;}
.ls37{letter-spacing:197.440640pt;}
.ws0{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.945280pt;}
.wsb{word-spacing:-14.944000pt;}
.ws5{word-spacing:-14.931200pt;}
.wsc{word-spacing:-14.924800pt;}
.ws7{word-spacing:-13.655040pt;}
.wsa{word-spacing:-13.633536pt;}
.ws9{word-spacing:-13.466880pt;}
.ws3{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.224960pt;}
.ws12{word-spacing:-11.714304pt;}
.ws13{word-spacing:-11.698176pt;}
.wsf{word-spacing:-11.682048pt;}
.ws11{word-spacing:-11.644416pt;}
.wsd{word-spacing:-11.628288pt;}
.ws16{word-spacing:-11.612160pt;}
.ws15{word-spacing:-11.569152pt;}
.wse{word-spacing:-11.553024pt;}
.ws14{word-spacing:-11.542272pt;}
.ws10{word-spacing:-11.499264pt;}
.ws17{word-spacing:-11.483136pt;}
.ws1{word-spacing:-0.044800pt;}
.ws6{word-spacing:0.000000pt;}
._23{margin-left:-2.075520pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.913920pt;}
._a{width:2.112000pt;}
._11{width:3.115264pt;}
._e{width:4.096000pt;}
._16{width:5.056000pt;}
._f{width:6.272000pt;}
._7{width:7.232000pt;}
._4{width:8.576000pt;}
._12{width:9.536000pt;}
._13{width:10.432000pt;}
._19{width:11.456000pt;}
._3{width:12.480000pt;}
._2{width:14.046848pt;}
._28{width:15.160320pt;}
._15{width:16.128000pt;}
._6{width:17.600000pt;}
._17{width:18.866432pt;}
._14{width:19.782784pt;}
._10{width:21.433216pt;}
._18{width:23.040000pt;}
._1c{width:24.512000pt;}
._b{width:25.664000pt;}
._1f{width:27.200000pt;}
._d{width:28.096000pt;}
._9{width:28.992000pt;}
._c{width:30.257024pt;}
._20{width:31.360000pt;}
._5{width:32.320000pt;}
._1b{width:33.600000pt;}
._1e{width:34.752000pt;}
._21{width:36.672000pt;}
._22{width:37.687040pt;}
._1d{width:39.168000pt;}
._1a{width:40.640000pt;}
._3f{width:42.577920pt;}
._2c{width:43.921920pt;}
._43{width:44.997120pt;}
._34{width:46.932480pt;}
._8{width:51.200000pt;}
._41{width:52.375424pt;}
._3c{width:55.050240pt;}
._33{width:56.770560pt;}
._29{width:58.437120pt;}
._27{width:59.633152pt;}
._26{width:60.641280pt;}
._3e{width:62.348160pt;}
._3d{width:64.619520pt;}
._42{width:75.371520pt;}
._25{width:77.478912pt;}
._24{width:78.435840pt;}
._2f{width:81.650048pt;}
._2e{width:83.811840pt;}
._2d{width:84.725760pt;}
._3b{width:102.681600pt;}
._32{width:104.723968pt;}
._31{width:106.131072pt;}
._39{width:113.863680pt;}
._35{width:124.830720pt;}
._2a{width:140.152320pt;}
._37{width:150.615296pt;}
._36{width:151.710720pt;}
._38{width:153.753600pt;}
._40{width:167.247360pt;}
._2b{width:199.342080pt;}
._3a{width:780.820224pt;}
._30{width:876.879360pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.y1c6{bottom:75.200000pt;}
.ye4{bottom:75.840000pt;}
.yba{bottom:77.760000pt;}
.y12f{bottom:82.560000pt;}
.y169{bottom:85.120000pt;}
.y97{bottom:85.440000pt;}
.y14a{bottom:88.000000pt;}
.yfa{bottom:88.320000pt;}
.y35{bottom:89.280000pt;}
.y67{bottom:89.920000pt;}
.y1c5{bottom:90.560000pt;}
.ye3{bottom:94.080000pt;}
.yb9{bottom:96.000000pt;}
.y128{bottom:100.800000pt;}
.y168{bottom:103.360000pt;}
.y96{bottom:103.680000pt;}
.y189{bottom:104.640000pt;}
.y1c4{bottom:105.920000pt;}
.y149{bottom:106.560000pt;}
.yf9{bottom:106.880000pt;}
.y34{bottom:107.520000pt;}
.y66{bottom:108.160000pt;}
.yb8{bottom:114.560000pt;}
.y127{bottom:119.360000pt;}
.y188{bottom:120.000000pt;}
.y1c3{bottom:121.280000pt;}
.y167{bottom:121.920000pt;}
.y95{bottom:122.240000pt;}
.ye2{bottom:122.880000pt;}
.y148{bottom:124.800000pt;}
.yf8{bottom:125.120000pt;}
.y33{bottom:126.080000pt;}
.y65{bottom:126.720000pt;}
.yb7{bottom:132.800000pt;}
.y187{bottom:135.360000pt;}
.y1c2{bottom:136.640000pt;}
.y126{bottom:137.600000pt;}
.ye1{bottom:140.160000pt;}
.y94{bottom:140.480000pt;}
.y147{bottom:143.360000pt;}
.yf7{bottom:143.680000pt;}
.y32{bottom:144.320000pt;}
.y64{bottom:144.960000pt;}
.y186{bottom:150.720000pt;}
.yb6{bottom:151.360000pt;}
.y1c1{bottom:152.000000pt;}
.ye0{bottom:153.920000pt;}
.y125{bottom:156.160000pt;}
.y166{bottom:158.720000pt;}
.y93{bottom:159.040000pt;}
.y146{bottom:161.600000pt;}
.yf6{bottom:161.920000pt;}
.y31{bottom:162.880000pt;}
.y185{bottom:166.080000pt;}
.y1c0{bottom:167.360000pt;}
.yb5{bottom:169.600000pt;}
.ydf{bottom:172.480000pt;}
.y63{bottom:173.760000pt;}
.y124{bottom:174.400000pt;}
.y165{bottom:176.960000pt;}
.y92{bottom:177.280000pt;}
.y145{bottom:180.160000pt;}
.yf5{bottom:180.480000pt;}
.y30{bottom:181.120000pt;}
.y184{bottom:181.440000pt;}
.y1bf{bottom:182.720000pt;}
.yb4{bottom:188.160000pt;}
.yde{bottom:190.720000pt;}
.y62{bottom:192.640000pt;}
.y123{bottom:192.960000pt;}
.y164{bottom:195.520000pt;}
.y91{bottom:195.840000pt;}
.y183{bottom:196.480000pt;}
.y1be{bottom:198.080000pt;}
.y144{bottom:198.400000pt;}
.yf4{bottom:198.720000pt;}
.y2f{bottom:199.680000pt;}
.yb3{bottom:206.400000pt;}
.ydd{bottom:209.280000pt;}
.y61{bottom:210.880000pt;}
.y122{bottom:211.200000pt;}
.y182{bottom:211.840000pt;}
.y1bd{bottom:213.440000pt;}
.y163{bottom:213.760000pt;}
.y90{bottom:214.080000pt;}
.y143{bottom:216.960000pt;}
.yf3{bottom:217.280000pt;}
.y2e{bottom:217.920000pt;}
.yb2{bottom:224.960000pt;}
.y181{bottom:227.200000pt;}
.ydc{bottom:227.520000pt;}
.y1bc{bottom:228.480000pt;}
.y60{bottom:229.440000pt;}
.y121{bottom:229.760000pt;}
.y162{bottom:232.320000pt;}
.y8f{bottom:232.640000pt;}
.y142{bottom:235.200000pt;}
.yf2{bottom:235.520000pt;}
.y2d{bottom:236.480000pt;}
.y180{bottom:242.560000pt;}
.yb1{bottom:243.200000pt;}
.y1bb{bottom:243.840000pt;}
.ydb{bottom:246.080000pt;}
.y5f{bottom:247.680000pt;}
.y120{bottom:248.000000pt;}
.y161{bottom:250.560000pt;}
.y8e{bottom:250.880000pt;}
.yf1{bottom:254.080000pt;}
.y2c{bottom:254.720000pt;}
.y17f{bottom:257.920000pt;}
.y1ba{bottom:259.200000pt;}
.yb0{bottom:261.760000pt;}
.y141{bottom:264.000000pt;}
.yda{bottom:264.320000pt;}
.y5e{bottom:266.240000pt;}
.y11f{bottom:266.560000pt;}
.y160{bottom:269.120000pt;}
.y8d{bottom:269.440000pt;}
.yf0{bottom:272.320000pt;}
.y2b{bottom:273.280000pt;}
.y1b9{bottom:274.560000pt;}
.y12e{bottom:276.800000pt;}
.yaf{bottom:280.000000pt;}
.y140{bottom:282.560000pt;}
.yd9{bottom:282.880000pt;}
.y5d{bottom:284.480000pt;}
.y15f{bottom:287.360000pt;}
.y8c{bottom:287.680000pt;}
.y17e{bottom:288.640000pt;}
.y1b8{bottom:289.920000pt;}
.yef{bottom:290.880000pt;}
.y2a{bottom:291.520000pt;}
.y11e{bottom:295.360000pt;}
.y12d{bottom:295.680000pt;}
.yae{bottom:298.560000pt;}
.yd8{bottom:301.120000pt;}
.y17d{bottom:304.000000pt;}
.y1b7{bottom:305.280000pt;}
.y15e{bottom:305.920000pt;}
.y8b{bottom:306.240000pt;}
.yee{bottom:309.120000pt;}
.y29{bottom:310.080000pt;}
.y5c{bottom:313.280000pt;}
.y11d{bottom:313.920000pt;}
.y16b{bottom:316.160000pt;}
.yad{bottom:316.800000pt;}
.y13f{bottom:319.360000pt;}
.yd7{bottom:319.680000pt;}
.y1b6{bottom:320.640000pt;}
.y15d{bottom:324.160000pt;}
.yed{bottom:327.680000pt;}
.y28{bottom:328.320000pt;}
.y5b{bottom:331.840000pt;}
.y11c{bottom:332.480000pt;}
.y16a{bottom:334.720000pt;}
.y8a{bottom:335.040000pt;}
.yac{bottom:335.360000pt;}
.y1b5{bottom:336.000000pt;}
.yd6{bottom:337.920000pt;}
.yec{bottom:345.920000pt;}
.y27{bottom:346.880000pt;}
.y17c{bottom:350.080000pt;}
.y5a{bottom:350.400000pt;}
.y11b{bottom:350.720000pt;}
.y1b4{bottom:351.360000pt;}
.y15c{bottom:352.960000pt;}
.y89{bottom:353.600000pt;}
.y13e{bottom:356.160000pt;}
.yd5{bottom:356.480000pt;}
.yeb{bottom:364.480000pt;}
.y26{bottom:365.120000pt;}
.y17b{bottom:365.440000pt;}
.y1b3{bottom:366.720000pt;}
.y59{bottom:368.640000pt;}
.y11a{bottom:369.280000pt;}
.y15b{bottom:371.840000pt;}
.y88{bottom:372.160000pt;}
.yd4{bottom:374.720000pt;}
.y17a{bottom:380.480000pt;}
.y1b2{bottom:382.080000pt;}
.yea{bottom:382.720000pt;}
.y25{bottom:383.680000pt;}
.y58{bottom:387.200000pt;}
.y119{bottom:387.520000pt;}
.y15a{bottom:390.080000pt;}
.y87{bottom:390.400000pt;}
.y13d{bottom:392.960000pt;}
.yd3{bottom:393.280000pt;}
.y179{bottom:395.840000pt;}
.y1b1{bottom:397.440000pt;}
.ye9{bottom:401.280000pt;}
.y24{bottom:401.920000pt;}
.y57{bottom:405.440000pt;}
.y118{bottom:406.080000pt;}
.y159{bottom:408.640000pt;}
.y86{bottom:408.960000pt;}
.y178{bottom:411.200000pt;}
.yd2{bottom:411.520000pt;}
.y1b0{bottom:412.480000pt;}
.ye8{bottom:419.520000pt;}
.y23{bottom:420.480000pt;}
.y56{bottom:424.000000pt;}
.y117{bottom:424.320000pt;}
.y177{bottom:426.560000pt;}
.y158{bottom:426.880000pt;}
.y85{bottom:427.200000pt;}
.y1af{bottom:427.840000pt;}
.y13c{bottom:429.760000pt;}
.yd1{bottom:430.080000pt;}
.ye7{bottom:438.080000pt;}
.y22{bottom:438.720000pt;}
.y176{bottom:441.920000pt;}
.y55{bottom:442.240000pt;}
.y116{bottom:442.880000pt;}
.y1ae{bottom:443.200000pt;}
.y157{bottom:445.440000pt;}
.y84{bottom:445.760000pt;}
.yd0{bottom:448.320000pt;}
.ye6{bottom:456.320000pt;}
.y21{bottom:457.280000pt;}
.y1ad{bottom:458.560000pt;}
.y54{bottom:460.800000pt;}
.y115{bottom:461.120000pt;}
.y156{bottom:463.680000pt;}
.y83{bottom:464.000000pt;}
.y13b{bottom:466.560000pt;}
.ycf{bottom:466.880000pt;}
.y12c{bottom:471.360000pt;}
.y175{bottom:472.640000pt;}
.y1ac{bottom:473.920000pt;}
.yab{bottom:474.560000pt;}
.ye5{bottom:474.880000pt;}
.y20{bottom:475.520000pt;}
.y53{bottom:479.040000pt;}
.y114{bottom:479.680000pt;}
.y155{bottom:482.240000pt;}
.y82{bottom:482.560000pt;}
.yce{bottom:485.120000pt;}
.y174{bottom:488.000000pt;}
.y1ab{bottom:489.280000pt;}
.y12b{bottom:490.240000pt;}
.yaa{bottom:493.120000pt;}
.y52{bottom:497.600000pt;}
.y113{bottom:497.920000pt;}
.y154{bottom:500.480000pt;}
.y81{bottom:500.800000pt;}
.y13a{bottom:503.360000pt;}
.ycd{bottom:503.680000pt;}
.y1f{bottom:504.320000pt;}
.y1aa{bottom:504.640000pt;}
.y12a{bottom:508.480000pt;}
.ya9{bottom:511.680000pt;}
.y173{bottom:518.720000pt;}
.y153{bottom:519.040000pt;}
.y80{bottom:519.360000pt;}
.y1a9{bottom:520.000000pt;}
.ycc{bottom:521.920000pt;}
.y1e{bottom:522.880000pt;}
.y51{bottom:526.400000pt;}
.y112{bottom:526.720000pt;}
.y129{bottom:527.040000pt;}
.ya8{bottom:529.920000pt;}
.y172{bottom:534.080000pt;}
.y1a8{bottom:535.360000pt;}
.y152{bottom:537.280000pt;}
.y7f{bottom:537.600000pt;}
.ycb{bottom:540.480000pt;}
.y50{bottom:544.960000pt;}
.y111{bottom:545.280000pt;}
.ya7{bottom:548.480000pt;}
.y171{bottom:549.120000pt;}
.y1d{bottom:549.440000pt;}
.y139{bottom:550.720000pt;}
.y151{bottom:555.840000pt;}
.y7e{bottom:556.160000pt;}
.yca{bottom:558.720000pt;}
.y4f{bottom:563.520000pt;}
.y110{bottom:563.840000pt;}
.y170{bottom:564.480000pt;}
.y1a7{bottom:566.080000pt;}
.ybb{bottom:566.400000pt;}
.ya6{bottom:566.720000pt;}
.y1c{bottom:568.320000pt;}
.y138{bottom:568.640000pt;}
.y150{bottom:574.080000pt;}
.y7d{bottom:574.400000pt;}
.yc9{bottom:577.280000pt;}
.y16f{bottom:579.840000pt;}
.y1a6{bottom:581.120000pt;}
.y4e{bottom:581.760000pt;}
.y10f{bottom:582.080000pt;}
.y137{bottom:584.960000pt;}
.ya5{bottom:585.280000pt;}
.y14f{bottom:592.640000pt;}
.y7c{bottom:592.960000pt;}
.y1b{bottom:594.240000pt;}
.y16e{bottom:595.200000pt;}
.yc8{bottom:595.520000pt;}
.y1a5{bottom:596.480000pt;}
.y4d{bottom:600.320000pt;}
.y10e{bottom:600.640000pt;}
.y136{bottom:603.200000pt;}
.ya4{bottom:603.520000pt;}
.y14e{bottom:610.880000pt;}
.y7b{bottom:611.200000pt;}
.y1a4{bottom:611.840000pt;}
.y1a{bottom:613.120000pt;}
.yc7{bottom:614.080000pt;}
.y10d{bottom:618.880000pt;}
.y135{bottom:621.760000pt;}
.ya3{bottom:622.080000pt;}
.y1a3{bottom:627.200000pt;}
.y4c{bottom:629.120000pt;}
.y14d{bottom:629.440000pt;}
.y7a{bottom:629.760000pt;}
.y19{bottom:631.360000pt;}
.yc6{bottom:632.320000pt;}
.y10c{bottom:637.440000pt;}
.y16d{bottom:639.680000pt;}
.y134{bottom:640.000000pt;}
.ya2{bottom:640.320000pt;}
.y1a2{bottom:642.560000pt;}
.y4b{bottom:647.680000pt;}
.y79{bottom:648.000000pt;}
.y18{bottom:649.920000pt;}
.yc5{bottom:650.880000pt;}
.y10b{bottom:655.680000pt;}
.y1a1{bottom:657.920000pt;}
.y133{bottom:658.560000pt;}
.ya1{bottom:658.880000pt;}
.y4a{bottom:666.240000pt;}
.y78{bottom:666.560000pt;}
.y17{bottom:668.160000pt;}
.yc4{bottom:669.120000pt;}
.y1a0{bottom:673.280000pt;}
.y10a{bottom:674.240000pt;}
.y132{bottom:676.800000pt;}
.ya0{bottom:677.120000pt;}
.y49{bottom:684.480000pt;}
.y77{bottom:684.800000pt;}
.y16{bottom:686.720000pt;}
.yc3{bottom:687.680000pt;}
.y19f{bottom:688.640000pt;}
.y109{bottom:692.480000pt;}
.y9f{bottom:695.360000pt;}
.y48{bottom:703.040000pt;}
.y76{bottom:703.360000pt;}
.y19e{bottom:704.000000pt;}
.y15{bottom:704.960000pt;}
.yc2{bottom:705.920000pt;}
.y108{bottom:711.040000pt;}
.y9e{bottom:713.920000pt;}
.y19d{bottom:719.360000pt;}
.y47{bottom:721.280000pt;}
.y75{bottom:721.600000pt;}
.y14{bottom:723.520000pt;}
.y131{bottom:724.160000pt;}
.yc1{bottom:724.480000pt;}
.y107{bottom:729.280000pt;}
.y9d{bottom:732.160000pt;}
.y19c{bottom:734.720000pt;}
.y46{bottom:739.840000pt;}
.y74{bottom:740.160000pt;}
.y13{bottom:741.760000pt;}
.y130{bottom:742.080000pt;}
.yc0{bottom:742.720000pt;}
.y106{bottom:747.840000pt;}
.y19b{bottom:749.760000pt;}
.y14c{bottom:750.080000pt;}
.y9c{bottom:750.720000pt;}
.y45{bottom:758.080000pt;}
.y73{bottom:758.400000pt;}
.y12{bottom:760.320000pt;}
.ybf{bottom:761.280000pt;}
.y19a{bottom:765.120000pt;}
.y16c{bottom:766.080000pt;}
.y14b{bottom:768.640000pt;}
.y9b{bottom:768.960000pt;}
.y44{bottom:776.640000pt;}
.y72{bottom:776.960000pt;}
.y11{bottom:778.560000pt;}
.ybe{bottom:779.520000pt;}
.y199{bottom:780.480000pt;}
.y9a{bottom:787.520000pt;}
.y43{bottom:794.880000pt;}
.y71{bottom:795.200000pt;}
.y198{bottom:795.840000pt;}
.y10{bottom:797.120000pt;}
.y99{bottom:805.760000pt;}
.ybd{bottom:808.320000pt;}
.y197{bottom:811.200000pt;}
.y42{bottom:813.440000pt;}
.y105{bottom:813.760000pt;}
.yf{bottom:814.080000pt;}
.y70{bottom:824.000000pt;}
.y98{bottom:824.320000pt;}
.ybc{bottom:826.240000pt;}
.y196{bottom:826.560000pt;}
.ye{bottom:827.200000pt;}
.y41{bottom:831.680000pt;}
.y104{bottom:832.000000pt;}
.y195{bottom:841.920000pt;}
.yd{bottom:842.560000pt;}
.y40{bottom:849.920000pt;}
.y103{bottom:850.560000pt;}
.y194{bottom:857.280000pt;}
.y6f{bottom:861.120000pt;}
.yc{bottom:866.240000pt;}
.y3f{bottom:868.480000pt;}
.y102{bottom:868.800000pt;}
.y193{bottom:872.640000pt;}
.y6e{bottom:879.360000pt;}
.yb{bottom:884.160000pt;}
.y3e{bottom:886.720000pt;}
.y101{bottom:887.360000pt;}
.y192{bottom:888.000000pt;}
.y6d{bottom:897.920000pt;}
.y191{bottom:903.360000pt;}
.y100{bottom:905.600000pt;}
.ya{bottom:910.080000pt;}
.y3d{bottom:915.520000pt;}
.y6c{bottom:916.160000pt;}
.y190{bottom:918.720000pt;}
.yff{bottom:924.160000pt;}
.y18f{bottom:933.760000pt;}
.y3c{bottom:934.080000pt;}
.y6b{bottom:934.720000pt;}
.y9{bottom:937.600000pt;}
.yfe{bottom:942.400000pt;}
.y18e{bottom:949.120000pt;}
.y3b{bottom:952.960000pt;}
.yfd{bottom:960.960000pt;}
.y18d{bottom:964.480000pt;}
.y8{bottom:965.440000pt;}
.y3a{bottom:971.520000pt;}
.yfc{bottom:979.200000pt;}
.y18c{bottom:979.840000pt;}
.y39{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.y18b{bottom:995.200000pt;}
.yfb{bottom:1008.000000pt;}
.y38{bottom:1008.320000pt;}
.y18a{bottom:1010.560000pt;}
.y3{bottom:1019.200000pt;}
.y6a{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y37{bottom:1041.600000pt;}
.y1{bottom:1058.560000pt;}
.y69{bottom:1058.880000pt;}
.y68{bottom:1059.200000pt;}
.y36{bottom:1059.840000pt;}
.h5{height:21.333333pt;}
.ha{height:28.153125pt;}
.h7{height:35.831250pt;}
.h9{height:37.327500pt;}
.h3{height:39.243750pt;}
.hc{height:41.287680pt;}
.hd{height:43.253760pt;}
.h8{height:43.375000pt;}
.he{height:43.593750pt;}
.hb{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.hf{height:47.171250pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:113.279936pt;}
.x4{left:137.279936pt;}
.xc{left:151.080064pt;}
.xf{left:161.279936pt;}
.x7{left:167.882496pt;}
.x2{left:207.735360pt;}
.x1{left:215.868512pt;}
.xa{left:241.950848pt;}
.x8{left:242.917632pt;}
.xb{left:266.589504pt;}
.x9{left:301.228192pt;}
.x3{left:396.579840pt;}
.xe{left:475.015987pt;}
.xd{left:514.016000pt;}
.x5{left:653.333333pt;}
}




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